mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	Added support for Peplink Pepwave & FusionHub (#11432)
* Added support for Peplink Pepwave & FusionHub * Travis fixes * Another Travis fixes * Travis fixed * Travis fixes * Update peplink.svg * Resolved reviews Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
		
							
								
								
									
										113
									
								
								LibreNMS/OS/Pepwave.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										113
									
								
								LibreNMS/OS/Pepwave.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,113 @@
 | 
			
		||||
<?php
 | 
			
		||||
/**
 | 
			
		||||
 * Pepwave.php
 | 
			
		||||
 *
 | 
			
		||||
 * -Description-
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 *
 | 
			
		||||
 * @package    LibreNMS
 | 
			
		||||
 * @link       http://librenms.org
 | 
			
		||||
 * @copyright  2020 Jozef Rebjak
 | 
			
		||||
 * @author     Jozef Rebjak <jozefrebjak@icloud.com>
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
namespace LibreNMS\OS;
 | 
			
		||||
 | 
			
		||||
use LibreNMS\Device\WirelessSensor;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSinrDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrpDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrqDiscovery;
 | 
			
		||||
use LibreNMS\OS;
 | 
			
		||||
 | 
			
		||||
class Pepwave extends OS implements
 | 
			
		||||
    WirelessClientsDiscovery,
 | 
			
		||||
    WirelessSnrDiscovery,
 | 
			
		||||
    WirelessRsrpDiscovery,
 | 
			
		||||
    WirelessRsrqDiscovery,
 | 
			
		||||
    WirelessRssiDiscovery,
 | 
			
		||||
    WirelessSinrDiscovery
 | 
			
		||||
{
 | 
			
		||||
 | 
			
		||||
    public function discoverWirelessClients()
 | 
			
		||||
    {
 | 
			
		||||
        $oid = '.1.3.6.1.4.1.27662.4.1.1.7.0';
 | 
			
		||||
        return array(
 | 
			
		||||
            new WirelessSensor('clients', $this->getDeviceId(), $oid, 'pepwave', 1, 'Online APs'),
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function discoverWirelessRssi()
 | 
			
		||||
    {
 | 
			
		||||
        $data = snmpwalk_group($this->getDevice(), 'cellularSignalRssi', 'CELLULAR');
 | 
			
		||||
        $sensors = [];
 | 
			
		||||
        foreach ($data as $index => $rssi_value) {
 | 
			
		||||
            if ($rssi_value['cellularSignalRssi'] != '-9999') {
 | 
			
		||||
                $sensors[] = new WirelessSensor('rssi', $this->getDeviceId(), '.1.3.6.1.4.1.23695.200.1.12.1.1.1.3.' . $index, 'pepwave', 'cellularSignalRssi' . $index, 'Celullar ' . ($index+1), $rssi_value['cellularSignalRssi'], 1, 1);
 | 
			
		||||
            };
 | 
			
		||||
        }
 | 
			
		||||
        return $sensors;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function discoverWirelessSnr()
 | 
			
		||||
    {
 | 
			
		||||
        $data = snmpwalk_group($this->getDevice(), 'cellularSignalSnr', 'CELLULAR');
 | 
			
		||||
        $sensors = [];
 | 
			
		||||
        foreach ($data as $index => $snr_value) {
 | 
			
		||||
            if ($snr_value['cellularSignalSnr'] != '-9999') {
 | 
			
		||||
                $sensors[] = new WirelessSensor('snr', $this->getDeviceId(), '.1.3.6.1.4.1.23695.200.1.12.1.1.1.4.' . $index, 'pepwave', 'cellularSignalSnr' . $index, 'Celullar ' . ($index+1), $snr_value['cellularSignalSnr'], 1, 1);
 | 
			
		||||
            };
 | 
			
		||||
        }
 | 
			
		||||
        return $sensors;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function discoverWirelessSinr()
 | 
			
		||||
    {
 | 
			
		||||
        $data = snmpwalk_group($this->getDevice(), 'cellularSignalSinr', 'CELLULAR');
 | 
			
		||||
        $sensors = [];
 | 
			
		||||
        foreach ($data as $index => $sinr_value) {
 | 
			
		||||
            if ($sinr_value['cellularSignalSinr'] != '-9999') {
 | 
			
		||||
                $sensors[] = new WirelessSensor('sinr', $this->getDeviceId(), '.1.3.6.1.4.1.23695.200.1.12.1.1.1.5.' . $index, 'pepwave', 'cellularSignalSinr' . $index, 'Celullar ' . ($index+1), $sinr_value['cellularSignalSinr'], 1, 1);
 | 
			
		||||
            };
 | 
			
		||||
        }
 | 
			
		||||
        return $sensors;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function discoverWirelessRsrp()
 | 
			
		||||
    {
 | 
			
		||||
        $data = snmpwalk_group($this->getDevice(), 'cellularSignalRsrp', 'CELLULAR');
 | 
			
		||||
        $sensors = [];
 | 
			
		||||
        foreach ($data as $index => $rsrp_value) {
 | 
			
		||||
            if ($rsrp_value['cellularSignalRsrp'] != '-9999') {
 | 
			
		||||
                $sensors[] = new WirelessSensor('rsrp', $this->getDeviceId(), '.1.3.6.1.4.1.23695.200.1.12.1.1.1.7.' . $index, 'pepwave', 'cellularSignalRsrp' . $index, 'Celullar ' . ($index+1), $rsrp_value['cellularSignalRsrp'], 1, 1);
 | 
			
		||||
            };
 | 
			
		||||
        }
 | 
			
		||||
        return $sensors;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function discoverWirelessRsrq()
 | 
			
		||||
    {
 | 
			
		||||
        $data = snmpwalk_group($this->getDevice(), 'cellularSignalRsrq', 'CELLULAR');
 | 
			
		||||
        $sensors = [];
 | 
			
		||||
        foreach ($data as $index => $rsrq_value) {
 | 
			
		||||
            if ($rsrq_value['cellularSignalRsrq'] != '-9999') {
 | 
			
		||||
                $sensors[] = new WirelessSensor('rsrq', $this->getDeviceId(), '.1.3.6.1.4.1.23695.200.1.12.1.1.1.8.' . $index, 'pepwave', 'cellularSignalRsrq' . $index, 'Celullar ' . ($index+1), $rsrq_value['cellularSignalRsrq'], 1, 1);
 | 
			
		||||
            };
 | 
			
		||||
        }
 | 
			
		||||
        return $sensors;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										1
									
								
								html/images/os/peplink.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								html/images/os/peplink.svg
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 652 652" xml:space="preserve"><style>.st0{fill:#ffa400}.st1{fill:#2e2a25}.st2{fill:#a0a1a2}</style><path class="st0" d="M157.1 250.2c-6.1 18.4-25.9 28.3-44.3 22.2-18.4-6.1-28.3-25.9-22.2-44.2 6.1-18.4 25.9-28.3 44.3-22.2 18.4 6 28.3 25.8 22.2 44.2M239.2 210.7c-5.3 15.8-22.3 24.4-38.1 19.1-15.8-5.2-24.4-22.3-19.2-38.2 5.2-15.8 22.3-24.4 38.1-19.1 15.9 5.3 24.4 22.4 19.2 38.2M317.6 203.2c-4.3 13-18.3 20-31.3 15.7-13-4.3-20-18.3-15.7-31.3 4.3-13 18.3-20 31.3-15.7 12.9 4.3 20 18.3 15.7 31.3M372.8 245c-3.3 10-14.1 15.4-24.1 12.1-10-3.3-15.4-14.1-12.1-24.1 3.3-10 14.1-15.4 24.1-12.1 10 3.3 15.4 14.1 12.1 24.1M400.3 296.1c-2 5.8-8.3 9-14.1 7.1-5.9-1.9-9-8.3-7.1-14.1 1.9-5.9 8.3-9 14.1-7.1 5.8 1.9 9 8.2 7.1 14.1"/><path class="st1" d="M69.6 437c-4 0-10.6-.6-16.3-1.4V470c0 2.2-1.8 4-4 4h-24c-2.2 0-4.2-1.8-4.2-4V330.6c0-3.2.8-4.6 6.2-5.8 11.3-2.8 27.1-5.2 42.4-5.2 32.2 0 49.9 18.7 49.9 50.9V386c0 31.3-16.4 51-50 51m17.7-66.4c0-14.1-3.6-24.3-17.7-24.3-6.6 0-12.5.4-16.3 1v62.1c4.8.6 11.6 1.2 16.3 1.2 14.1 0 17.7-10.5 17.7-24.5v-15.5zM217.2 388.3h-63.5v.4c0 11.3 4.8 21.7 20.5 21.7 12.5 0 30.2-1 38.2-1.8h.6c2.2 0 3.8 1 3.8 3.2v15.1c0 3.2-.8 4.6-4.2 5.4-12.7 3.2-23.5 4.8-40.8 4.8-24.1 0-49.9-12.7-49.9-51.1v-14c0-32 18.7-52.3 50.3-52.3 32.6 0 49.1 22.3 49.1 52.3v11.5c.1 3-1.5 4.8-4.1 4.8M190 367.6c0-14.7-6.8-22.1-17.9-22.1-10.9 0-18.3 7.6-18.3 22.1v.8H190v-.8zM275.9 437c-4 0-10.6-.6-16.3-1.4V470c0 2.2-1.8 4-4 4h-24.1c-2.2 0-4.2-1.8-4.2-4V330.6c0-3.2.8-4.6 6.2-5.8 11.3-2.8 27.1-5.2 42.4-5.2 32.2 0 49.9 18.7 49.9 50.9V386c0 31.3-16.3 51-49.9 51m17.7-66.4c0-14.1-3.6-24.3-17.7-24.3-6.6 0-12.5.4-16.3 1v62.1c4.8.6 11.6 1.2 16.3 1.2 14.1 0 17.7-10.5 17.7-24.5v-15.5z"/><path class="st2" d="M359.7 435.3h-24.3c-2.2 0-4.2-2-4.2-4.2V286.6c0-2.2 2-4 4.2-4h24.3c2.2 0 3.8 1.8 3.8 4V431c-.1 2.3-1.6 4.3-3.8 4.3M401.8 435.3h-24.3c-2.2 0-4-1.8-4-4v-106c0-2.2 1.8-4 4-4h24.3c2.2 0 4 1.8 4 4v106c0 2.2-1.8 4-4 4M508.9 435.3h-24.1c-2.2 0-4-2-4-4.2v-66.3c0-13.9-2.6-18.5-14.7-18.5-5.8 0-11.9 2.8-18.7 6.4v78.4c0 2.2-1.8 4.2-4 4.2h-24.1c-2.2 0-4.2-2-4.2-4.2V325.2c0-2.2 1.8-4 4-4h22.3c2.2 0 4 1.8 4 4v4.8c11-7.8 19.7-10.3 32.4-10.3 28.8 0 35.2 20.1 35.2 45.2v66.3c0 2.1-1.9 4.1-4.1 4.1M620.3 325.4l-37 50.3 36.8 55.3c.4.4.4 1 .4 1.6 0 1.4-1 2.6-2.6 2.6h-30c-2.2 0-3.4-.4-5-2.8l-28.6-46.8V431c0 2.2-1.8 4.2-4 4.2h-24.1c-2.2 0-4.2-2-4.2-4.2V286.6c0-2.2 2-4 4.2-4h24.1c2.2 0 4 1.8 4 4v83.2l30.2-45.6c1.6-2.4 3.6-3 5.2-3h28.4c1.8 0 3 1 3 2.2 0 .6-.2 1.2-.8 2"/></svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 2.5 KiB  | 
							
								
								
									
										23
									
								
								includes/definitions/discovery/fusionhub.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								includes/definitions/discovery/fusionhub.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
			
		||||
mib: PEPVPN-SPEEDFUSION
 | 
			
		||||
modules:
 | 
			
		||||
  sensors:
 | 
			
		||||
    pre-cache:
 | 
			
		||||
    pre-cache:
 | 
			
		||||
      data:
 | 
			
		||||
        - oid:
 | 
			
		||||
            - pepVpnStatusProfileName
 | 
			
		||||
    state:
 | 
			
		||||
      data:
 | 
			
		||||
        -
 | 
			
		||||
          oid: pepVpnStatusConnectionState
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.{{ $index }}"
 | 
			
		||||
          descr: "{{ $pepVpnStatusProfileName }}"
 | 
			
		||||
          group: "VPN"
 | 
			
		||||
          index: "pepVpnStatusConnectionState.{{ $index }}"
 | 
			
		||||
          state_name: pepVpnStatusConnectionState
 | 
			
		||||
          states:
 | 
			
		||||
            - { descr: start, graph: 1, value: 0, generic: 3 }
 | 
			
		||||
            - { descr: authen, graph: 1, value: 1, generic: 3 }
 | 
			
		||||
            - { descr: tunnel, graph: 1, value: 2, generic: 3 }
 | 
			
		||||
            - { descr: route, graph: 1, value: 3, generic: 3 }
 | 
			
		||||
            - { descr: connected, graph: 1, value: 4, generic: 0 }
 | 
			
		||||
							
								
								
									
										126
									
								
								includes/definitions/discovery/pepwave.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										126
									
								
								includes/definitions/discovery/pepwave.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,126 @@
 | 
			
		||||
mib: CELLULAR:DEVICE:PEPVPN-SPEEDFUSION:WAN:WLC
 | 
			
		||||
modules:
 | 
			
		||||
  sensors:
 | 
			
		||||
    pre-cache:
 | 
			
		||||
      data:
 | 
			
		||||
        - oid:
 | 
			
		||||
            - devicePowerSourceName
 | 
			
		||||
            - wanName
 | 
			
		||||
            - pepVpnStatusProfileName
 | 
			
		||||
    temperature:
 | 
			
		||||
      data:
 | 
			
		||||
        -
 | 
			
		||||
          oid: deviceTemperatureCelsius
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.200.1.1.1.4.4.1.{{ $index }}"
 | 
			
		||||
          descr: System Temperature
 | 
			
		||||
          index: "deviceTemperatureCelsius.{{ $index }}"
 | 
			
		||||
          divisor: 1000
 | 
			
		||||
    count:
 | 
			
		||||
      data:
 | 
			
		||||
        -
 | 
			
		||||
          oid: wlcMaxNumAp
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.4.1.1.3.{{ $index }}"
 | 
			
		||||
          descr: Max. Number of Supported AP Licensed
 | 
			
		||||
          group: WLC
 | 
			
		||||
          index: "wlcMaxNumAp.{{ $index }}"
 | 
			
		||||
        -
 | 
			
		||||
          oid: wlcNumApProfile
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.4.1.1.4.{{ $index }}"
 | 
			
		||||
          descr: Number of AP Profile Created
 | 
			
		||||
          group: WLC
 | 
			
		||||
          index: "wlcNumApProfile.{{ $index }}"
 | 
			
		||||
        -
 | 
			
		||||
          oid: wlcNumWlanNetwork
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.4.1.1.5.{{ $index }}"
 | 
			
		||||
          descr: Number of WLAN Network Created
 | 
			
		||||
          group: WLC
 | 
			
		||||
          index: "wlcNumWlanNetwork.{{ $index }}"
 | 
			
		||||
        -
 | 
			
		||||
          oid: wlcNumApReg
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.4.1.1.6.{{ $index }}"
 | 
			
		||||
          descr: Number of AP Registered
 | 
			
		||||
          group: WLC
 | 
			
		||||
          index: "wlcNumApReg.{{ $index }}"
 | 
			
		||||
        -
 | 
			
		||||
          oid: wlcNumAssocSta
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.4.1.1.8.{{ $index }}"
 | 
			
		||||
          descr: Number of Associated WLAN Station
 | 
			
		||||
          group: WLC
 | 
			
		||||
          index: "wlcNumAssocSta.{{ $index }}"
 | 
			
		||||
    power:
 | 
			
		||||
      data:
 | 
			
		||||
        -
 | 
			
		||||
          oid: deviceCurrentPower
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.200.1.1.1.4.1.1.3.{{ $index }}"
 | 
			
		||||
          descr: Power Consumption
 | 
			
		||||
          index: "deviceCurrentPower.{{ $index }}"
 | 
			
		||||
    signal:
 | 
			
		||||
      options:
 | 
			
		||||
        skip_values: -9999
 | 
			
		||||
      data:
 | 
			
		||||
        -
 | 
			
		||||
          oid: wanSignal
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.2.1.2.1.5.{{ $index }}"
 | 
			
		||||
          descr: "{{ $wanName }} Signal"
 | 
			
		||||
          index: "wanSignal.{{ $index }}"
 | 
			
		||||
          
 | 
			
		||||
    state:
 | 
			
		||||
      data:
 | 
			
		||||
        -
 | 
			
		||||
          oid: devicePSUStatus
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.200.1.1.1.4.1.1.2.{{ $index }}"
 | 
			
		||||
          descr: PSU Status
 | 
			
		||||
          group: Power Consumption
 | 
			
		||||
          state_name: devicePSUStatus
 | 
			
		||||
          states:
 | 
			
		||||
            - { descr: error, graph: 1, value: 0, generic: 2 }
 | 
			
		||||
            - { descr: on, graph: 1, value: 1, generic: 0 }
 | 
			
		||||
        -
 | 
			
		||||
          oid: deviceFANStatus
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.200.1.1.1.4.4.1.{{ $index }}"
 | 
			
		||||
          descr: FAN Status
 | 
			
		||||
          group: Fan
 | 
			
		||||
          state_name: deviceFANStatus
 | 
			
		||||
          states:
 | 
			
		||||
            - { descr: error, graph: 1, value: 0, generic: 2 }
 | 
			
		||||
            - { descr: on, graph: 1, value: 1, generic: 0 }
 | 
			
		||||
        -
 | 
			
		||||
          oid: devicePowerSourceStatus
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.200.1.1.1.4.3.1.3.{{ $index }}"
 | 
			
		||||
          descr: "{{ $devicePowerSourceName }}"
 | 
			
		||||
          group: "Power Source"
 | 
			
		||||
          index: "devicePowerSourceStatus.{{ $index }}"
 | 
			
		||||
          state_name: devicePowerSourceStatus
 | 
			
		||||
          states:
 | 
			
		||||
            - { descr: noCableDetected, graph: 1, value: 0, generic: 3 }
 | 
			
		||||
            - { descr: connected, graph: 1, value: 1, generic: 0 }
 | 
			
		||||
        -
 | 
			
		||||
          oid: pepVpnStatusConnectionState
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.{{ $index }}"
 | 
			
		||||
          descr: "{{ $pepVpnStatusProfileName }}"
 | 
			
		||||
          group: "VPN"
 | 
			
		||||
          index: "pepVpnStatusConnectionState.{{ $index }}"
 | 
			
		||||
          state_name: pepVpnStatusConnectionState
 | 
			
		||||
          states:
 | 
			
		||||
            - { descr: start, graph: 1, value: 0, generic: 3 }
 | 
			
		||||
            - { descr: authen, graph: 1, value: 1, generic: 3 }
 | 
			
		||||
            - { descr: tunnel, graph: 1, value: 2, generic: 3 }
 | 
			
		||||
            - { descr: route, graph: 1, value: 3, generic: 3 }
 | 
			
		||||
            - { descr: connected, graph: 1, value: 4, generic: 0 }
 | 
			
		||||
        -
 | 
			
		||||
          oid: wanState
 | 
			
		||||
          num_oid: ".1.3.6.1.4.1.27662.2.1.2.1.3.{{ $index }}"
 | 
			
		||||
          descr: "{{ $wanName }}"
 | 
			
		||||
          group: "WAN"
 | 
			
		||||
          index: "wanState.{{ $index }}"
 | 
			
		||||
          state_name: wanState
 | 
			
		||||
          states:
 | 
			
		||||
            - { descr: unknown, graph: 1, value: 0, generic: 3 }
 | 
			
		||||
            - { descr: disabled, graph: 1, value: 1, generic: 3 }
 | 
			
		||||
            - { descr: disconnected, graph: 1, value: 2, generic: 2 }
 | 
			
		||||
            - { descr: connected, graph: 1, value: 3, generic: 0 }
 | 
			
		||||
            - { descr: connecting, graph: 1, value: 4, generic: 1 }
 | 
			
		||||
            - { descr: activating, graph: 1, value: 5, generic: 1 }
 | 
			
		||||
            - { descr: helt-check-fail, graph: 1, value: 6, generic: 2 }
 | 
			
		||||
            - { descr: disconnected-manually, graph: 1, value: 7, generic: 3 }
 | 
			
		||||
            - { descr: standby, graph: 1, value: 4, generic: 3 }
 | 
			
		||||
							
								
								
									
										10
									
								
								includes/definitions/fusionhub.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								includes/definitions/fusionhub.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
os: fusionhub
 | 
			
		||||
text: FusionHub
 | 
			
		||||
type: appliance
 | 
			
		||||
icon: peplink
 | 
			
		||||
group: unix
 | 
			
		||||
mib_dir:
 | 
			
		||||
    - peplink
 | 
			
		||||
discovery:
 | 
			
		||||
    -
 | 
			
		||||
      sysObjectID: .1.3.6.1.4.1.23695
 | 
			
		||||
							
								
								
									
										12
									
								
								includes/definitions/pepwave.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								includes/definitions/pepwave.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
os: pepwave
 | 
			
		||||
text: 'Pepwave'
 | 
			
		||||
type: network
 | 
			
		||||
icon: peplink
 | 
			
		||||
mib_dir:
 | 
			
		||||
    - peplink
 | 
			
		||||
over:
 | 
			
		||||
    - { graph: device_bits, text: 'Device Traffic' }
 | 
			
		||||
    - { graph: device_processor, text: 'CPU Usage' }
 | 
			
		||||
discovery:
 | 
			
		||||
    - sysObjectID:
 | 
			
		||||
        - .1.3.6.1.4.1.27662
 | 
			
		||||
							
								
								
									
										5
									
								
								includes/polling/os/fusionhub.inc.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								includes/polling/os/fusionhub.inc.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
<?php
 | 
			
		||||
$fusionhub_tmp = snmp_get_multi_oid($device, ['deviceModel.0', 'deviceSerialNumber.0', 'deviceFirmwareVersion.0'], '-OUQs', 'DEVICE');
 | 
			
		||||
$hardware = $fusionhub_tmp['deviceModel.0'];
 | 
			
		||||
$serial   = $fusionhub_tmp['deviceSerialNumber.0'];
 | 
			
		||||
$version  = $fusionhub_tmp['deviceFirmwareVersion.0'];
 | 
			
		||||
							
								
								
									
										5
									
								
								includes/polling/os/pepwave.inc.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								includes/polling/os/pepwave.inc.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
<?php
 | 
			
		||||
$pepwave_tmp = snmp_get_multi_oid($device, ['deviceModel.0', 'deviceSerialNumber.0', 'deviceFirmwareVersion.0'], '-OUQs', 'DEVICE');
 | 
			
		||||
$hardware = $pepwave_tmp['deviceModel.0'];
 | 
			
		||||
$serial   = $pepwave_tmp['deviceSerialNumber.0'];
 | 
			
		||||
$version  = $pepwave_tmp['deviceFirmwareVersion.0'];
 | 
			
		||||
							
								
								
									
										269
									
								
								mibs/peplink/CELLULAR
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										269
									
								
								mibs/peplink/CELLULAR
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,269 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
        CELLULAR DEFINITIONS ::= BEGIN
 | 
			
		||||
 | 
			
		||||
                IMPORTS
 | 
			
		||||
                        OBJECT-GROUP
 | 
			
		||||
                                FROM SNMPv2-CONF
 | 
			
		||||
                        enterprises, Integer32, IpAddress,Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
                                FROM SNMPv2-SMI
 | 
			
		||||
                        DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
                                FROM SNMPv2-TC;
 | 
			
		||||
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- The Enterprises Number
 | 
			
		||||
        peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
 | 
			
		||||
        productMib  OBJECT IDENTIFIER ::= { peplink 200 }
 | 
			
		||||
 | 
			
		||||
        generalMib OBJECT IDENTIFIER ::= { productMib 1 }
 | 
			
		||||
 | 
			
		||||
        cellularMib MODULE-IDENTITY
 | 
			
		||||
                    LAST-UPDATED "201805071200Z"        -- 05 07, 2018 at 12:00 GMT
 | 
			
		||||
                    ORGANIZATION "PEPLINK"
 | 
			
		||||
                    CONTACT-INFO ""
 | 
			
		||||
                    DESCRIPTION
 | 
			
		||||
                        "MIB module for CELLULAR."
 | 
			
		||||
            ::= { generalMib 12 }
 | 
			
		||||
 | 
			
		||||
-- #####################################################################
 | 
			
		||||
--
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
        cellularSignalInfo OBJECT IDENTIFIER ::= { cellularMib 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
        cellularSignalInfoTable OBJECT-TYPE
 | 
			
		||||
            SYNTAX SEQUENCE OF CellularSignalInfoEntry
 | 
			
		||||
            MAX-ACCESS not-accessible
 | 
			
		||||
            STATUS current
 | 
			
		||||
            DESCRIPTION
 | 
			
		||||
                "Cellular signal info table"
 | 
			
		||||
            ::= { cellularSignalInfo 1 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalInfoEntry OBJECT-TYPE
 | 
			
		||||
            SYNTAX CellularSignalInfoEntry
 | 
			
		||||
            MAX-ACCESS not-accessible
 | 
			
		||||
            STATUS current
 | 
			
		||||
            DESCRIPTION
 | 
			
		||||
                "An entry in the cellularSignalInfoTable"
 | 
			
		||||
            INDEX { cellularSignalInfoId }
 | 
			
		||||
            ::= { cellularSignalInfoTable 1 }
 | 
			
		||||
 | 
			
		||||
            CellularSignalInfoEntry ::=
 | 
			
		||||
            SEQUENCE {
 | 
			
		||||
                cellularSignalInfoId
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularSignalInfoWanId
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularSignalRssi
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularSignalSnr
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularSignalSinr
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularSignalEcio
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularSignalRsrp
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularSignalRsrq
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularNetworkType
 | 
			
		||||
                    OCTET STRING,
 | 
			
		||||
                cellularBand
 | 
			
		||||
                    OCTET STRING,
 | 
			
		||||
                cellularLac
 | 
			
		||||
                    Integer32,
 | 
			
		||||
                cellularTac
 | 
			
		||||
                    Integer32,
 | 
			
		||||
		cellularENodeBId
 | 
			
		||||
                    Integer32
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            cellularSignalInfoId OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular signal info ID."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 1 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalInfoWanId OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular signal info WAN ID."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 2 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalRssi OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                UNITS "dBm"
 | 
			
		||||
                    MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular RSSI (units: dBm).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -9999, means signal strength
 | 
			
		||||
                    not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 3 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalSnr OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                UNITS "dB"
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular SNR (units: dB).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -9999, means signal strength
 | 
			
		||||
                    not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 4 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalSinr OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                UNITS "dB"
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular SINR (units: dB).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -9999, means signal strength
 | 
			
		||||
                    not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 5 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalEcio OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                UNITS "dB"
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular Ec/Io (units: dB).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -9999, means signal strength
 | 
			
		||||
                    not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 6 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalRsrp OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                UNITS "dBm"
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular RSRP (units: dBm).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -9999, means signal strength
 | 
			
		||||
                    not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 7 }
 | 
			
		||||
 | 
			
		||||
            cellularSignalRsrq OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                UNITS "dB"
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular RSRQ (units: dB).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -9999, means signal strength
 | 
			
		||||
                    not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 8 }
 | 
			
		||||
 | 
			
		||||
            cellularNetworkType OBJECT-TYPE
 | 
			
		||||
                SYNTAX OCTET STRING
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular Network Type."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 9 }
 | 
			
		||||
 | 
			
		||||
            cellularBand OBJECT-TYPE
 | 
			
		||||
                SYNTAX OCTET STRING
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular Band."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 10 }
 | 
			
		||||
 | 
			
		||||
            cellularLac OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular Location Area Code(LAC).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -1, means LAC not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 11 }
 | 
			
		||||
 | 
			
		||||
            cellularTac OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular Tracking Area Code(TAC).
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -1, means TAC not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 12 }
 | 
			
		||||
 | 
			
		||||
            cellularENodeBId OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular eNodeB ID.
 | 
			
		||||
                    Remark:
 | 
			
		||||
                    If the value equals -1, means eNodeB ID not applicable in this cellular."
 | 
			
		||||
                ::= { cellularSignalInfoEntry 13 }
 | 
			
		||||
 | 
			
		||||
        cellularIdentityInfo OBJECT IDENTIFIER ::= { cellularMib 2 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	cellularIdentityInfoTable OBJECT-TYPE
 | 
			
		||||
            SYNTAX SEQUENCE OF CellularIdentityInfoEntry
 | 
			
		||||
            MAX-ACCESS not-accessible
 | 
			
		||||
            STATUS current
 | 
			
		||||
            DESCRIPTION
 | 
			
		||||
                "Cellular identity info table"
 | 
			
		||||
            ::= { cellularIdentityInfo 1 }
 | 
			
		||||
 | 
			
		||||
            cellularIdentityInfoEntry OBJECT-TYPE
 | 
			
		||||
            SYNTAX CellularIdentityInfoEntry
 | 
			
		||||
            MAX-ACCESS not-accessible
 | 
			
		||||
            STATUS current
 | 
			
		||||
            DESCRIPTION
 | 
			
		||||
                "An entry in the cellularIdentityInfoTable"
 | 
			
		||||
            INDEX { cellularIdentityInfoId }
 | 
			
		||||
            ::= { cellularIdentityInfoTable 1 }
 | 
			
		||||
 | 
			
		||||
            CellularIdentityInfoEntry ::=
 | 
			
		||||
            SEQUENCE {
 | 
			
		||||
		cellularIdentityInfoId
 | 
			
		||||
			Integer32,
 | 
			
		||||
           	cellularIdentityInfoImei
 | 
			
		||||
                	OCTET STRING
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            cellularIdentityInfoId OBJECT-TYPE
 | 
			
		||||
                SYNTAX Integer32
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular identity ID."
 | 
			
		||||
                ::= { cellularIdentityInfoEntry 1 }
 | 
			
		||||
 | 
			
		||||
            cellularIdentityInfoImei OBJECT-TYPE
 | 
			
		||||
                SYNTAX OCTET STRING
 | 
			
		||||
                MAX-ACCESS read-only
 | 
			
		||||
                STATUS current
 | 
			
		||||
                DESCRIPTION
 | 
			
		||||
                    "Cellular IMEI."
 | 
			
		||||
                ::= { cellularIdentityInfoEntry 2 }
 | 
			
		||||
END
 | 
			
		||||
							
								
								
									
										314
									
								
								mibs/peplink/DEVICE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										314
									
								
								mibs/peplink/DEVICE
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,314 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
        DEVICE DEFINITIONS ::= BEGIN
 | 
			
		||||
 | 
			
		||||
                IMPORTS
 | 
			
		||||
                        OBJECT-GROUP
 | 
			
		||||
                                FROM SNMPv2-CONF
 | 
			
		||||
                        enterprises, IpAddress,Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
                                FROM SNMPv2-SMI
 | 
			
		||||
                        DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
                                FROM SNMPv2-TC;
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
 | 
			
		||||
-- The Enterprises Number
 | 
			
		||||
                peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
 | 
			
		||||
		productMib  OBJECT IDENTIFIER ::= { peplink 200 }
 | 
			
		||||
 | 
			
		||||
		generalMib OBJECT IDENTIFIER ::= { productMib 1 }
 | 
			
		||||
 | 
			
		||||
		deviceMib OBJECT IDENTIFIER ::= { generalMib 1 }
 | 
			
		||||
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
                deviceInfo MODULE-IDENTITY
 | 
			
		||||
			LAST-UPDATED "201711150000Z"		-- 11 15, 2017 at 12:00 GMT
 | 
			
		||||
			ORGANIZATION
 | 
			
		||||
				"PEPLINK"
 | 
			
		||||
                        CONTACT-INFO
 | 
			
		||||
				""
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"MIB module for device."
 | 
			
		||||
		::= { deviceMib 1 }
 | 
			
		||||
 | 
			
		||||
-- #####################################################################
 | 
			
		||||
-- 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	deviceInfoSystem OBJECT IDENTIFIER ::= { deviceInfo 1 }
 | 
			
		||||
 | 
			
		||||
		deviceModel OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device model."
 | 
			
		||||
			::= { deviceInfoSystem 1 }
 | 
			
		||||
 | 
			
		||||
		deviceSerialNumber OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device serial number."
 | 
			
		||||
			::= { deviceInfoSystem 2 }
 | 
			
		||||
 | 
			
		||||
		deviceFirmwareVersion OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device firmware version."
 | 
			
		||||
			::= { deviceInfoSystem 3 }
 | 
			
		||||
 | 
			
		||||
	deviceInfoTime OBJECT IDENTIFIER ::= { deviceInfo 2 }
 | 
			
		||||
 | 
			
		||||
		deviceSystemTime OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device system time."
 | 
			
		||||
			::= { deviceInfoTime 1 }
 | 
			
		||||
 | 
			
		||||
		deviceSystemUpTime OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device up time."
 | 
			
		||||
			::= { deviceInfoTime 2 }
 | 
			
		||||
 | 
			
		||||
	deviceInfoUsage OBJECT IDENTIFIER ::= { deviceInfo 3 }
 | 
			
		||||
		deviceCpuLoad OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER(0..100)
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device CPU Load, in hundredths of a percent."
 | 
			
		||||
			::= { deviceInfoUsage 1 }
 | 
			
		||||
 | 
			
		||||
		deviceTotalMemory OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device total memory (units KB)."
 | 
			
		||||
			::= { deviceInfoUsage 2 }
 | 
			
		||||
 | 
			
		||||
		deviceMemoryUsage OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device memory usage (units KB)."
 | 
			
		||||
			::= { deviceInfoUsage 3 }
 | 
			
		||||
 | 
			
		||||
	deviceInfoHardware OBJECT IDENTIFIER ::= { deviceInfo 4 }
 | 
			
		||||
 | 
			
		||||
		devicePSUTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF DevicePSUEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device Power Supply Unit Table."
 | 
			
		||||
			::= { deviceInfoHardware 1 }
 | 
			
		||||
 | 
			
		||||
			devicePSUEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX DevicePSUEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the devicePSUTable."
 | 
			
		||||
			INDEX { devicePSUId }
 | 
			
		||||
			::= { devicePSUTable 1 }
 | 
			
		||||
 | 
			
		||||
			DevicePSUEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				devicePSUId
 | 
			
		||||
					Integer32,
 | 
			
		||||
				devicePSUStatus
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				deviceCurrentPower
 | 
			
		||||
					Integer32,
 | 
			
		||||
				deviceMaxPower
 | 
			
		||||
					Integer32,
 | 
			
		||||
				devicePSUPercentage
 | 
			
		||||
					Integer32
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			devicePSUId OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device power consumption ID."
 | 
			
		||||
				::= { devicePSUEntry 1 }
 | 
			
		||||
 | 
			
		||||
			devicePSUStatus OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER {
 | 
			
		||||
					error(0),
 | 
			
		||||
					on(1)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device power consumption status."
 | 
			
		||||
				::= { devicePSUEntry 2 }
 | 
			
		||||
 | 
			
		||||
			deviceCurrentPower OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device current power(W)."
 | 
			
		||||
				::= { devicePSUEntry 3 }
 | 
			
		||||
 | 
			
		||||
			deviceMaxPower OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device max power(W)."
 | 
			
		||||
				::= { devicePSUEntry 4 }
 | 
			
		||||
 | 
			
		||||
			devicePSUPercentage OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device power consumption, in hundredths of a percent."
 | 
			
		||||
				::= { devicePSUEntry 5 }
 | 
			
		||||
 | 
			
		||||
		deviceFanTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF DeviceFanEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Device fan Table."
 | 
			
		||||
			::= { deviceInfoHardware 2 }
 | 
			
		||||
 | 
			
		||||
			deviceFanEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX DeviceFanEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the deviceFanTable."
 | 
			
		||||
			INDEX { deviceFanId }
 | 
			
		||||
			::= { deviceFanTable 1 }
 | 
			
		||||
 | 
			
		||||
			DeviceFanEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				deviceFanId
 | 
			
		||||
					Integer32,
 | 
			
		||||
				deviceFanStatus
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				deviceFanSpeed
 | 
			
		||||
					Integer32
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			deviceFanId OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device fan ID."
 | 
			
		||||
				::= { deviceFanEntry 1 }
 | 
			
		||||
 | 
			
		||||
			deviceFanStatus OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER {
 | 
			
		||||
					error(0),
 | 
			
		||||
					on(1)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device fan status."
 | 
			
		||||
				::= { deviceFanEntry 2 }
 | 
			
		||||
 | 
			
		||||
			deviceFanSpeed OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Device fan speed(RPM)."
 | 
			
		||||
				::= { deviceFanEntry 3 }
 | 
			
		||||
 | 
			
		||||
		devicePowerSourceTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF DevicePowerSourceEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Power source Table."
 | 
			
		||||
			::= { deviceInfoHardware 3 }
 | 
			
		||||
 | 
			
		||||
			devicePowerSourceEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX DevicePowerSourceEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the devicePowerSourceTable."
 | 
			
		||||
			INDEX { devicePowerSourceId }
 | 
			
		||||
			::= { devicePowerSourceTable 1 }
 | 
			
		||||
 | 
			
		||||
			DevicePowerSourceEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				devicePowerSourceId
 | 
			
		||||
					Integer32,
 | 
			
		||||
				devicePowerSourceName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				devicePowerSourceStatus
 | 
			
		||||
					INTEGER
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			devicePowerSourceId OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Power source ID."
 | 
			
		||||
				::= { devicePowerSourceEntry 1 }
 | 
			
		||||
 | 
			
		||||
			devicePowerSourceName OBJECT-TYPE
 | 
			
		||||
				SYNTAX OCTET STRING
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Power source name."
 | 
			
		||||
				::= { devicePowerSourceEntry 2 }
 | 
			
		||||
 | 
			
		||||
			devicePowerSourceStatus OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER {
 | 
			
		||||
					noCableDetected(0),
 | 
			
		||||
					connected(1)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"Power source status."
 | 
			
		||||
				::= { devicePowerSourceEntry 3 }
 | 
			
		||||
 | 
			
		||||
		deviceInfoTemperature OBJECT IDENTIFIER ::= { deviceInfoHardware 4 }
 | 
			
		||||
 | 
			
		||||
			deviceTemperatureCelsius OBJECT-TYPE
 | 
			
		||||
				SYNTAX Gauge32
 | 
			
		||||
				UNITS "mC"
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"System temperature in mC."
 | 
			
		||||
				::= { deviceInfoTemperature 1 }
 | 
			
		||||
 | 
			
		||||
			deviceTemperatureFahrenheit OBJECT-TYPE
 | 
			
		||||
				SYNTAX Gauge32
 | 
			
		||||
				UNITS "mF"
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"System temperature in mF."
 | 
			
		||||
				::= { deviceInfoTemperature 2 }
 | 
			
		||||
END
 | 
			
		||||
							
								
								
									
										184
									
								
								mibs/peplink/GRE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										184
									
								
								mibs/peplink/GRE
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,184 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
        GRE DEFINITIONS ::= BEGIN
 | 
			
		||||
 | 
			
		||||
                IMPORTS
 | 
			
		||||
                        OBJECT-GROUP
 | 
			
		||||
                                FROM SNMPv2-CONF
 | 
			
		||||
                        enterprises, IpAddress, Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
                                FROM SNMPv2-SMI
 | 
			
		||||
                        DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
                                FROM SNMPv2-TC;
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
		peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
 | 
			
		||||
		productMib  OBJECT IDENTIFIER ::= { peplink 200 }
 | 
			
		||||
 | 
			
		||||
		generalMib OBJECT IDENTIFIER ::= { productMib 1 }
 | 
			
		||||
 | 
			
		||||
		greMib OBJECT IDENTIFIER ::= { generalMib 11 }
 | 
			
		||||
 | 
			
		||||
		greInfo MODULE-IDENTITY
 | 
			
		||||
		   		LAST-UPDATED "201502110000Z"		-- 02 11, 2015 at 12:00 GMT
 | 
			
		||||
				ORGANIZATION "PEPLINK"
 | 
			
		||||
		               	CONTACT-INFO ""
 | 
			
		||||
			    	DESCRIPTION
 | 
			
		||||
					    "MIB module for GRE."
 | 
			
		||||
			::= { greMib 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		greStatusTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF GreStatusEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"GRE status table"
 | 
			
		||||
			::= { greInfo 1 }
 | 
			
		||||
 | 
			
		||||
			greStatusEntry OBJECT-TYPE
 | 
			
		||||
				SYNTAX GreStatusEntry
 | 
			
		||||
				MAX-ACCESS not-accessible
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"An entry in the greStatusTable"
 | 
			
		||||
				INDEX { greStatusId }
 | 
			
		||||
				::= { greStatusTable 1 }
 | 
			
		||||
 | 
			
		||||
			GreStatusEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				greStatusId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				greStatusProfileName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				greStatusConnectionState
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				greStatusLocalIpAddress
 | 
			
		||||
					IpAddress,
 | 
			
		||||
				greStatusRemoteIpAddress
 | 
			
		||||
					IpAddress,
 | 
			
		||||
				greStatusTunnelLocalIpAddress
 | 
			
		||||
					IpAddress,
 | 
			
		||||
				greStatusTunnelRemoteIpAddress
 | 
			
		||||
					IpAddress
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			greStatusId OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE ID."
 | 
			
		||||
				::= { greStatusEntry 1 }
 | 
			
		||||
 | 
			
		||||
			greStatusProfileName OBJECT-TYPE
 | 
			
		||||
				SYNTAX OCTET STRING (SIZE (1..32))
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE profile name."
 | 
			
		||||
				::= { greStatusEntry 2 }
 | 
			
		||||
 | 
			
		||||
			greStatusConnectionState OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER {
 | 
			
		||||
					disconnected(0),
 | 
			
		||||
					connected(1),
 | 
			
		||||
					connecting(2)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE connection state."
 | 
			
		||||
				::= { greStatusEntry 3 }
 | 
			
		||||
 | 
			
		||||
			greStatusLocalIpAddress OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE local IP."
 | 
			
		||||
				::= { greStatusEntry 4 }
 | 
			
		||||
 | 
			
		||||
			greStatusRemoteIpAddress OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE remote IP."
 | 
			
		||||
				::= { greStatusEntry 5 }
 | 
			
		||||
 | 
			
		||||
			greStatusTunnelLocalIpAddress OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE tunnel local IP."
 | 
			
		||||
				::= { greStatusEntry 6 }
 | 
			
		||||
 | 
			
		||||
			greStatusTunnelRemoteIpAddress OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE tunnel remote IP."
 | 
			
		||||
				::= { greStatusEntry 7 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		greStatusRemoteNetworkTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF GreStatusRemoteNetworkEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"GRE status remote network table"
 | 
			
		||||
			::= { greInfo 2 }
 | 
			
		||||
 | 
			
		||||
			greStatusRemoteNetworkEntry OBJECT-TYPE
 | 
			
		||||
				SYNTAX GreStatusRemoteNetworkEntry
 | 
			
		||||
				MAX-ACCESS not-accessible
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"An entry in the greStatusRemoteNetworkTable"
 | 
			
		||||
				INDEX { greStatusId, greStatusRemoteNetworkId }
 | 
			
		||||
				::= { greStatusRemoteNetworkTable 1 }
 | 
			
		||||
 | 
			
		||||
			GreStatusRemoteNetworkEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				greStatusRemoteNetworkId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				greStatusRemoteNetwork
 | 
			
		||||
					IpAddress,
 | 
			
		||||
				greStatusRemoteSubnet
 | 
			
		||||
					IpAddress
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			greStatusRemoteNetworkId OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE remote network ID."
 | 
			
		||||
				::= { greStatusRemoteNetworkEntry 1 }
 | 
			
		||||
 | 
			
		||||
			greStatusRemoteNetwork OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE remote network IP."
 | 
			
		||||
				::= { greStatusRemoteNetworkEntry 2 }
 | 
			
		||||
 | 
			
		||||
			greStatusRemoteSubnet OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"GRE remote network subnet."
 | 
			
		||||
				::= { greStatusRemoteNetworkEntry 3 }
 | 
			
		||||
END
 | 
			
		||||
							
								
								
									
										187
									
								
								mibs/peplink/IPSEC-VPN
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										187
									
								
								mibs/peplink/IPSEC-VPN
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,187 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
	IPSEC-VPN DEFINITIONS ::= BEGIN
 | 
			
		||||
		IMPORTS
 | 
			
		||||
			OBJECT-GROUP
 | 
			
		||||
				FROM SNMPv2-CONF
 | 
			
		||||
			enterprises, Integer32, IpAddress,Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
				FROM SNMPv2-SMI
 | 
			
		||||
			DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
				FROM SNMPv2-TC;
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- The Enterprises Number
 | 
			
		||||
	peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
 | 
			
		||||
	productMib  OBJECT IDENTIFIER ::= { peplink 200 }
 | 
			
		||||
 | 
			
		||||
	generalMib OBJECT IDENTIFIER ::= { productMib 1 }
 | 
			
		||||
 | 
			
		||||
	ipsecVpnMib MODULE-IDENTITY
 | 
			
		||||
		LAST-UPDATED "201812181200Z"	-- 12 18, 2018 at 12:00 GMT
 | 
			
		||||
		ORGANIZATION "PEPLINK"
 | 
			
		||||
		CONTACT-INFO ""
 | 
			
		||||
		DESCRIPTION
 | 
			
		||||
			"MIB module for IPSEC-VPN."
 | 
			
		||||
		::= { generalMib 13 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	ipsecVpnStatusTable OBJECT-TYPE
 | 
			
		||||
		SYNTAX SEQUENCE OF IpsecVpnStatusEntry
 | 
			
		||||
		MAX-ACCESS not-accessible
 | 
			
		||||
		STATUS current
 | 
			
		||||
		DESCRIPTION
 | 
			
		||||
			"IPsec VPN status table"
 | 
			
		||||
		::= { ipsecVpnMib 1 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnStatusEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpsecVpnStatusEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
			"An entry in the ipsecVpnStatusTable"
 | 
			
		||||
			INDEX { ipsecVpnStatusId }
 | 
			
		||||
			::= { ipsecVpnStatusTable 1 }
 | 
			
		||||
 | 
			
		||||
		IpsecVpnStatusEntry ::=
 | 
			
		||||
		SEQUENCE {
 | 
			
		||||
			ipsecVpnStatusId
 | 
			
		||||
				Integer32,
 | 
			
		||||
			ipsecVpnStatusProfileName
 | 
			
		||||
				OCTET STRING,
 | 
			
		||||
			ipsecVpnStatusConnectionState
 | 
			
		||||
				INTEGER,
 | 
			
		||||
			ipsecVpnStatusWanName
 | 
			
		||||
				OCTET STRING
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		ipsecVpnStatusId OBJECT-TYPE
 | 
			
		||||
			SYNTAX Integer32
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN status ID."
 | 
			
		||||
			::= { ipsecVpnStatusEntry 1 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnStatusProfileName OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN profile name."
 | 
			
		||||
			::= { ipsecVpnStatusEntry 2 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnStatusConnectionState OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER {
 | 
			
		||||
				standby(0),
 | 
			
		||||
				connecting(1),
 | 
			
		||||
				established(2),
 | 
			
		||||
				partially-established(3)
 | 
			
		||||
			}
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN connection state."
 | 
			
		||||
			::= { ipsecVpnStatusEntry 3 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnStatusWanName OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN WAN name."
 | 
			
		||||
			::= { ipsecVpnStatusEntry 4 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	ipsecVpnRouteStatusTable OBJECT-TYPE
 | 
			
		||||
		SYNTAX SEQUENCE OF IpsecVpnRouteStatusEntry
 | 
			
		||||
		MAX-ACCESS not-accessible
 | 
			
		||||
		STATUS current
 | 
			
		||||
		DESCRIPTION
 | 
			
		||||
			"IPsec VPN route status table"
 | 
			
		||||
		::= { ipsecVpnMib 2 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnRouteStatusEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpsecVpnRouteStatusEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
			"An entry in the ipsecVpnRouteStatusTable"
 | 
			
		||||
			INDEX { ipsecVpnStatusId, ipsecVpnRouteStatusId }
 | 
			
		||||
			::= { ipsecVpnRouteStatusTable 1 }
 | 
			
		||||
 | 
			
		||||
		IpsecVpnRouteStatusEntry ::=
 | 
			
		||||
		SEQUENCE {
 | 
			
		||||
			ipsecVpnRouteStatusId
 | 
			
		||||
				Integer32,
 | 
			
		||||
			ipsecVpnRouteState
 | 
			
		||||
				INTEGER,
 | 
			
		||||
			ipsecVpnRouteStatusLocalNetwork
 | 
			
		||||
				IpAddress,
 | 
			
		||||
			ipsecVpnRouteStatusLocalSubnet
 | 
			
		||||
				IpAddress,
 | 
			
		||||
			ipsecVpnRouteStatusRemoteNetwork
 | 
			
		||||
				IpAddress,
 | 
			
		||||
			ipsecVpnRouteStatusRemoteSubnet
 | 
			
		||||
				IpAddress
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		ipsecVpnRouteStatusId OBJECT-TYPE
 | 
			
		||||
			SYNTAX Integer32
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN route status ID."
 | 
			
		||||
			::= { ipsecVpnRouteStatusEntry 1 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnRouteState OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER {
 | 
			
		||||
				down(0),
 | 
			
		||||
				up(1),
 | 
			
		||||
				standby(2)
 | 
			
		||||
			}
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN route state."
 | 
			
		||||
			::= { ipsecVpnRouteStatusEntry 2 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnRouteStatusLocalNetwork OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN route local network."
 | 
			
		||||
			::= { ipsecVpnRouteStatusEntry 3 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnRouteStatusLocalSubnet OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN route local subnet."
 | 
			
		||||
			::= { ipsecVpnRouteStatusEntry 4 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnRouteStatusRemoteNetwork OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN route remote network."
 | 
			
		||||
			::= { ipsecVpnRouteStatusEntry 5 }
 | 
			
		||||
 | 
			
		||||
		ipsecVpnRouteStatusRemoteSubnet OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"IPsec VPN route remote subnet."
 | 
			
		||||
			::= { ipsecVpnRouteStatusEntry 6 }
 | 
			
		||||
END
 | 
			
		||||
							
								
								
									
										86
									
								
								mibs/peplink/LAN
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										86
									
								
								mibs/peplink/LAN
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,86 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
        LAN DEFINITIONS ::= BEGIN
 | 
			
		||||
 | 
			
		||||
                IMPORTS
 | 
			
		||||
                        OBJECT-GROUP
 | 
			
		||||
                                FROM SNMPv2-CONF
 | 
			
		||||
                        enterprises, IpAddress,Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
                                FROM SNMPv2-SMI
 | 
			
		||||
                        DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
                                FROM SNMPv2-TC;
 | 
			
		||||
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
 | 
			
		||||
-- The Enterprises Number
 | 
			
		||||
                peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
 | 
			
		||||
		productMib  OBJECT IDENTIFIER ::= { peplink 200 }
 | 
			
		||||
 | 
			
		||||
		generalMib OBJECT IDENTIFIER ::= { productMib 1 }
 | 
			
		||||
 | 
			
		||||
		lanMib OBJECT IDENTIFIER ::= { generalMib 3 }
 | 
			
		||||
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
                lanInfo MODULE-IDENTITY
 | 
			
		||||
                       	LAST-UPDATED "201305220000Z"		-- 05 22, 2013 at 12:00 GMT
 | 
			
		||||
			ORGANIZATION
 | 
			
		||||
				"PEPLINK"
 | 
			
		||||
			CONTACT-INFO
 | 
			
		||||
				""
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
			    	"MIB module for LAN."
 | 
			
		||||
		::= { lanMib 1 }
 | 
			
		||||
 | 
			
		||||
-- Local type define ----------------------------------------------------------
 | 
			
		||||
PortSpeedType ::= TEXTUAL-CONVENTION
 | 
			
		||||
    STATUS       current
 | 
			
		||||
    DESCRIPTION
 | 
			
		||||
            "Describe the port speed and type."
 | 
			
		||||
    SYNTAX       INTEGER {
 | 
			
		||||
                     unknown(0),
 | 
			
		||||
                     auto(1),
 | 
			
		||||
                     fullDulplex10(2),
 | 
			
		||||
                     halfDulplex10(3),
 | 
			
		||||
                     fullDulplex100(4),
 | 
			
		||||
                     halfDulplex100(5),
 | 
			
		||||
                     fullDulplex1000(6),
 | 
			
		||||
                     halfDulplex1000(7)
 | 
			
		||||
                 }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- #####################################################################
 | 
			
		||||
-- 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	lanStatus OBJECT IDENTIFIER ::= { lanInfo 1 }
 | 
			
		||||
 | 
			
		||||
		lanIp OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"LAN IP address."
 | 
			
		||||
			::= { lanStatus 1 }
 | 
			
		||||
 | 
			
		||||
		lanSubnetMask OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"LAN subnet mask."
 | 
			
		||||
			::= { lanStatus 2 }
 | 
			
		||||
 | 
			
		||||
		lanSpeed OBJECT-TYPE
 | 
			
		||||
			SYNTAX		PortSpeedType
 | 
			
		||||
			MAX-ACCESS	read-only
 | 
			
		||||
			STATUS		current
 | 
			
		||||
			DESCRIPTION	"LAN speed status (Auto/10baseT-FD/
 | 
			
		||||
						10baseT-HD/100baseTx-FD/100baseTx-HD/1000baseTx-FD/
 | 
			
		||||
						1000baseTx-HD."
 | 
			
		||||
			::= { lanStatus 3 }
 | 
			
		||||
END
 | 
			
		||||
							
								
								
									
										311
									
								
								mibs/peplink/PEPVPN-SPEEDFUSION
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										311
									
								
								mibs/peplink/PEPVPN-SPEEDFUSION
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,311 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
        PEPVPN-SPEEDFUSION DEFINITIONS ::= BEGIN
 | 
			
		||||
 | 
			
		||||
                IMPORTS
 | 
			
		||||
                        OBJECT-GROUP
 | 
			
		||||
                                FROM SNMPv2-CONF
 | 
			
		||||
                        enterprises, IpAddress,Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
                                FROM SNMPv2-SMI
 | 
			
		||||
                        DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
                                FROM SNMPv2-TC;
 | 
			
		||||
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
		peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
        
 | 
			
		||||
		productMib  OBJECT IDENTIFIER ::= { peplink 200 }
 | 
			
		||||
 | 
			
		||||
		generalMib OBJECT IDENTIFIER ::= { productMib 1 }
 | 
			
		||||
 | 
			
		||||
		pepvpnMib OBJECT IDENTIFIER ::= { generalMib 10 }
 | 
			
		||||
 | 
			
		||||
                pepvpn MODULE-IDENTITY
 | 
			
		||||
           		LAST-UPDATED "201305140000Z"		-- 05 15, 2013 at 12:00 GMT
 | 
			
		||||
			ORGANIZATION "PEPLINK"
 | 
			
		||||
                       	CONTACT-INFO ""
 | 
			
		||||
		    	DESCRIPTION
 | 
			
		||||
				    "MIB module for PepVPN."
 | 
			
		||||
		::= { pepvpnMib 1 }
 | 
			
		||||
 | 
			
		||||
-- #####################################################################
 | 
			
		||||
-- 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	pepVpnInfo OBJECT IDENTIFIER ::= { pepvpn 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
 | 
			
		||||
--		pepVpnStatus OBJECT-TYPE
 | 
			
		||||
--			SYNTAX INTEGER
 | 
			
		||||
--			MAX-ACCESS read-only
 | 
			
		||||
--			STATUS current
 | 
			
		||||
--			DESCRIPTION
 | 
			
		||||
--				"PepVpn status."
 | 
			
		||||
--			::= { pepVpnInfo 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		pepVpnStatusTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF PepVpnStatusEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"PepVpn status table"
 | 
			
		||||
			::= { pepVpnInfo 2 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX PepVpnStatusEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the pepVpnStatusTable"
 | 
			
		||||
			INDEX { pepVpnStatusId, pepVpnRemotePeerId }
 | 
			
		||||
			::= { pepVpnStatusTable 1 }
 | 
			
		||||
 | 
			
		||||
			PepVpnStatusEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				pepVpnStatusId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnStatusProfileName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				pepVpnStatusConnectionState
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnStatusEncryption
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnStatusL2Bridging
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnStatusL2Vlan
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnRemotePeerId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnRemotePeer
 | 
			
		||||
					OCTET STRING
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusId OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn ID."
 | 
			
		||||
				::= { pepVpnStatusEntry 1 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusProfileName OBJECT-TYPE
 | 
			
		||||
				SYNTAX OCTET STRING (SIZE (1..32))
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn profile name."
 | 
			
		||||
				::= { pepVpnStatusEntry 2 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusConnectionState OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER {
 | 
			
		||||
					start(0),
 | 
			
		||||
					authen(1),
 | 
			
		||||
					tunnel(2),
 | 
			
		||||
					route(3),
 | 
			
		||||
					connected(4)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn connection state."
 | 
			
		||||
				::= { pepVpnStatusEntry 3 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusEncryption OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER	{
 | 
			
		||||
					na(0), 
 | 
			
		||||
					off(1), 
 | 
			
		||||
					aes256(2)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn encryption."
 | 
			
		||||
				::= { pepVpnStatusEntry 4 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusL2Bridging OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER{
 | 
			
		||||
					disable(0), 
 | 
			
		||||
					enable(1)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn L2 bridging status."
 | 
			
		||||
				::= { pepVpnStatusEntry 5 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusL2Vlan OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER(1..4094)
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn L2 VLAN ID.
 | 
			
		||||
					Remark:
 | 
			
		||||
					If the value equals 0, means VLAN ID 
 | 
			
		||||
					not applicable in this PepVpn."
 | 
			
		||||
				::= { pepVpnStatusEntry 6 }
 | 
			
		||||
 | 
			
		||||
			pepVpnRemotePeerId OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn remote peer ID."
 | 
			
		||||
				::= { pepVpnStatusEntry 7 }
 | 
			
		||||
 | 
			
		||||
			pepVpnRemotePeer OBJECT-TYPE
 | 
			
		||||
				SYNTAX OCTET STRING
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn remote peer."
 | 
			
		||||
				::= { pepVpnStatusEntry 8 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		pepVpnStatusWanTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF PepVpnStatusWanEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"PepVpn status network WAN table"
 | 
			
		||||
			::= { pepVpnInfo 3 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusWanEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX PepVpnStatusWanEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the pepVpnStatusWanTable"
 | 
			
		||||
			INDEX { pepVpnStatusId, pepVpnRemotePeerId, pepVpnStatusWanId }
 | 
			
		||||
			::= { pepVpnStatusWanTable 1 }
 | 
			
		||||
 | 
			
		||||
			PepVpnStatusWanEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				pepVpnStatusWanId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnStatusWanName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				pepVpnStatusWanTxBytes
 | 
			
		||||
					Counter64,
 | 
			
		||||
				pepVpnStatusWanRxBytes
 | 
			
		||||
					Counter64,
 | 
			
		||||
				pepVpnStatusWanDropPackets
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnStatusWanLatency
 | 
			
		||||
					INTEGER
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusWanId OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN id."
 | 
			
		||||
				::= { pepVpnStatusWanEntry 1 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusWanName OBJECT-TYPE
 | 
			
		||||
				SYNTAX OCTET STRING (SIZE (1..32))
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN name."
 | 
			
		||||
				::= { pepVpnStatusWanEntry 2 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusWanTxBytes OBJECT-TYPE
 | 
			
		||||
				SYNTAX Counter64
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN transmitted bytes."
 | 
			
		||||
				::= { pepVpnStatusWanEntry 3 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusWanRxBytes OBJECT-TYPE
 | 
			
		||||
				SYNTAX Counter64
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN received bytes."
 | 
			
		||||
				::= { pepVpnStatusWanEntry 4 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusWanDropPackets OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN drop packets."
 | 
			
		||||
				::= { pepVpnStatusWanEntry 5 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusWanLatency OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN latency(units: ms)."
 | 
			
		||||
				::= { pepVpnStatusWanEntry 6 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		pepVpnStatusRemoteNetworkTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF PepVpnStatusRemoteNetworkEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"PepVpn status remote network table"
 | 
			
		||||
			::= { pepVpnInfo 4 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusRemoteNetworkEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX PepVpnStatusRemoteNetworkEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the pepVpnStatusRemoteNetworkTable"
 | 
			
		||||
			INDEX { pepVpnStatusId, pepVpnRemotePeerId, pepVpnStatusRemoteNetowrkId }
 | 
			
		||||
			::= { pepVpnStatusRemoteNetworkTable 1 }
 | 
			
		||||
 | 
			
		||||
			PepVpnStatusRemoteNetworkEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				pepVpnStatusRemoteNetowrkId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				pepVpnStatusRemoteNetwork
 | 
			
		||||
					IpAddress,
 | 
			
		||||
				pepVpnStatusRemoteSubnet
 | 
			
		||||
					IpAddress
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusRemoteNetowrkId OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn remote network id."
 | 
			
		||||
				::= { pepVpnStatusRemoteNetworkEntry 1 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusRemoteNetwork OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn remote network IP."
 | 
			
		||||
				::= { pepVpnStatusRemoteNetworkEntry 2 }
 | 
			
		||||
 | 
			
		||||
			pepVpnStatusRemoteSubnet OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"PepVpn remote network subnet."
 | 
			
		||||
				::= { pepVpnStatusRemoteNetworkEntry 3 }
 | 
			
		||||
 | 
			
		||||
END
 | 
			
		||||
							
								
								
									
										496
									
								
								mibs/peplink/WAN
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										496
									
								
								mibs/peplink/WAN
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,496 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
        WAN DEFINITIONS ::= BEGIN
 | 
			
		||||
 | 
			
		||||
                IMPORTS
 | 
			
		||||
                        OBJECT-GROUP
 | 
			
		||||
                                FROM SNMPv2-CONF
 | 
			
		||||
                        enterprises, Integer32, IpAddress, Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
                                FROM SNMPv2-SMI
 | 
			
		||||
                        DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
                                FROM SNMPv2-TC;
 | 
			
		||||
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
 | 
			
		||||
-- The Enterprises Number
 | 
			
		||||
                peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
 | 
			
		||||
                wan-status MODULE-IDENTITY
 | 
			
		||||
			LAST-UPDATED "201609060000Z"		-- 09 06, 2016 at 12:00 GMT
 | 
			
		||||
			ORGANIZATION
 | 
			
		||||
				"PEPLINK"
 | 
			
		||||
			CONTACT-INFO
 | 
			
		||||
				""
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"MIB module for WAN."
 | 
			
		||||
		::= { peplink 2 }
 | 
			
		||||
 | 
			
		||||
-- Local type define ----------------------------------------------------------
 | 
			
		||||
PortSpeedType ::= TEXTUAL-CONVENTION
 | 
			
		||||
    	STATUS       current
 | 
			
		||||
    	DESCRIPTION
 | 
			
		||||
        	"Describe the port speed and type."
 | 
			
		||||
    	SYNTAX INTEGER {
 | 
			
		||||
        	unknown(0),
 | 
			
		||||
                auto(1),
 | 
			
		||||
                fullDulplex10(2),
 | 
			
		||||
                halfDulplex10(3),
 | 
			
		||||
                fullDulplex100(4),
 | 
			
		||||
                halfDulplex100(5),
 | 
			
		||||
                fullDulplex1000(6),
 | 
			
		||||
                halfDulplex1000(7)
 | 
			
		||||
	}
 | 
			
		||||
-------------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
-- #####################################################################
 | 
			
		||||
-- 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	wanStatus OBJECT IDENTIFIER ::= { wan-status 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
 | 
			
		||||
		wanNum OBJECT-TYPE
 | 
			
		||||
			SYNTAX Integer32
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"Number of WAN network."
 | 
			
		||||
			::= { wanStatus 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wanTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WanEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WAN Table"
 | 
			
		||||
			::= { wanStatus 2 }
 | 
			
		||||
 | 
			
		||||
			wanEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WanEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wanTable"
 | 
			
		||||
			INDEX { wanId }
 | 
			
		||||
			::= { wanTable 1 }
 | 
			
		||||
 | 
			
		||||
			WanEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wanId
 | 
			
		||||
					Integer32,
 | 
			
		||||
				wanName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wanState
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wanHealthCheckState
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wanSignal
 | 
			
		||||
					Integer32,
 | 
			
		||||
				wanCellID
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wanPdpConnection
 | 
			
		||||
					INTEGER
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wanId OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN ID."
 | 
			
		||||
				::= { wanEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wanName OBJECT-TYPE
 | 
			
		||||
				SYNTAX OCTET STRING (SIZE (1..32))
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN Name."
 | 
			
		||||
				::= { wanEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wanState OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER {
 | 
			
		||||
					unknown(0),
 | 
			
		||||
					disabled(1),
 | 
			
		||||
					disconnected(2),
 | 
			
		||||
					connected(3),
 | 
			
		||||
					connecting(4),
 | 
			
		||||
					activating(5),
 | 
			
		||||
					health-check-fail(6),
 | 
			
		||||
					disconnected-manually(7),
 | 
			
		||||
					standby(8)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN status."
 | 
			
		||||
				::= { wanEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wanHealthCheckState OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER	{
 | 
			
		||||
					fail(0),
 | 
			
		||||
					success(1)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN health check state."
 | 
			
		||||
				::= { wanEntry 4 }
 | 
			
		||||
 | 
			
		||||
			wanSignal OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN signal strength in dBm unit.
 | 
			
		||||
					Remark:
 | 
			
		||||
					If the value equals -9999, means signal strength 
 | 
			
		||||
					not applicable in this WAN."
 | 
			
		||||
				::= { wanEntry 5 }
 | 
			
		||||
 | 
			
		||||
			wanCellID OBJECT-TYPE
 | 
			
		||||
				SYNTAX OCTET STRING
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN cell id.
 | 
			
		||||
					Remark:
 | 
			
		||||
					Only applicable for cellular WAN."
 | 
			
		||||
				::= { wanEntry 6 }
 | 
			
		||||
 | 
			
		||||
			wanPdpConnection OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER {
 | 
			
		||||
					unknown(0),
 | 
			
		||||
					pdp-ip(1),
 | 
			
		||||
					pdp-ppp(2),
 | 
			
		||||
					pdp-ipv6(3),
 | 
			
		||||
					pdp-ipv4v6(4)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN PDP connection type.
 | 
			
		||||
					Remark:
 | 
			
		||||
					Only applicable for cellular WAN."
 | 
			
		||||
				::= { wanEntry 7 }
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
 | 
			
		||||
	wanNetwork OBJECT IDENTIFIER ::= { wanStatus 3 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wanNetworkIpTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WanNetworkIpEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WAN Network IP Table"
 | 
			
		||||
			::= { wanNetwork 1 }
 | 
			
		||||
 | 
			
		||||
			wanNetworkIpEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WanNetworkIpEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wanNetworkIpTable"
 | 
			
		||||
			INDEX { wanId, wanNetworkIpId }
 | 
			
		||||
			::= { wanNetworkIpTable 1 }
 | 
			
		||||
 | 
			
		||||
			WanNetworkIpEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wanNetworkIpId
 | 
			
		||||
					Integer32,
 | 
			
		||||
				wanNetworkIpType
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wanNetworkIpAddress
 | 
			
		||||
					IpAddress,
 | 
			
		||||
				wanNetworkSubnetMask
 | 
			
		||||
					IpAddress
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wanNetworkIpId OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network IP id."
 | 
			
		||||
				::= { wanNetworkIpEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wanNetworkIpType OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER{
 | 
			
		||||
					dhcp(0),
 | 
			
		||||
					static(1),
 | 
			
		||||
					pppoe(2)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network IP type."
 | 
			
		||||
				::= { wanNetworkIpEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wanNetworkIpAddress OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network IP address."
 | 
			
		||||
				::= { wanNetworkIpEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wanNetworkSubnetMask OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network subnet mask."
 | 
			
		||||
				::= { wanNetworkIpEntry 4 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wanNetworkDnsTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WanNetworkDnsEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WAN Network DNS Table"
 | 
			
		||||
			::= { wanNetwork 2 }
 | 
			
		||||
 | 
			
		||||
			wanNetworkDnsEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WanNetworkDnsEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wanNetworkDnsTable"
 | 
			
		||||
			INDEX { wanId, wanNetworkDnsId }
 | 
			
		||||
			::= { wanNetworkDnsTable 1 }
 | 
			
		||||
 | 
			
		||||
			WanNetworkDnsEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wanNetworkDnsId
 | 
			
		||||
					Integer32,
 | 
			
		||||
				wanNetworkDnsServer
 | 
			
		||||
					IpAddress
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wanNetworkDnsId OBJECT-TYPE
 | 
			
		||||
				SYNTAX Integer32
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network DNS id."
 | 
			
		||||
				::= { wanNetworkDnsEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wanNetworkDnsServer OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network DNS server."
 | 
			
		||||
				::= { wanNetworkDnsEntry 2 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wanNetworkTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WanNetworkEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WAN Network Table"
 | 
			
		||||
			::= { wanNetwork 3 }
 | 
			
		||||
 | 
			
		||||
			wanNetworkEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WanNetworkEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wanNetworkTable"
 | 
			
		||||
			INDEX { wanId }
 | 
			
		||||
			::= { wanNetworkTable 1 }
 | 
			
		||||
 | 
			
		||||
			WanNetworkEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wanNetworkGateway
 | 
			
		||||
					IpAddress
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wanNetworkGateway OBJECT-TYPE
 | 
			
		||||
				SYNTAX IpAddress
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network subnet mask."
 | 
			
		||||
				::= { wanNetworkEntry 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wanDataUsageTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WanDataUsageEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WAN Network Data Usage Table"
 | 
			
		||||
			::= { wanStatus 4 }
 | 
			
		||||
 | 
			
		||||
			wanDataUsageEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WanDataUsageEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wanDataUsageTable"
 | 
			
		||||
			INDEX { wanId, dataTypeID }
 | 
			
		||||
			::= { wanDataUsageTable 1 }
 | 
			
		||||
 | 
			
		||||
			WanDataUsageEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				dataTypeID
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wanDataUsageTxByte
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wanDataUsageRxByte
 | 
			
		||||
					Counter64
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			dataTypeID OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER{
 | 
			
		||||
					daily(0),
 | 
			
		||||
					monthly(1),
 | 
			
		||||
					sinceLastReboot(3)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network data usage type id."
 | 
			
		||||
				::= { wanDataUsageEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wanDataUsageTxByte OBJECT-TYPE
 | 
			
		||||
				SYNTAX Counter64
 | 
			
		||||
				UNITS 	"MB"
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network transmitted bytes(units: MB)."
 | 
			
		||||
				::= { wanDataUsageEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wanDataUsageRxByte OBJECT-TYPE
 | 
			
		||||
				SYNTAX Counter64
 | 
			
		||||
				UNITS 	"MB"
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network received bytes(units: MB)."
 | 
			
		||||
				::= { wanDataUsageEntry 3 }
 | 
			
		||||
 | 
			
		||||
		portWanSpeedTable OBJECT-TYPE
 | 
			
		||||
				SYNTAX		SEQUENCE OF PortWanSpeedEntry
 | 
			
		||||
				MAX-ACCESS	not-accessible
 | 
			
		||||
				STATUS		current
 | 
			
		||||
				DESCRIPTION	"WAN port speed table."
 | 
			
		||||
				::= { wanStatus 5 }
 | 
			
		||||
 | 
			
		||||
			portWanSpeedEntry OBJECT-TYPE
 | 
			
		||||
				SYNTAX		PortWanSpeedEntry
 | 
			
		||||
				MAX-ACCESS	not-accessible
 | 
			
		||||
				STATUS		current
 | 
			
		||||
				DESCRIPTION	"An entry in the portWanSpeedTable"
 | 
			
		||||
				INDEX   { portWanSpeedIndex }
 | 
			
		||||
				::= { portWanSpeedTable 1 }
 | 
			
		||||
 | 
			
		||||
			PortWanSpeedEntry ::=
 | 
			
		||||
				SEQUENCE {
 | 
			
		||||
					portWanSpeedIndex
 | 
			
		||||
						Integer32,
 | 
			
		||||
					portWanSpeed
 | 
			
		||||
						PortSpeedType
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
			portWanSpeedIndex OBJECT-TYPE
 | 
			
		||||
				SYNTAX		Integer32
 | 
			
		||||
				MAX-ACCESS	read-only
 | 
			
		||||
				STATUS		current
 | 
			
		||||
				DESCRIPTION	"WAN port speed index."
 | 
			
		||||
				::= { portWanSpeedEntry 1 }
 | 
			
		||||
 | 
			
		||||
			portWanSpeed OBJECT-TYPE
 | 
			
		||||
				SYNTAX		PortSpeedType
 | 
			
		||||
				MAX-ACCESS	read-only
 | 
			
		||||
				STATUS		current
 | 
			
		||||
				DESCRIPTION	"WAN port speed status (Auto/10baseT-FD/
 | 
			
		||||
							10baseT-HD/100baseTx-FD/100baseTx-HD/1000baseTx-FD/
 | 
			
		||||
							1000baseTx-HD."
 | 
			
		||||
				::= { portWanSpeedEntry 2 }
 | 
			
		||||
 | 
			
		||||
	wanOverallStatus OBJECT IDENTIFIER ::= { wan-status 2 }
 | 
			
		||||
 | 
			
		||||
		wanOverallDataUsageTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WanOverallDataUsageEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WAN Network Overall Data Usage Table"
 | 
			
		||||
			::= { wanOverallStatus 1 }
 | 
			
		||||
 | 
			
		||||
			wanOverallDataUsageEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WanOverallDataUsageEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wanOverallDataUsageTable"
 | 
			
		||||
			INDEX { wanOverallDataTypeID }
 | 
			
		||||
			::= { wanOverallDataUsageTable 1 }
 | 
			
		||||
 | 
			
		||||
			WanOverallDataUsageEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wanOverallDataTypeID
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wanOverallDataUsageTxByte
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wanOverallDataUsageRxByte
 | 
			
		||||
					Counter64
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wanOverallDataTypeID OBJECT-TYPE
 | 
			
		||||
				SYNTAX INTEGER{
 | 
			
		||||
					sinceLastReboot(3),
 | 
			
		||||
					sinceInstallation(4)
 | 
			
		||||
				}
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network data usage type id."
 | 
			
		||||
				::= { wanOverallDataUsageEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wanOverallDataUsageTxByte OBJECT-TYPE
 | 
			
		||||
				SYNTAX Counter64
 | 
			
		||||
				UNITS 	"MB"
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network transmitted bytes(units: MB)."
 | 
			
		||||
				::= { wanOverallDataUsageEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wanOverallDataUsageRxByte OBJECT-TYPE
 | 
			
		||||
				SYNTAX Counter64
 | 
			
		||||
				UNITS 	"MB"
 | 
			
		||||
				MAX-ACCESS read-only
 | 
			
		||||
				STATUS current
 | 
			
		||||
				DESCRIPTION
 | 
			
		||||
					"WAN network received bytes(units: MB)."
 | 
			
		||||
				::= { wanOverallDataUsageEntry 3 }
 | 
			
		||||
END
 | 
			
		||||
							
								
								
									
										707
									
								
								mibs/peplink/WLC
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										707
									
								
								mibs/peplink/WLC
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,707 @@
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
        WLC DEFINITIONS ::= BEGIN
 | 
			
		||||
 | 
			
		||||
                IMPORTS
 | 
			
		||||
                        OBJECT-GROUP
 | 
			
		||||
                                FROM SNMPv2-CONF
 | 
			
		||||
                        enterprises, IpAddress,Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
 | 
			
		||||
                                FROM SNMPv2-SMI
 | 
			
		||||
                        DisplayString, RowStatus, TruthValue, MacAddress
 | 
			
		||||
                                FROM SNMPv2-TC;
 | 
			
		||||
 | 
			
		||||
--
 | 
			
		||||
-- Node definitions
 | 
			
		||||
--
 | 
			
		||||
 | 
			
		||||
-- The Enterprises Number
 | 
			
		||||
                peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
 | 
			
		||||
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
-- *  MODULE IDENTITY
 | 
			
		||||
-- ********************************************************************
 | 
			
		||||
                wlc MODULE-IDENTITY
 | 
			
		||||
                        LAST-UPDATED "2011081900Z"              -- 08 19, 2011 at 12:00 GMT
 | 
			
		||||
                        ORGANIZATION
 | 
			
		||||
                                "PEPLINK"
 | 
			
		||||
                        CONTACT-INFO
 | 
			
		||||
                                ""
 | 
			
		||||
                        DESCRIPTION
 | 
			
		||||
                                "MIB module for WLC."
 | 
			
		||||
                        ::= { peplink 4 }
 | 
			
		||||
 | 
			
		||||
-- #####################################################################
 | 
			
		||||
-- 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	wlcSystemInfo OBJECT IDENTIFIER ::= { wlc 1 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  WLC System Basic Info 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	wlcSystemBasicInfo OBJECT IDENTIFIER ::= { wlcSystemInfo 1 }
 | 
			
		||||
 | 
			
		||||
		wlcApMgmtEnable OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER{ disable(0), enable(1) }
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Mangement Enable"
 | 
			
		||||
			::= { wlcSystemBasicInfo 1 }
 | 
			
		||||
 | 
			
		||||
		wlcRemoteApMgmtEnable OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER{ disable(0), enable(1) }
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Remote AP Management Enable"
 | 
			
		||||
			::= { wlcSystemBasicInfo 2 }
 | 
			
		||||
 | 
			
		||||
		wlcMaxNumAp OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Maximum Number of Supported AP Licensed"
 | 
			
		||||
			::= { wlcSystemBasicInfo 3 }
 | 
			
		||||
 | 
			
		||||
		wlcNumApProfile OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Number of AP Profile Created"
 | 
			
		||||
			::= { wlcSystemBasicInfo 4 }
 | 
			
		||||
 | 
			
		||||
		wlcNumWlanNetwork OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Number of WLAN Network Created"
 | 
			
		||||
			::= { wlcSystemBasicInfo 5 }
 | 
			
		||||
 | 
			
		||||
		wlcNumApReg OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Number of AP Registered"
 | 
			
		||||
			::= { wlcSystemBasicInfo 6 }
 | 
			
		||||
 | 
			
		||||
		wlcNumApOnline OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current Number of Online AP"
 | 
			
		||||
			::= { wlcSystemBasicInfo 7 }
 | 
			
		||||
 | 
			
		||||
		wlcNumAssocSta OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current Number of Associated WLAN Station"
 | 
			
		||||
			::= { wlcSystemBasicInfo 8 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	wlcApMgmtInfo OBJECT IDENTIFIER ::= { wlc 2 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  WLC AP Group Info Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wlcApGroupInfoTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WlcApGroupInfoEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Information Table"
 | 
			
		||||
			::= { wlcApMgmtInfo 1 }
 | 
			
		||||
 | 
			
		||||
			wlcApGroupInfoEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WlcApGroupInfoEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wlcApGroupInfoTable"
 | 
			
		||||
			INDEX { wlcApGrpId }
 | 
			
		||||
			::= { wlcApGroupInfoTable 1 }
 | 
			
		||||
 | 
			
		||||
			WlcApGroupInfoEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wlcApGrpId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApGrpName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcApGrpBand24WlanNetwork
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApGrpBand50WlanNetwork
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApGrpNumApReg
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApGrpNumApOnline
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApGrpNumAssocSta
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApGrpMgmtVlan
 | 
			
		||||
					INTEGER
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wlcApGrpId OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group ID"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpName OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..64))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Name"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpBand24WlanNetwork OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current Number of 2.4GHz Band WLAN Network"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpBand50WlanNetwork OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current Number of 5GHz Band WLAN Network"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 4 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpNumApReg OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Number of Registered AP in this AP Group"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 5 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpNumApOnline OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Number of Online AP in this AP Group"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 6 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpNumAssocSta OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Number of Associated WLAN Stations in this AP Group"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 7 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpMgmtVlan OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER(0..4095)
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Managment VLAN ID of this AP Group"
 | 
			
		||||
			::= { wlcApGroupInfoEntry 8 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  WLC AP Group Statistics Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wlcApGroupStatTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WlcApGroupStatEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLAN AP Group Statistics Table"
 | 
			
		||||
			::= { wlcApMgmtInfo 2 }
 | 
			
		||||
 | 
			
		||||
			wlcApGroupStatEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WlcApGroupStatEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wlcApGroupStatTable"
 | 
			
		||||
			INDEX { wlcApGrpId, wlcApGrpStatBand }
 | 
			
		||||
			::= { wlcApGroupStatTable 1 }
 | 
			
		||||
 | 
			
		||||
			WlcApGroupStatEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wlcApGrpStatName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcApGrpStatBand
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApGrpStatNumTxPkt
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wlcApGrpStatNumTxByte
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wlcApGrpStatNumRxPkt
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wlcApGrpStatNumRxByte
 | 
			
		||||
					Counter64
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wlcApGrpStatName OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..64))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Name"
 | 
			
		||||
			::= { wlcApGroupStatEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpStatBand OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER{	band24(1), band50(2) }
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Statistics of Frequency Band"
 | 
			
		||||
			::= { wlcApGroupStatEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpStatNumTxPkt OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Number of Transmitted Packets"
 | 
			
		||||
			::= { wlcApGroupStatEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpStatNumTxByte OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Number of Transmitted Bytes"
 | 
			
		||||
			::= { wlcApGroupStatEntry 4 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpStatNumRxPkt OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Number of Received Packets"
 | 
			
		||||
			::= { wlcApGroupStatEntry 5 }
 | 
			
		||||
 | 
			
		||||
			wlcApGrpStatNumRxByte OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Group Number of Received Bytes"
 | 
			
		||||
			::= { wlcApGroupStatEntry 6 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  WLC Wlan Network Info Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wlcWlanNetworkInfoTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WlcWlanNetworkInfoEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network Information Table"
 | 
			
		||||
			::= { wlcApMgmtInfo 3 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanNetworkInfoEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WlcWlanNetworkInfoEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wlcWlanNetworkInfoTable"
 | 
			
		||||
			INDEX { wlcWlanNetworkId }
 | 
			
		||||
			::= { wlcWlanNetworkInfoTable 1 }
 | 
			
		||||
 | 
			
		||||
			WlcWlanNetworkInfoEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wlcWlanNetworkId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcWlanEssid
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcWlanSecMode
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcWlanNumApOnline
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcWlanNumAssocSta
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcWlanVlanPool
 | 
			
		||||
					OCTET STRING
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wlcWlanNetworkId OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network ID"
 | 
			
		||||
			::= { wlcWlanNetworkInfoEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanEssid OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..32))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network ESSID"
 | 
			
		||||
			::= { wlcWlanNetworkInfoEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanSecMode OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER{	none(0), wep(1), legacy8021x(2), wpaMix(3) }
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network Security Mode"
 | 
			
		||||
			::= { wlcWlanNetworkInfoEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanNumApOnline OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current Number of Online AP in this WLAN Network"
 | 
			
		||||
			::= { wlcWlanNetworkInfoEntry 4 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanNumAssocSta OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current Number of Associated Stations in this WLAN Network"
 | 
			
		||||
			::= { wlcWlanNetworkInfoEntry 5 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanVlanPool OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..32))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC VLAN Pool Setting of this WLAN Network"
 | 
			
		||||
			::= { wlcWlanNetworkInfoEntry 6 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  WLC Wlan Network Stat Table 
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wlcWlanNetworkStatTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WlcWlanNetworkStatEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network Statistics Table"
 | 
			
		||||
			::= { wlcApMgmtInfo 4 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanNetworkStatEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WlcWlanNetworkStatEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wlcWlanNetworkInfoTable"
 | 
			
		||||
			INDEX { wlcWlanNetworkId, wlcWlanStatBand }
 | 
			
		||||
			::= { wlcWlanNetworkStatTable 1 }
 | 
			
		||||
 | 
			
		||||
			WlcWlanNetworkStatEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wlcWlanStatEssid
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcWlanStatBand
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcWlanStatNumTxPkt
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wlcWlanStatNumTxByte
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wlcWlanStatNumRxPkt
 | 
			
		||||
					Counter64,
 | 
			
		||||
				wlcWlanStatNumRxByte
 | 
			
		||||
					Counter64
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wlcWlanStatEssid OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..32))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network ESSID"
 | 
			
		||||
			::= { wlcWlanNetworkStatEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanStatBand OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER{	band24(1), band50(2) }
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Statistics of WLAN Network in Frequency Band"
 | 
			
		||||
			::= { wlcWlanNetworkStatEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanStatNumTxPkt OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network Number of Transmitted Packets"
 | 
			
		||||
			::= { wlcWlanNetworkStatEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanStatNumTxByte OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network Number of Transmitted Bytes"
 | 
			
		||||
			::= { wlcWlanNetworkStatEntry 4 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanStatNumRxPkt OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network Number of Received Packets"
 | 
			
		||||
			::= { wlcWlanNetworkStatEntry 5 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanStatNumRxByte OBJECT-TYPE
 | 
			
		||||
			SYNTAX Counter64
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC WLAN Network Number of Received Bytes"
 | 
			
		||||
			::= { wlcWlanNetworkStatEntry 6 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	wlcWlanNeighDeviceInfo OBJECT IDENTIFIER ::= { wlc 3 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  WLC Wlan Neighbor AP Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wlcWlanNeighApTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WlcWlanNeighApEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Neighbor AP Table"
 | 
			
		||||
			::= { wlcWlanNeighDeviceInfo 1 }
 | 
			
		||||
 | 
			
		||||
			wlcWlanNeighApEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WlcWlanNeighApEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wlcWlanNeighApTable"
 | 
			
		||||
			INDEX { wlcNeighApBssid }
 | 
			
		||||
			::= { wlcWlanNeighApTable 1 }
 | 
			
		||||
 | 
			
		||||
			WlcWlanNeighApEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wlcNeighApBssid
 | 
			
		||||
					MacAddress,
 | 
			
		||||
				wlcNeighApEssid
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcNeighApChannel
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcNeighApEncytMode
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcNeighNumApSeen
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcNeighNearestAp
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcNeighNearestApRssi
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcNeighFurthestAp
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcNeighFurthestApRssi
 | 
			
		||||
					INTEGER
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wlcNeighApBssid OBJECT-TYPE
 | 
			
		||||
			SYNTAX MacAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Neighbor AP BSSID"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighApEssid OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..32))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Neighbor AP ESSID"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighApChannel OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Neighbor AP Channel"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighApEncytMode OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER{ none(0), wep(1), wpa(2), wpa2(3) }
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Neighbor AP Encryption Mode"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 4 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighNumApSeen OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Number of AP which can detect the Neighbor AP"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 5 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighNearestAp OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (12))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Nearest AP Serial Number"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 6 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighNearestApRssi OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Neighbor Signal Strength received by the Nearest AP"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 7 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighFurthestAp OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (12))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Furthest AP Serial Number"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 8 }
 | 
			
		||||
 | 
			
		||||
			wlcNeighFurthestApRssi OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Neighbor Signal Strength received by the Furthest AP"
 | 
			
		||||
			::= { wlcWlanNeighApEntry 9 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  MIB attribute OBJECT-TYPE definitions follow
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
	wlcApInfo OBJECT IDENTIFIER ::= { wlc 4 }
 | 
			
		||||
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
-- *  WLC AP Info Table
 | 
			
		||||
-- **********************************************************************
 | 
			
		||||
		wlcApInfoTable OBJECT-TYPE
 | 
			
		||||
			SYNTAX SEQUENCE OF WlcApInfoEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLAN Managed AP Information Table"
 | 
			
		||||
			::= { wlcApInfo 1 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoEntry OBJECT-TYPE
 | 
			
		||||
			SYNTAX WlcApInfoEntry
 | 
			
		||||
			MAX-ACCESS not-accessible
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"An entry in the wlcApInfoTable"
 | 
			
		||||
			INDEX { wlcApInfoApId }
 | 
			
		||||
			::= { wlcApInfoTable 1 }
 | 
			
		||||
 | 
			
		||||
			WlcApInfoEntry ::=
 | 
			
		||||
			SEQUENCE {
 | 
			
		||||
				wlcApInfoApId
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApInfoApSerialNumber
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcApInfoApName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcApInfoApModelName
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcApInfoApFirmwareVer
 | 
			
		||||
					OCTET STRING,
 | 
			
		||||
				wlcApInfoApStatus
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApInfoApIp
 | 
			
		||||
					IpAddress,
 | 
			
		||||
				wlcApInfoApGrpID
 | 
			
		||||
					INTEGER,
 | 
			
		||||
				wlcApInfoApGrpName
 | 
			
		||||
					OCTET STRING
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApId OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP ID"
 | 
			
		||||
			::= { wlcApInfoEntry 1 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApSerialNumber OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..14))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Serial Number"
 | 
			
		||||
			::= { wlcApInfoEntry 2 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApName OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..32))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Name"
 | 
			
		||||
			::= { wlcApInfoEntry 3 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApModelName OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..32))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Model Name"
 | 
			
		||||
			::= { wlcApInfoEntry 4 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApFirmwareVer OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..32))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Firmare Version"
 | 
			
		||||
			::= { wlcApInfoEntry 5 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApStatus OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER{ offline(0), online(1) }
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current AP Status"
 | 
			
		||||
			::= { wlcApInfoEntry 6 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApIp OBJECT-TYPE
 | 
			
		||||
			SYNTAX IpAddress
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC Current AP Ip Address"
 | 
			
		||||
			::= { wlcApInfoEntry 7 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApGrpID OBJECT-TYPE
 | 
			
		||||
			SYNTAX INTEGER
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Configured AP Group ID"
 | 
			
		||||
			::= { wlcApInfoEntry 8 }
 | 
			
		||||
 | 
			
		||||
			wlcApInfoApGrpName OBJECT-TYPE
 | 
			
		||||
			SYNTAX OCTET STRING (SIZE (0..64))
 | 
			
		||||
			MAX-ACCESS read-only
 | 
			
		||||
			STATUS current
 | 
			
		||||
			DESCRIPTION
 | 
			
		||||
				"WLC AP Configured AP Group Name"
 | 
			
		||||
			::= { wlcApInfoEntry 9 }
 | 
			
		||||
END
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										880
									
								
								tests/data/fusionhub.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										880
									
								
								tests/data/fusionhub.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,880 @@
 | 
			
		||||
{
 | 
			
		||||
    "os": {
 | 
			
		||||
        "discovery": {
 | 
			
		||||
            "devices": [
 | 
			
		||||
                {
 | 
			
		||||
                    "sysName": "<private>",
 | 
			
		||||
                    "sysObjectID": ".1.3.6.1.4.1.23695",
 | 
			
		||||
                    "sysDescr": "Peplink FusionHub",
 | 
			
		||||
                    "sysContact": null,
 | 
			
		||||
                    "version": null,
 | 
			
		||||
                    "hardware": null,
 | 
			
		||||
                    "features": null,
 | 
			
		||||
                    "os": "fusionhub",
 | 
			
		||||
                    "type": "appliance",
 | 
			
		||||
                    "serial": null,
 | 
			
		||||
                    "icon": "peplink.svg",
 | 
			
		||||
                    "location": null
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "poller": {
 | 
			
		||||
            "devices": [
 | 
			
		||||
                {
 | 
			
		||||
                    "sysName": "<private>",
 | 
			
		||||
                    "sysObjectID": ".1.3.6.1.4.1.23695",
 | 
			
		||||
                    "sysDescr": "Peplink FusionHub",
 | 
			
		||||
                    "sysContact": "<private>",
 | 
			
		||||
                    "version": "8.0.0 build 1595",
 | 
			
		||||
                    "hardware": "Peplink FusionHub",
 | 
			
		||||
                    "features": null,
 | 
			
		||||
                    "os": "fusionhub",
 | 
			
		||||
                    "type": "appliance",
 | 
			
		||||
                    "serial": "1113-8637-D091",
 | 
			
		||||
                    "icon": "peplink.svg",
 | 
			
		||||
                    "location": "<private>"
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    "ports": {
 | 
			
		||||
        "discovery": {
 | 
			
		||||
            "ports": [
 | 
			
		||||
                {
 | 
			
		||||
                    "port_descr_type": null,
 | 
			
		||||
                    "port_descr_descr": null,
 | 
			
		||||
                    "port_descr_circuit": null,
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "WAN",
 | 
			
		||||
                    "ifName": "WAN",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": 1,
 | 
			
		||||
                    "ifSpeed": null,
 | 
			
		||||
                    "ifSpeed_prev": null,
 | 
			
		||||
                    "ifConnectorPresent": null,
 | 
			
		||||
                    "ifPromiscuousMode": null,
 | 
			
		||||
                    "ifHighSpeed": null,
 | 
			
		||||
                    "ifHighSpeed_prev": null,
 | 
			
		||||
                    "ifOperStatus": "up",
 | 
			
		||||
                    "ifOperStatus_prev": null,
 | 
			
		||||
                    "ifAdminStatus": null,
 | 
			
		||||
                    "ifAdminStatus_prev": null,
 | 
			
		||||
                    "ifDuplex": null,
 | 
			
		||||
                    "ifMtu": null,
 | 
			
		||||
                    "ifType": "ethernetCsmacd",
 | 
			
		||||
                    "ifAlias": "WAN",
 | 
			
		||||
                    "ifPhysAddress": null,
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": 0,
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
                    "counter_out": null,
 | 
			
		||||
                    "ignore": 0,
 | 
			
		||||
                    "disabled": 0,
 | 
			
		||||
                    "detailed": 0,
 | 
			
		||||
                    "deleted": 0,
 | 
			
		||||
                    "pagpOperationMode": null,
 | 
			
		||||
                    "pagpPortState": null,
 | 
			
		||||
                    "pagpPartnerDeviceId": null,
 | 
			
		||||
                    "pagpPartnerLearnMethod": null,
 | 
			
		||||
                    "pagpPartnerIfIndex": null,
 | 
			
		||||
                    "pagpPartnerGroupIfIndex": null,
 | 
			
		||||
                    "pagpPartnerDeviceName": null,
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": null,
 | 
			
		||||
                    "ifInUcastPkts_prev": null,
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": null,
 | 
			
		||||
                    "ifOutUcastPkts_prev": null,
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
                    "ifInErrors": null,
 | 
			
		||||
                    "ifInErrors_prev": null,
 | 
			
		||||
                    "ifInErrors_delta": null,
 | 
			
		||||
                    "ifInErrors_rate": null,
 | 
			
		||||
                    "ifOutErrors": null,
 | 
			
		||||
                    "ifOutErrors_prev": null,
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": null,
 | 
			
		||||
                    "ifInOctets_prev": null,
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": null,
 | 
			
		||||
                    "ifOutOctets_prev": null,
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": null,
 | 
			
		||||
                    "ifInNUcastPkts_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": null,
 | 
			
		||||
                    "ifOutNUcastPkts_prev": null,
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
                    "ifInDiscards": null,
 | 
			
		||||
                    "ifInDiscards_prev": null,
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
                    "ifOutDiscards": null,
 | 
			
		||||
                    "ifOutDiscards_prev": null,
 | 
			
		||||
                    "ifOutDiscards_delta": null,
 | 
			
		||||
                    "ifOutDiscards_rate": null,
 | 
			
		||||
                    "ifInUnknownProtos": null,
 | 
			
		||||
                    "ifInUnknownProtos_prev": null,
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": null,
 | 
			
		||||
                    "ifInBroadcastPkts_prev": null,
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifInMulticastPkts": null,
 | 
			
		||||
                    "ifInMulticastPkts_prev": null,
 | 
			
		||||
                    "ifInMulticastPkts_delta": null,
 | 
			
		||||
                    "ifInMulticastPkts_rate": null,
 | 
			
		||||
                    "ifOutMulticastPkts": null,
 | 
			
		||||
                    "ifOutMulticastPkts_prev": null,
 | 
			
		||||
                    "ifOutMulticastPkts_delta": null,
 | 
			
		||||
                    "ifOutMulticastPkts_rate": null
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "port_descr_type": null,
 | 
			
		||||
                    "port_descr_descr": null,
 | 
			
		||||
                    "port_descr_circuit": null,
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549",
 | 
			
		||||
                    "ifName": "conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": 8,
 | 
			
		||||
                    "ifSpeed": null,
 | 
			
		||||
                    "ifSpeed_prev": null,
 | 
			
		||||
                    "ifConnectorPresent": null,
 | 
			
		||||
                    "ifPromiscuousMode": null,
 | 
			
		||||
                    "ifHighSpeed": null,
 | 
			
		||||
                    "ifHighSpeed_prev": null,
 | 
			
		||||
                    "ifOperStatus": "up",
 | 
			
		||||
                    "ifOperStatus_prev": null,
 | 
			
		||||
                    "ifAdminStatus": null,
 | 
			
		||||
                    "ifAdminStatus_prev": null,
 | 
			
		||||
                    "ifDuplex": null,
 | 
			
		||||
                    "ifMtu": null,
 | 
			
		||||
                    "ifType": "other",
 | 
			
		||||
                    "ifAlias": "conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549",
 | 
			
		||||
                    "ifPhysAddress": null,
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": 0,
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
                    "counter_out": null,
 | 
			
		||||
                    "ignore": 0,
 | 
			
		||||
                    "disabled": 0,
 | 
			
		||||
                    "detailed": 0,
 | 
			
		||||
                    "deleted": 0,
 | 
			
		||||
                    "pagpOperationMode": null,
 | 
			
		||||
                    "pagpPortState": null,
 | 
			
		||||
                    "pagpPartnerDeviceId": null,
 | 
			
		||||
                    "pagpPartnerLearnMethod": null,
 | 
			
		||||
                    "pagpPartnerIfIndex": null,
 | 
			
		||||
                    "pagpPartnerGroupIfIndex": null,
 | 
			
		||||
                    "pagpPartnerDeviceName": null,
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": null,
 | 
			
		||||
                    "ifInUcastPkts_prev": null,
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": null,
 | 
			
		||||
                    "ifOutUcastPkts_prev": null,
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
                    "ifInErrors": null,
 | 
			
		||||
                    "ifInErrors_prev": null,
 | 
			
		||||
                    "ifInErrors_delta": null,
 | 
			
		||||
                    "ifInErrors_rate": null,
 | 
			
		||||
                    "ifOutErrors": null,
 | 
			
		||||
                    "ifOutErrors_prev": null,
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": null,
 | 
			
		||||
                    "ifInOctets_prev": null,
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": null,
 | 
			
		||||
                    "ifOutOctets_prev": null,
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": null,
 | 
			
		||||
                    "ifInNUcastPkts_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": null,
 | 
			
		||||
                    "ifOutNUcastPkts_prev": null,
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
                    "ifInDiscards": null,
 | 
			
		||||
                    "ifInDiscards_prev": null,
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
                    "ifOutDiscards": null,
 | 
			
		||||
                    "ifOutDiscards_prev": null,
 | 
			
		||||
                    "ifOutDiscards_delta": null,
 | 
			
		||||
                    "ifOutDiscards_rate": null,
 | 
			
		||||
                    "ifInUnknownProtos": null,
 | 
			
		||||
                    "ifInUnknownProtos_prev": null,
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": null,
 | 
			
		||||
                    "ifInBroadcastPkts_prev": null,
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifInMulticastPkts": null,
 | 
			
		||||
                    "ifInMulticastPkts_prev": null,
 | 
			
		||||
                    "ifInMulticastPkts_delta": null,
 | 
			
		||||
                    "ifInMulticastPkts_rate": null,
 | 
			
		||||
                    "ifOutMulticastPkts": null,
 | 
			
		||||
                    "ifOutMulticastPkts_prev": null,
 | 
			
		||||
                    "ifOutMulticastPkts_delta": null,
 | 
			
		||||
                    "ifOutMulticastPkts_rate": null
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "poller": {
 | 
			
		||||
            "ports": [
 | 
			
		||||
                {
 | 
			
		||||
                    "port_descr_type": null,
 | 
			
		||||
                    "port_descr_descr": null,
 | 
			
		||||
                    "port_descr_circuit": null,
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "WAN",
 | 
			
		||||
                    "ifName": "WAN",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": 1,
 | 
			
		||||
                    "ifSpeed": 10000000000,
 | 
			
		||||
                    "ifSpeed_prev": null,
 | 
			
		||||
                    "ifConnectorPresent": "true",
 | 
			
		||||
                    "ifPromiscuousMode": "false",
 | 
			
		||||
                    "ifHighSpeed": 10000,
 | 
			
		||||
                    "ifHighSpeed_prev": null,
 | 
			
		||||
                    "ifOperStatus": "up",
 | 
			
		||||
                    "ifOperStatus_prev": "up",
 | 
			
		||||
                    "ifAdminStatus": "up",
 | 
			
		||||
                    "ifAdminStatus_prev": null,
 | 
			
		||||
                    "ifDuplex": null,
 | 
			
		||||
                    "ifMtu": 1500,
 | 
			
		||||
                    "ifType": "ethernetCsmacd",
 | 
			
		||||
                    "ifAlias": "WAN",
 | 
			
		||||
                    "ifPhysAddress": "005056048e60",
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": 0,
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
                    "counter_out": null,
 | 
			
		||||
                    "ignore": 0,
 | 
			
		||||
                    "disabled": 0,
 | 
			
		||||
                    "detailed": 0,
 | 
			
		||||
                    "deleted": 0,
 | 
			
		||||
                    "pagpOperationMode": null,
 | 
			
		||||
                    "pagpPortState": null,
 | 
			
		||||
                    "pagpPartnerDeviceId": null,
 | 
			
		||||
                    "pagpPartnerLearnMethod": null,
 | 
			
		||||
                    "pagpPartnerIfIndex": null,
 | 
			
		||||
                    "pagpPartnerGroupIfIndex": null,
 | 
			
		||||
                    "pagpPartnerDeviceName": null,
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": 155924463,
 | 
			
		||||
                    "ifInUcastPkts_prev": 0,
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": 122790056,
 | 
			
		||||
                    "ifOutUcastPkts_prev": 0,
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
                    "ifInErrors": 0,
 | 
			
		||||
                    "ifInErrors_prev": 0,
 | 
			
		||||
                    "ifInErrors_delta": null,
 | 
			
		||||
                    "ifInErrors_rate": null,
 | 
			
		||||
                    "ifOutErrors": 0,
 | 
			
		||||
                    "ifOutErrors_prev": 0,
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": 183536031742,
 | 
			
		||||
                    "ifInOctets_prev": 0,
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": 18033183717,
 | 
			
		||||
                    "ifOutOctets_prev": 0,
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": 0,
 | 
			
		||||
                    "ifInNUcastPkts_prev": 0,
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": 0,
 | 
			
		||||
                    "ifOutNUcastPkts_prev": 0,
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
                    "ifInDiscards": 0,
 | 
			
		||||
                    "ifInDiscards_prev": 0,
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
                    "ifOutDiscards": 0,
 | 
			
		||||
                    "ifOutDiscards_prev": 0,
 | 
			
		||||
                    "ifOutDiscards_delta": null,
 | 
			
		||||
                    "ifOutDiscards_rate": null,
 | 
			
		||||
                    "ifInUnknownProtos": 0,
 | 
			
		||||
                    "ifInUnknownProtos_prev": 0,
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": 0,
 | 
			
		||||
                    "ifInBroadcastPkts_prev": 0,
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": 0,
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": 0,
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifInMulticastPkts": 0,
 | 
			
		||||
                    "ifInMulticastPkts_prev": 0,
 | 
			
		||||
                    "ifInMulticastPkts_delta": null,
 | 
			
		||||
                    "ifInMulticastPkts_rate": null,
 | 
			
		||||
                    "ifOutMulticastPkts": 0,
 | 
			
		||||
                    "ifOutMulticastPkts_prev": 0,
 | 
			
		||||
                    "ifOutMulticastPkts_delta": null,
 | 
			
		||||
                    "ifOutMulticastPkts_rate": null
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "port_descr_type": null,
 | 
			
		||||
                    "port_descr_descr": null,
 | 
			
		||||
                    "port_descr_circuit": null,
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549",
 | 
			
		||||
                    "ifName": "conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": 8,
 | 
			
		||||
                    "ifSpeed": null,
 | 
			
		||||
                    "ifSpeed_prev": 0,
 | 
			
		||||
                    "ifConnectorPresent": "true",
 | 
			
		||||
                    "ifPromiscuousMode": "false",
 | 
			
		||||
                    "ifHighSpeed": 0,
 | 
			
		||||
                    "ifHighSpeed_prev": null,
 | 
			
		||||
                    "ifOperStatus": "up",
 | 
			
		||||
                    "ifOperStatus_prev": "up",
 | 
			
		||||
                    "ifAdminStatus": "up",
 | 
			
		||||
                    "ifAdminStatus_prev": null,
 | 
			
		||||
                    "ifDuplex": null,
 | 
			
		||||
                    "ifMtu": 9000,
 | 
			
		||||
                    "ifType": "other",
 | 
			
		||||
                    "ifAlias": "conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549",
 | 
			
		||||
                    "ifPhysAddress": "05c01fe90000",
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": 6700653,
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
                    "counter_out": null,
 | 
			
		||||
                    "ignore": 0,
 | 
			
		||||
                    "disabled": 0,
 | 
			
		||||
                    "detailed": 0,
 | 
			
		||||
                    "deleted": 0,
 | 
			
		||||
                    "pagpOperationMode": null,
 | 
			
		||||
                    "pagpPortState": null,
 | 
			
		||||
                    "pagpPartnerDeviceId": null,
 | 
			
		||||
                    "pagpPartnerLearnMethod": null,
 | 
			
		||||
                    "pagpPartnerIfIndex": null,
 | 
			
		||||
                    "pagpPartnerGroupIfIndex": null,
 | 
			
		||||
                    "pagpPartnerDeviceName": null,
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": 155835684,
 | 
			
		||||
                    "ifInUcastPkts_prev": 0,
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": 122490053,
 | 
			
		||||
                    "ifOutUcastPkts_prev": 0,
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
                    "ifInErrors": 0,
 | 
			
		||||
                    "ifInErrors_prev": 0,
 | 
			
		||||
                    "ifInErrors_delta": null,
 | 
			
		||||
                    "ifInErrors_rate": null,
 | 
			
		||||
                    "ifOutErrors": 0,
 | 
			
		||||
                    "ifOutErrors_prev": 0,
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": 170322130693,
 | 
			
		||||
                    "ifInOctets_prev": 0,
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": 12853245140,
 | 
			
		||||
                    "ifOutOctets_prev": 0,
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": 0,
 | 
			
		||||
                    "ifInNUcastPkts_prev": 0,
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": 0,
 | 
			
		||||
                    "ifOutNUcastPkts_prev": 0,
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
                    "ifInDiscards": 0,
 | 
			
		||||
                    "ifInDiscards_prev": 0,
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
                    "ifOutDiscards": 0,
 | 
			
		||||
                    "ifOutDiscards_prev": 0,
 | 
			
		||||
                    "ifOutDiscards_delta": null,
 | 
			
		||||
                    "ifOutDiscards_rate": null,
 | 
			
		||||
                    "ifInUnknownProtos": 0,
 | 
			
		||||
                    "ifInUnknownProtos_prev": 0,
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": 0,
 | 
			
		||||
                    "ifInBroadcastPkts_prev": 0,
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": 0,
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": 0,
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifInMulticastPkts": 0,
 | 
			
		||||
                    "ifInMulticastPkts_prev": 0,
 | 
			
		||||
                    "ifInMulticastPkts_delta": null,
 | 
			
		||||
                    "ifInMulticastPkts_rate": null,
 | 
			
		||||
                    "ifOutMulticastPkts": 0,
 | 
			
		||||
                    "ifOutMulticastPkts_prev": 0,
 | 
			
		||||
                    "ifOutMulticastPkts_delta": null,
 | 
			
		||||
                    "ifOutMulticastPkts_rate": null
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    "processors": {
 | 
			
		||||
        "discovery": {
 | 
			
		||||
            "processors": [
 | 
			
		||||
                {
 | 
			
		||||
                    "entPhysicalIndex": 0,
 | 
			
		||||
                    "hrDeviceIndex": 0,
 | 
			
		||||
                    "processor_oid": ".1.3.6.1.4.1.2021.11.11.0",
 | 
			
		||||
                    "processor_index": "0",
 | 
			
		||||
                    "processor_type": "ucd-old",
 | 
			
		||||
                    "processor_usage": 3,
 | 
			
		||||
                    "processor_descr": "CPU",
 | 
			
		||||
                    "processor_precision": -1,
 | 
			
		||||
                    "processor_perc_warn": 75
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "poller": "matches discovery"
 | 
			
		||||
    },
 | 
			
		||||
    "mempools": {
 | 
			
		||||
        "discovery": {
 | 
			
		||||
            "mempools": [
 | 
			
		||||
                {
 | 
			
		||||
                    "mempool_index": "1",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "hrDeviceIndex": null,
 | 
			
		||||
                    "mempool_type": "hrstorage",
 | 
			
		||||
                    "mempool_precision": 1024,
 | 
			
		||||
                    "mempool_descr": "Physical memory",
 | 
			
		||||
                    "mempool_perc": 0,
 | 
			
		||||
                    "mempool_used": 0,
 | 
			
		||||
                    "mempool_free": 0,
 | 
			
		||||
                    "mempool_total": 0,
 | 
			
		||||
                    "mempool_largestfree": null,
 | 
			
		||||
                    "mempool_lowestfree": null,
 | 
			
		||||
                    "mempool_deleted": 0,
 | 
			
		||||
                    "mempool_perc_warn": 90
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "mempool_index": "3",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "hrDeviceIndex": null,
 | 
			
		||||
                    "mempool_type": "hrstorage",
 | 
			
		||||
                    "mempool_precision": 1024,
 | 
			
		||||
                    "mempool_descr": "Virtual memory",
 | 
			
		||||
                    "mempool_perc": 0,
 | 
			
		||||
                    "mempool_used": 0,
 | 
			
		||||
                    "mempool_free": 0,
 | 
			
		||||
                    "mempool_total": 0,
 | 
			
		||||
                    "mempool_largestfree": null,
 | 
			
		||||
                    "mempool_lowestfree": null,
 | 
			
		||||
                    "mempool_deleted": 0,
 | 
			
		||||
                    "mempool_perc_warn": 90
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "mempool_index": "10",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "hrDeviceIndex": null,
 | 
			
		||||
                    "mempool_type": "hrstorage",
 | 
			
		||||
                    "mempool_precision": 1024,
 | 
			
		||||
                    "mempool_descr": "Swap space",
 | 
			
		||||
                    "mempool_perc": 0,
 | 
			
		||||
                    "mempool_used": 0,
 | 
			
		||||
                    "mempool_free": 0,
 | 
			
		||||
                    "mempool_total": 0,
 | 
			
		||||
                    "mempool_largestfree": null,
 | 
			
		||||
                    "mempool_lowestfree": null,
 | 
			
		||||
                    "mempool_deleted": 0,
 | 
			
		||||
                    "mempool_perc_warn": 90
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "poller": {
 | 
			
		||||
            "mempools": [
 | 
			
		||||
                {
 | 
			
		||||
                    "mempool_index": "1",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "hrDeviceIndex": null,
 | 
			
		||||
                    "mempool_type": "hrstorage",
 | 
			
		||||
                    "mempool_precision": 1024,
 | 
			
		||||
                    "mempool_descr": "Physical memory",
 | 
			
		||||
                    "mempool_perc": 17,
 | 
			
		||||
                    "mempool_used": 170430464,
 | 
			
		||||
                    "mempool_free": 841617408,
 | 
			
		||||
                    "mempool_total": 1012047872,
 | 
			
		||||
                    "mempool_largestfree": null,
 | 
			
		||||
                    "mempool_lowestfree": null,
 | 
			
		||||
                    "mempool_deleted": 0,
 | 
			
		||||
                    "mempool_perc_warn": 90
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "mempool_index": "3",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "hrDeviceIndex": null,
 | 
			
		||||
                    "mempool_type": "hrstorage",
 | 
			
		||||
                    "mempool_precision": 1024,
 | 
			
		||||
                    "mempool_descr": "Virtual memory",
 | 
			
		||||
                    "mempool_perc": 17,
 | 
			
		||||
                    "mempool_used": 170430464,
 | 
			
		||||
                    "mempool_free": 841617408,
 | 
			
		||||
                    "mempool_total": 1012047872,
 | 
			
		||||
                    "mempool_largestfree": null,
 | 
			
		||||
                    "mempool_lowestfree": null,
 | 
			
		||||
                    "mempool_deleted": 0,
 | 
			
		||||
                    "mempool_perc_warn": 90
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "mempool_index": "10",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "hrDeviceIndex": null,
 | 
			
		||||
                    "mempool_type": "hrstorage",
 | 
			
		||||
                    "mempool_precision": 1024,
 | 
			
		||||
                    "mempool_descr": "Swap space",
 | 
			
		||||
                    "mempool_perc": 0,
 | 
			
		||||
                    "mempool_used": 0,
 | 
			
		||||
                    "mempool_free": 0,
 | 
			
		||||
                    "mempool_total": 0,
 | 
			
		||||
                    "mempool_largestfree": null,
 | 
			
		||||
                    "mempool_lowestfree": null,
 | 
			
		||||
                    "mempool_deleted": 0,
 | 
			
		||||
                    "mempool_perc_warn": 90
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    "sensors": {
 | 
			
		||||
        "discovery": {
 | 
			
		||||
            "sensors": [
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": 0,
 | 
			
		||||
                    "sensor_class": "state",
 | 
			
		||||
                    "poller_type": "snmp",
 | 
			
		||||
                    "sensor_oid": ".1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.1.0",
 | 
			
		||||
                    "sensor_index": "pepVpnStatusConnectionState.1.0",
 | 
			
		||||
                    "sensor_type": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "sensor_descr": "conn_to_ae-dxb-pw01",
 | 
			
		||||
                    "group": "VPN",
 | 
			
		||||
                    "sensor_divisor": 1,
 | 
			
		||||
                    "sensor_multiplier": 1,
 | 
			
		||||
                    "sensor_current": 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_prev": null,
 | 
			
		||||
                    "user_func": null,
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": 0,
 | 
			
		||||
                    "sensor_class": "state",
 | 
			
		||||
                    "poller_type": "snmp",
 | 
			
		||||
                    "sensor_oid": ".1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.2.1",
 | 
			
		||||
                    "sensor_index": "pepVpnStatusConnectionState.2.1",
 | 
			
		||||
                    "sensor_type": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "sensor_descr": "conn_to_de-77Y-pw01",
 | 
			
		||||
                    "group": "VPN",
 | 
			
		||||
                    "sensor_divisor": 1,
 | 
			
		||||
                    "sensor_multiplier": 1,
 | 
			
		||||
                    "sensor_current": 4,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
                    "sensor_limit_low_warn": null,
 | 
			
		||||
                    "sensor_alert": 1,
 | 
			
		||||
                    "sensor_custom": "No",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "entPhysicalIndex_measured": null,
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "user_func": null,
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": 0,
 | 
			
		||||
                    "sensor_class": "state",
 | 
			
		||||
                    "poller_type": "snmp",
 | 
			
		||||
                    "sensor_oid": ".1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.3.0",
 | 
			
		||||
                    "sensor_index": "pepVpnStatusConnectionState.3.0",
 | 
			
		||||
                    "sensor_type": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "sensor_descr": "conn_to_bako-pw03",
 | 
			
		||||
                    "group": "VPN",
 | 
			
		||||
                    "sensor_divisor": 1,
 | 
			
		||||
                    "sensor_multiplier": 1,
 | 
			
		||||
                    "sensor_current": 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_prev": null,
 | 
			
		||||
                    "user_func": null,
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": 0,
 | 
			
		||||
                    "sensor_class": "state",
 | 
			
		||||
                    "poller_type": "snmp",
 | 
			
		||||
                    "sensor_oid": ".1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.4.0",
 | 
			
		||||
                    "sensor_index": "pepVpnStatusConnectionState.4.0",
 | 
			
		||||
                    "sensor_type": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "sensor_descr": "conn_to_bako-pw02",
 | 
			
		||||
                    "group": "VPN",
 | 
			
		||||
                    "sensor_divisor": 1,
 | 
			
		||||
                    "sensor_multiplier": 1,
 | 
			
		||||
                    "sensor_current": 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_prev": null,
 | 
			
		||||
                    "user_func": null,
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": 0,
 | 
			
		||||
                    "sensor_class": "state",
 | 
			
		||||
                    "poller_type": "snmp",
 | 
			
		||||
                    "sensor_oid": ".1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.5.0",
 | 
			
		||||
                    "sensor_index": "pepVpnStatusConnectionState.5.0",
 | 
			
		||||
                    "sensor_type": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "sensor_descr": "conn_to_bako-pw01",
 | 
			
		||||
                    "group": "VPN",
 | 
			
		||||
                    "sensor_divisor": 1,
 | 
			
		||||
                    "sensor_multiplier": 1,
 | 
			
		||||
                    "sensor_current": 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_prev": null,
 | 
			
		||||
                    "user_func": null,
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState"
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
            "state_indexes": [
 | 
			
		||||
                {
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "state_descr": "start",
 | 
			
		||||
                    "state_draw_graph": 1,
 | 
			
		||||
                    "state_value": 0,
 | 
			
		||||
                    "state_generic_value": 3
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "state_descr": "authen",
 | 
			
		||||
                    "state_draw_graph": 1,
 | 
			
		||||
                    "state_value": 1,
 | 
			
		||||
                    "state_generic_value": 3
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "state_descr": "tunnel",
 | 
			
		||||
                    "state_draw_graph": 1,
 | 
			
		||||
                    "state_value": 2,
 | 
			
		||||
                    "state_generic_value": 3
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "state_descr": "route",
 | 
			
		||||
                    "state_draw_graph": 1,
 | 
			
		||||
                    "state_value": 3,
 | 
			
		||||
                    "state_generic_value": 3
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "state_name": "pepVpnStatusConnectionState",
 | 
			
		||||
                    "state_descr": "connected",
 | 
			
		||||
                    "state_draw_graph": 1,
 | 
			
		||||
                    "state_value": 4,
 | 
			
		||||
                    "state_generic_value": 0
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "poller": "matches discovery"
 | 
			
		||||
    },
 | 
			
		||||
    "storage": {
 | 
			
		||||
        "discovery": {
 | 
			
		||||
            "storage": [
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "31",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/",
 | 
			
		||||
                    "storage_size": 91879424,
 | 
			
		||||
                    "storage_units": 1024,
 | 
			
		||||
                    "storage_used": 58976256,
 | 
			
		||||
                    "storage_free": 0,
 | 
			
		||||
                    "storage_perc": 0,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "36",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/tmp",
 | 
			
		||||
                    "storage_size": 288358400,
 | 
			
		||||
                    "storage_units": 4096,
 | 
			
		||||
                    "storage_used": 6467584,
 | 
			
		||||
                    "storage_free": 0,
 | 
			
		||||
                    "storage_perc": 0,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "37",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/tmp/var/log",
 | 
			
		||||
                    "storage_size": 115343360,
 | 
			
		||||
                    "storage_units": 4096,
 | 
			
		||||
                    "storage_used": 1069056,
 | 
			
		||||
                    "storage_free": 0,
 | 
			
		||||
                    "storage_perc": 0,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "38",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/tmp/session",
 | 
			
		||||
                    "storage_size": 1048576,
 | 
			
		||||
                    "storage_units": 4096,
 | 
			
		||||
                    "storage_used": 331776,
 | 
			
		||||
                    "storage_free": 0,
 | 
			
		||||
                    "storage_perc": 0,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "poller": {
 | 
			
		||||
            "storage": [
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "31",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/",
 | 
			
		||||
                    "storage_size": 91879424,
 | 
			
		||||
                    "storage_units": 1024,
 | 
			
		||||
                    "storage_used": 58976256,
 | 
			
		||||
                    "storage_free": 32903168,
 | 
			
		||||
                    "storage_perc": 64,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "36",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/tmp",
 | 
			
		||||
                    "storage_size": 288358400,
 | 
			
		||||
                    "storage_units": 4096,
 | 
			
		||||
                    "storage_used": 6467584,
 | 
			
		||||
                    "storage_free": 281890816,
 | 
			
		||||
                    "storage_perc": 2,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "37",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/tmp/var/log",
 | 
			
		||||
                    "storage_size": 115343360,
 | 
			
		||||
                    "storage_units": 4096,
 | 
			
		||||
                    "storage_used": 1069056,
 | 
			
		||||
                    "storage_free": 114274304,
 | 
			
		||||
                    "storage_perc": 1,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "storage_mib": "hrstorage",
 | 
			
		||||
                    "storage_index": "38",
 | 
			
		||||
                    "storage_type": "hrStorageFixedDisk",
 | 
			
		||||
                    "storage_descr": "/tmp/session",
 | 
			
		||||
                    "storage_size": 1048576,
 | 
			
		||||
                    "storage_units": 4096,
 | 
			
		||||
                    "storage_used": 331776,
 | 
			
		||||
                    "storage_free": 716800,
 | 
			
		||||
                    "storage_perc": 32,
 | 
			
		||||
                    "storage_perc_warn": 60,
 | 
			
		||||
                    "storage_deleted": 0
 | 
			
		||||
                }
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										4056
									
								
								tests/data/pepwave.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4056
									
								
								tests/data/pepwave.json
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										226
									
								
								tests/snmpsim/fusionhub.snmprec
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										226
									
								
								tests/snmpsim/fusionhub.snmprec
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,226 @@
 | 
			
		||||
1.3.6.1.2.1.1.1.0|4|Peplink FusionHub
 | 
			
		||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.23695
 | 
			
		||||
1.3.6.1.2.1.1.3.0|67|26380065
 | 
			
		||||
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|WAN
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.8|4|conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.1|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.8|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.1|2|1500
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.8|2|9000
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.1|4x|005056048E60
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.8|4x|05C01FE90000
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.1|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.8|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.8|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.1|67|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.8|67|6700653
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.8|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.8|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.8|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.8|65|0
 | 
			
		||||
1.3.6.1.2.1.5.1.0|65|27714
 | 
			
		||||
1.3.6.1.2.1.5.2.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.3.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.4.0|65|14
 | 
			
		||||
1.3.6.1.2.1.5.5.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.6.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.7.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.8.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.9.0|65|27700
 | 
			
		||||
1.3.6.1.2.1.5.10.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.11.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.12.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.13.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.15.0|65|31900
 | 
			
		||||
1.3.6.1.2.1.5.16.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.17.0|65|110
 | 
			
		||||
1.3.6.1.2.1.5.18.0|65|4090
 | 
			
		||||
1.3.6.1.2.1.5.19.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.20.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.21.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.22.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.23.0|65|27700
 | 
			
		||||
1.3.6.1.2.1.5.24.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.25.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.26.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.2.1|65|27714
 | 
			
		||||
1.3.6.1.2.1.5.29.1.2.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.3.1|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.3.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.4.1|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.4.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.5.1|65|31900
 | 
			
		||||
1.3.6.1.2.1.5.29.1.5.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.30.1.3.1.3|65|14
 | 
			
		||||
1.3.6.1.2.1.5.30.1.3.1.8|65|27700
 | 
			
		||||
1.3.6.1.2.1.5.30.1.4.1.0|65|27700
 | 
			
		||||
1.3.6.1.2.1.5.30.1.4.1.3|65|110
 | 
			
		||||
1.3.6.1.2.1.5.30.1.4.1.11|65|4090
 | 
			
		||||
1.3.6.1.2.1.6.5.0|65|10404
 | 
			
		||||
1.3.6.1.2.1.6.6.0|65|11106
 | 
			
		||||
1.3.6.1.2.1.6.7.0|65|83
 | 
			
		||||
1.3.6.1.2.1.6.8.0|65|268
 | 
			
		||||
1.3.6.1.2.1.6.9.0|66|0
 | 
			
		||||
1.3.6.1.2.1.6.10.0|65|114886
 | 
			
		||||
1.3.6.1.2.1.6.11.0|65|119253
 | 
			
		||||
1.3.6.1.2.1.6.12.0|65|143
 | 
			
		||||
1.3.6.1.2.1.6.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.6.15.0|65|325
 | 
			
		||||
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.44444.1.4.127.0.0.1.39078|2|11
 | 
			
		||||
1.3.6.1.2.1.7.1.0|65|86324
 | 
			
		||||
1.3.6.1.2.1.7.2.0|65|150
 | 
			
		||||
1.3.6.1.2.1.7.3.0|65|0
 | 
			
		||||
1.3.6.1.2.1.7.4.0|65|90648
 | 
			
		||||
1.3.6.1.2.1.11.1.0|65|70841
 | 
			
		||||
1.3.6.1.2.1.11.2.0|65|43692
 | 
			
		||||
1.3.6.1.2.1.11.3.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.4.0|65|29
 | 
			
		||||
1.3.6.1.2.1.11.5.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.6.0|65|2
 | 
			
		||||
1.3.6.1.2.1.11.8.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.9.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.10.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.11.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.12.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.13.0|65|344927
 | 
			
		||||
1.3.6.1.2.1.11.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.15.0|65|10049
 | 
			
		||||
1.3.6.1.2.1.11.16.0|65|3664
 | 
			
		||||
1.3.6.1.2.1.11.17.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.18.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.19.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.20.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.21.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.22.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.24.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.25.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.26.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.27.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.28.0|65|43694
 | 
			
		||||
1.3.6.1.2.1.11.29.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.30.0|2|2
 | 
			
		||||
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.25.1.1.0|67|26385733
 | 
			
		||||
1.3.6.1.2.1.25.1.5.0|66|0
 | 
			
		||||
1.3.6.1.2.1.25.2.2.0|2|988328
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.1|2|1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.3|2|3
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.6|2|6
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.7|2|7
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.8|2|8
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.10|2|10
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.31|2|31
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.36|2|36
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.37|2|37
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.38|2|38
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.36|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.38|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.31|4|/
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.36|4|/tmp
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.37|4|/tmp/var/log
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.38|4|/tmp/session
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.8|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.31|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.36|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.37|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.38|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.1|2|988328
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.3|2|988328
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.6|2|988328
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.7|2|25668
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.8|2|7688
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.10|2|0
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.31|2|89726
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.36|2|70400
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.37|2|28160
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.38|2|256
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.1|2|166436
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.3|2|166436
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.6|2|1020
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.7|2|25668
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.8|2|7688
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.10|2|0
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.31|2|57594
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.36|2|1579
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.37|2|261
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.38|2|81
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.1|4|WAN
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.8|4|conn_to_de-77Y-pw01 - MAX_HD4_7549-2935-3BAB-7549
 | 
			
		||||
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.8|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.8|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.8|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.8|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.1|70|183536031742
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.8|70|170322130693
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.1|70|155924463
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.8|70|155835684
 | 
			
		||||
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.8|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.1|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.8|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.1|70|18033183717
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.8|70|12853245140
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.1|70|122790056
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.8|70|122490053
 | 
			
		||||
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.8|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.1|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.8|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.1|66|10000
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.8|66|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.1|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.8|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.1|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.8|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.1|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.8|4|
 | 
			
		||||
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.8|67|0
 | 
			
		||||
1.3.6.1.4.1.2021.11.11.0|2|97
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.1.1.0|4|Peplink FusionHub
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.1.2.0|4|1113-8637-D091
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.1.3.0|4|8.0.0 build 1595
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.2.1.0|4|conn_to_ae-dxb-pw01
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.2.2.1|4|conn_to_de-77Y-pw01
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.2.3.0|4|conn_to_bako-pw03
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.2.4.0|4|conn_to_bako-pw02
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.2.5.0|4|conn_to_bako-pw01
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.1.0|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.2.1|2|4
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.3.0|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.4.0|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.5.0|2|0
 | 
			
		||||
1.3.6.1.6.3.10.2.1.3.0|2|263801
 | 
			
		||||
							
								
								
									
										502
									
								
								tests/snmpsim/pepwave.snmprec
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										502
									
								
								tests/snmpsim/pepwave.snmprec
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,502 @@
 | 
			
		||||
1.3.6.1.2.1.1.1.0|4|Pepwave MAX HD4
 | 
			
		||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.27662
 | 
			
		||||
1.3.6.1.2.1.1.3.0|67|34928466
 | 
			
		||||
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|LAN
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.2|4|WAN 1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.3|4|WAN 2
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.4|4|Cellular 1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.5|4|Cellular 2
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.6|4|Cellular 3
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.7|4|Cellular 4
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.12|4|conn_to_MUC-FH01 - FSH-Warp
 | 
			
		||||
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.3.3|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.4|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.5|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.6|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.7|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.12|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.1|2|1500
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.2|2|1440
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.3|2|1440
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.4|2|1428
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.5|2|1428
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.6|2|1428
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.7|2|1500
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.12|2|9000
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.1|4x|001ADD503960
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.2|4x|001ADD503961
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.3|4x|001ADD503962
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.4|4x|AEF4039F2608
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.5|4x|AEF4039F2608
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.6|4x|AEF4039F2608
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.7|4x|AEF4039F2608
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.12|4x|05C01FEA0000
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.1|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.2|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.3|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.4|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.5|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.6|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.7|2|2
 | 
			
		||||
1.3.6.1.2.1.2.2.1.7.12|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|2
 | 
			
		||||
1.3.6.1.2.1.2.2.1.8.3|2|2
 | 
			
		||||
1.3.6.1.2.1.2.2.1.8.4|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.8.5|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.8.6|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.8.7|2|2
 | 
			
		||||
1.3.6.1.2.1.2.2.1.8.12|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.1|67|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.2|67|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.3|67|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.4|67|29089545
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.5|67|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.6|67|5336770
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.7|67|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.12|67|304253
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.1|65|13643
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.2|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.3|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.4|65|5
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.5|65|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.6|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.7|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.12|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.2|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.3|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.4|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.5|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.6|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.7|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.12|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.2|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.3|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.4|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.5|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.6|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.7|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.12|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.2|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.3|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.4|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.5|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.6|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.7|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.12|65|0
 | 
			
		||||
1.3.6.1.2.1.5.1.0|65|176183
 | 
			
		||||
1.3.6.1.2.1.5.2.0|65|91079
 | 
			
		||||
1.3.6.1.2.1.5.3.0|65|4
 | 
			
		||||
1.3.6.1.2.1.5.4.0|65|91079
 | 
			
		||||
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|35582
 | 
			
		||||
1.3.6.1.2.1.5.9.0|65|49517
 | 
			
		||||
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|85157
 | 
			
		||||
1.3.6.1.2.1.5.15.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.16.0|65|37
 | 
			
		||||
1.3.6.1.2.1.5.17.0|65|9
 | 
			
		||||
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|49529
 | 
			
		||||
1.3.6.1.2.1.5.22.0|65|35582
 | 
			
		||||
1.3.6.1.2.1.5.23.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.24.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.25.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.26.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.2.1|65|176182
 | 
			
		||||
1.3.6.1.2.1.5.29.1.2.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.3.1|65|91079
 | 
			
		||||
1.3.6.1.2.1.5.29.1.3.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.4.1|65|85157
 | 
			
		||||
1.3.6.1.2.1.5.29.1.4.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.5.1|65|0
 | 
			
		||||
1.3.6.1.2.1.5.29.1.5.2|65|0
 | 
			
		||||
1.3.6.1.2.1.5.30.1.3.1.0|65|49517
 | 
			
		||||
1.3.6.1.2.1.5.30.1.3.1.3|65|4
 | 
			
		||||
1.3.6.1.2.1.5.30.1.3.1.8|65|35582
 | 
			
		||||
1.3.6.1.2.1.5.30.1.3.1.11|65|91079
 | 
			
		||||
1.3.6.1.2.1.5.30.1.4.1.0|65|35582
 | 
			
		||||
1.3.6.1.2.1.5.30.1.4.1.3|65|37
 | 
			
		||||
1.3.6.1.2.1.5.30.1.4.1.8|65|49529
 | 
			
		||||
1.3.6.1.2.1.5.30.1.4.1.11|65|9
 | 
			
		||||
1.3.6.1.2.1.6.5.0|65|17696
 | 
			
		||||
1.3.6.1.2.1.6.6.0|65|33327
 | 
			
		||||
1.3.6.1.2.1.6.7.0|65|104
 | 
			
		||||
1.3.6.1.2.1.6.8.0|65|30
 | 
			
		||||
1.3.6.1.2.1.6.9.0|66|0
 | 
			
		||||
1.3.6.1.2.1.6.10.0|65|322983
 | 
			
		||||
1.3.6.1.2.1.6.11.0|65|317593
 | 
			
		||||
1.3.6.1.2.1.6.12.0|65|352
 | 
			
		||||
1.3.6.1.2.1.6.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.6.15.0|65|98
 | 
			
		||||
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.44444.1.4.127.0.0.1.44910|2|11
 | 
			
		||||
1.3.6.1.2.1.7.1.0|65|702955
 | 
			
		||||
1.3.6.1.2.1.7.2.0|65|23
 | 
			
		||||
1.3.6.1.2.1.7.3.0|65|0
 | 
			
		||||
1.3.6.1.2.1.7.4.0|65|720003
 | 
			
		||||
1.3.6.1.2.1.11.1.0|65|125585
 | 
			
		||||
1.3.6.1.2.1.11.2.0|65|82514
 | 
			
		||||
1.3.6.1.2.1.11.3.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.4.0|65|35
 | 
			
		||||
1.3.6.1.2.1.11.5.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.6.0|65|3
 | 
			
		||||
1.3.6.1.2.1.11.8.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.9.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.10.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.11.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.12.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.13.0|65|660367
 | 
			
		||||
1.3.6.1.2.1.11.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.15.0|65|19506
 | 
			
		||||
1.3.6.1.2.1.11.16.0|65|5493
 | 
			
		||||
1.3.6.1.2.1.11.17.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.18.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.19.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.20.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.21.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.22.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.24.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.25.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.26.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.27.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.28.0|65|82516
 | 
			
		||||
1.3.6.1.2.1.11.29.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.30.0|2|2
 | 
			
		||||
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.25.1.1.0|67|41658683
 | 
			
		||||
1.3.6.1.2.1.25.1.5.0|66|0
 | 
			
		||||
1.3.6.1.2.1.25.2.2.0|2|2073488
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.1|2|1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.3|2|3
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.6|2|6
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.7|2|7
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.8|2|8
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.10|2|10
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.31|2|31
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.37|2|37
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.38|2|38
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.39|2|39
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.40|2|40
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.41|2|41
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.1.42|2|42
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.38|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.39|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.40|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.41|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.2.42|6|1.3.6.1.2.1.25.2.1.4
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.31|4|/
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.37|4|/tmp
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.38|4|/tmp/var/log
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.39|4|/tmp/session
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.40|4|/tmp/etc/blacklists_bin
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.41|4|/usr/local/manga/conf
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.3.42|4|/tmp/session_ctrl
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.8|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.31|2|1024
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.37|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.38|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.39|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.40|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.41|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.4.42|2|4096
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.1|2|2073488
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.3|2|2073488
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.6|2|2073488
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.7|2|32568
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.8|2|11240
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.10|2|0
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.31|2|130431
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.37|2|15360
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.38|2|2048
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.39|2|256
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.40|2|259186
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.41|2|15360
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.5.42|2|1280
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.1|2|249532
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.3|2|249532
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.6|2|900
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.7|2|32568
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.8|2|11240
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.10|2|0
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.31|2|118862
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.37|2|2399
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.38|2|329
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.39|2|80
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.40|2|0
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.41|2|2399
 | 
			
		||||
1.3.6.1.2.1.25.2.3.1.6.42|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.1|4|LAN
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.2|4|WAN 1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.3|4|WAN 2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.4|4|Cellular 1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.5|4|Cellular 2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.6|4|Cellular 3
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.7|4|Cellular 4
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.12|4|conn_to_MUC-FH01 - FSH-Warp
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.1|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.2|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.3|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.4|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.5|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.6|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.7|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.2.12|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.1|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.2|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.3|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.4|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.5|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.6|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.7|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.3.12|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.1|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.2|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.3|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.4|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.5|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.6|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.7|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.12|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.1|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.2|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.3|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.4|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.5|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.6|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.7|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.5.12|65|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.1|70|202738337698
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.4|70|9817404816
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.5|70|5769202403
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.6|70|4313991461
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.12|70|8656912188
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.1|70|153832845
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.4|70|72393418
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.5|70|44425607
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.6|70|33306972
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.12|70|155253688
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.1|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.4|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.5|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.6|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.8.12|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.1|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.4|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.5|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.6|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.12|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.1|70|9195496407
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.4|70|42901791574
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.5|70|143937606716
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.6|70|21853853274
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.12|70|207334218676
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.1|70|111481716
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.4|70|45564136
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.5|70|117151517
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.6|70|26206722
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.12|70|191834003
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.1|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.4|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.5|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.6|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.12.12|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.1|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.2|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.3|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.4|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.5|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.6|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.7|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.12|70|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.1|66|1000
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.2|66|10
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.3|66|10
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.4|66|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.5|66|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.6|66|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.7|66|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.12|66|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.1|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.2|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.3|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.4|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.5|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.6|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.7|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.12|2|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.1|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.2|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.3|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.4|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.5|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.6|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.7|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.12|2|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.1|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.2|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.3|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.4|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.5|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.6|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.7|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.12|4|
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.1|67|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.2|67|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.3|67|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.4|67|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.5|67|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.6|67|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.7|67|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.19.12|67|0
 | 
			
		||||
1.3.6.1.4.1.2021.11.11.0|2|74
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.0|4|WAN 1
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.1|4|WAN 2
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.2|4|Cellular 1
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.3|4|Cellular 2
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.4|4|Cellular 3
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.5|4|Cellular 4
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.6|4|USB
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.7|4|Wi-Fi WAN
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.8|4|LAN 1 as WAN
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.9|4|LAN 2 as WAN
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.2.10|4|LAN 3 as WAN
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.0|2|2
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.1|2|2
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.2|2|3
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.3|2|3
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.4|2|3
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.5|2|2
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.6|2|2
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.7|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.8|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.9|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.3.10|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.0|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.1|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.2|2|-68
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.3|2|-58
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.4|2|-81
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.5|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.6|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.7|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.8|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.9|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.2.1.2.1.5.10|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.4.1.1.3.0|2|30
 | 
			
		||||
1.3.6.1.4.1.23695.4.1.1.4.0|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.4.1.1.5.0|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.4.1.1.6.0|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.4.1.1.8.0|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.1.1.0|4|Pepwave MAX HD4
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.1.2.0|4|2935-3BAB-7549
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.1.3.0|4|8.0.0s010 build 4198
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.1.1.2.0|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.1.1.3.0|2|16
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.3.1.2.0|4|DC Source A
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.3.1.2.1|4|DC Source B
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.3.1.2.2|4|DC Term- Block
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.3.1.3.0|2|1
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.3.1.3.1|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.3.1.3.2|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.1.1.4.4.1.0|66|51000
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.2.1.1|4|conn_to_MUC-FH01
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.10.1.1.2.1.3.1.1|2|4
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.3.0|2|-68
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.3.1|2|-58
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.3.2|2|-81
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.4.0|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.4.1|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.4.2|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.5.0|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.5.1|2|28
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.5.2|2|0
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.7.0|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.7.1|2|-85
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.7.2|2|-113
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.8.0|2|-9999
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.8.1|2|-9
 | 
			
		||||
1.3.6.1.4.1.23695.200.1.12.1.1.1.8.2|2|-13
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.0|2|2
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.1|2|2
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.2|2|3
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.3|2|3
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.4|2|3
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.5|2|2
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.6|2|2
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.7|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.8|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.9|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.3.10|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.5.2|2|-68
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.5.3|2|-58
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.5.4|2|-81
 | 
			
		||||
1.3.6.1.4.1.27662.2.1.2.1.5.7|2|0
 | 
			
		||||
1.3.6.1.4.1.27662.4.1.1.3.0|2|30
 | 
			
		||||
1.3.6.1.4.1.27662.4.1.1.4.0|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.4.1.1.5.0|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.4.1.1.6.0|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.4.1.1.7.0|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.4.1.1.8.0|2|0
 | 
			
		||||
1.3.6.1.4.1.27662.200.1.1.1.4.1.1.2.0|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.200.1.1.1.4.1.1.3.0|2|15
 | 
			
		||||
1.3.6.1.4.1.27662.200.1.1.1.4.3.1.3.0|2|1
 | 
			
		||||
1.3.6.1.4.1.27662.200.1.1.1.4.3.1.3.1|2|0
 | 
			
		||||
1.3.6.1.4.1.27662.200.1.1.1.4.3.1.3.2|2|0
 | 
			
		||||
1.3.6.1.4.1.27662.200.1.1.1.4.4.1.0|66|51000
 | 
			
		||||
1.3.6.1.6.3.10.2.1.3.0|2|349285
 | 
			
		||||
		Reference in New Issue
	
	Block a user