Zyxel Wireless Controller OS ( Zyxel NXC series ) (#15694)

* zyxelwlc

* Zyxel Wireless Controller OS

* Zyxel Wireless Controller OS

* Update Zyxelwlc.php

* test data

* sensor count graph

* sensor count graph

* sensor count graph

* sensor count graph

* fix indent

* trailing CR

* Trailing CR

* fix count def

* Delete includes/html/graphs/device/sensor-count-zyxelwlc-sessions.inc.php

Not necessary

* Delete includes/html/pages/device/graphs/sensor-count-zyxelwlc-sessions.inc.php

Not necessary

* fix tests

* fix tests for real

* session graph in core section

* session graph in core section

* session graph in core section

---------

Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com>
This commit is contained in:
kakohegyi 2024-01-14 14:02:28 +01:00 committed by GitHub
parent 9b7d2f80e6
commit 4456640e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 7930 additions and 7 deletions

77
LibreNMS/OS/Zyxelwlc.php Normal file
View File

@ -0,0 +1,77 @@
<?php
/*
* LibreNMS
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*
* @package LibreNMS
* @link https://www.librenms.org
* @copyright 2017 Thomas GAGNIERE
* @author Thomas GAGNIERE <tgagniere@reseau-concept.com>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessApCountDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
use LibreNMS\OS\Shared\Zyxel;
class Zyxelwlc extends Zyxel implements WirelessApCountDiscovery, WirelessClientsDiscovery
{
public function discoverWirelessClients()
{
$oid = '.1.3.6.1.4.1.890.1.15.3.3.1.4.0'; // ZYXEL-ES-CAPWAP::capwapTotalStation
$total_station = (int) snmp_get($this->getDeviceArray(), '.1.3.6.1.4.1.890.1.15.3.3.1.4.0', '-Ovq'); // ZYXEL-ES-CAPWAP::capwapTotalStation
$sensors[] = new WirelessSensor(
'clients',
$this->getDeviceId(),
$oid,
'zyxelwlc',
0,
'Clients: Total',
$total_station
);
return $sensors;
}
public function discoverWirelessApCount()
{
$oid = '.1.3.6.1.4.1.890.1.15.3.3.1.1.0'; // ZYXEL-ES-CAPWAP::capwapOnlineAP
$number_ap = (int) snmp_get($this->getDeviceArray(), '.11.3.6.1.4.1.890.1.15.3.3.1.1.0', '-Ovq'); // ZYXEL-ES-CAPWAP::capwapOnlineAP
if ($this->getDeviceArray()['hardware'] == 'NXC2500') {
$max_ap = 64;
} elseif ($this->getDeviceArray()['hardware'] == 'NXC5200') {
$max_ap = 240;
} elseif ($this->getDeviceArray()['hardware'] == 'NXC5500') {
$max_ap = 1024;
} else {
$max_ap = 0;
}
return [
new WirelessSensor(
'ap-count',
$this->getDeviceId(),
$oid,
'zyxelwlc',
0,
'Connected APs',
$number_ap,
1,
1,
'sum',
null,
$max_ap,
0
),
];
}
}

View File

@ -0,0 +1,30 @@
mib: ZYXEL-ES-COMMON
modules:
os:
hardware:
- ZYXEL-ES-COMMON::sysProductModel.0
serial: ZYXEL-ES-COMMON::sysProductSerialNumber.0
version: ZYXEL-ES-COMMON::sysSwVersionString.0
mempools:
data:
-
percent_used: ZYXEL-ES-COMMON::sysMgmtMemUsage
index: 0
-
percent_used: ZYXEL-ES-COMMON::sysMgmtFlashUsage
descr: Flash
index: 1
processors:
data:
-
oid: sysMgmtCPUUsage
num_oid: '.1.3.6.1.4.1.890.1.15.3.2.4.{{ $index }}'
sensors:
count:
data:
-
oid: sysActiveSessionNum
value: sysActiveSessionNum
num_oid: '.1.3.6.1.4.1.890.1.15.3.1.19.{{ $index }}'
descr: 'Active Sessions'
index: 'sessionNum.{{ $index }}'

View File

@ -15,3 +15,4 @@ discovery:
sysDescr_regex_except:
- '/^NWA/'
- '/^XGS/'
- '/^NXC/'

View File

@ -0,0 +1,20 @@
os: zyxelwlc
text: 'Zyxel Zyxelwlc'
group: zyxel
type: wireless
over:
- { graph: device_bits, text: Traffic }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
- { graph: device_sensor-count-zyxelwlc-sessionNum, text: 'Active Sessions' }
- { graph: device_wireless_clients, text: 'Number of Clients' }
- { graph: device_wireless_ap-count, text: 'Connected APs' }
mib_dir: zyxel
icon: zyxel
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.890.1.6
- .1.3.6.1.4.1.890.1.15
sysDescr_regex:
- '/^NXC/'

View File

@ -0,0 +1,13 @@
<?php
$rrd_filename = Rrd::name($device['hostname'], 'sensor-count-zyxelwlc-sessionNum.0');
$ds = 'sensor';
$colour_area = 'cc000000';
$colour_line = 'cc0000';
$scale_min = '0';
$unit_text = 'Active Sessions';
require 'includes/html/graphs/generic_simplex.inc.php';

122
mibs/zyxel/ZYXEL-ES-CAPWAP Normal file
View File

@ -0,0 +1,122 @@
-- **********************************************
-- ZyXEL Communications Corporation
--
-- Enterprise Solution MIB definitions
-- CAPWAP MIBs
--
-- LiKuang
--
-- Copyright by ZyXEL Communications Corp.
-- All rights reserved.
-- **********************************************
ZYXEL-ES-CAPWAP DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE FROM SNMPv2-SMI
OBJECT-GROUP,
MODULE-COMPLIANCE FROM SNMPv2-CONF
DisplayString FROM SNMPv2-TC
esMgmt FROM ZYXEL-ES-SMI;
esCAPWAP MODULE-IDENTITY
LAST-UPDATED "201010060000Z"
ORGANIZATION "Enterprise Solution ZyXEL"
CONTACT-INFO
""
DESCRIPTION
"The subtree for CAPWAP information"
::= { esMgmt 3 }
-- esCAPWAP OIDs
capwapInfo OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The subtree for CAPWAP"
::= { esCAPWAP 1 }
capwapTraps OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The subtree for CAPWAP"
::= { esCAPWAP 2 }
capwapOnlineAP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Capwap online AP. "
::= { capwapInfo 1 }
capwapOfflineAP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Capwap offline AP. "
::= { capwapInfo 2 }
capwapUnMgntAP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Capwap unmanagment AP. "
::= { capwapInfo 3 }
capwapTotalStation OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total stations in all AP. "
::= { capwapInfo 4 }
-- capwapTrapsControl OBJECT-IDENTITY
-- STATUS current
-- DESCRIPTION
-- "The subtree for CAPWAP"
-- ::= { capwapTraps 1 }
capwapTrapsControl OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls capwap group traps enable or disable."
::= { capwapTraps 1 }
capwapTrapsItems OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The subtree for CAPWAP"
::= { capwapTraps 2 }
capwapWTPOnline NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"WTP online notification. "
::= { capwapTrapsItems 1 }
capwapWTPOffline NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"WTP offline notification. "
::= { capwapTrapsItems 2 }
END

View File

@ -26,11 +26,11 @@ IMPORTS
--
-- Node: esWireless
-- includes wlanRadioTable, wlanStationTable, wlanStatisticsTable, wlanTraps, wlanTotalStationCount
-- includes wlanRadioTable, wlanStationTable, wlanStatisticsTable, wlanTraps, wlanControllerAPTable, wlanControllerAPRadioTable,wlanControllerAPVAPTable,wlanTotalStationCount
--
esWireless MODULE-IDENTITY
LAST-UPDATED "201009200000Z"
LAST-UPDATED "201503230000Z"
ORGANIZATION "Enterprise Solution Zyxel"
CONTACT-INFO ""
DESCRIPTION
@ -84,7 +84,6 @@ WlanRadioEntry ::= SEQUENCE {
channel-11_2462mhz(11),
channel-12_2467mhz(12),
channel-13_2472mhz(13),
channel-36_5180mhz(36),
channel-40_5200mhz(40),
channel-44_5220mhz(44),
@ -109,7 +108,6 @@ WlanRadioEntry ::= SEQUENCE {
channel-157_5785mhz(157),
channel-161_5805mhz(161),
channel-165_5825mhz(165),
channel-01_5955mhz(1),
channel-05_5975mhz(5),
channel-09_5995mhz(9),
@ -219,7 +217,6 @@ WlanRadioEntry ::= SEQUENCE {
channel-11_2462mhz(11),
channel-12_2467mhz(12),
channel-13_2472mhz(13),
channel-36_5180mhz(36),
channel-40_5200mhz(40),
channel-44_5220mhz(44),
@ -243,8 +240,7 @@ WlanRadioEntry ::= SEQUENCE {
channel-153_5765mhz(153),
channel-157_5785mhz(157),
channel-161_5805mhz(161),
channel-165_5825mhz(165),
channel-165_5825mhz(165),
channel-01_5955mhz(1),
channel-05_5975mhz(5),
channel-09_5995mhz(9),
@ -581,6 +577,383 @@ WlanStatisticsEntry ::= SEQUENCE {
"Wireless client authentication failed."
::= { trapsItems 3 }
--
-- Node: wlanControllerAPTable
--
wlanControllerAPTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlanControllerAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists Controller APs information. Use managmented AP number as the index of each entry"
::= { esWireless 11 }
wlanControllerAPEntry OBJECT-TYPE
SYNTAX WlanControllerAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry describing wireless information for each managmented AP."
INDEX {wlanControllerAPIndex }
::= { wlanControllerAPTable 1 }
WlanControllerAPEntry ::= SEQUENCE {
wlanControllerAPIndex Integer32,
wlanControllerAPMac OCTET STRING,
wlanControllerAPDescription OCTET STRING,
wlanControllerAPMgmtIPAddr IpAddress,
wlanControllerAPStationNum Unsigned32,
}
wlanControllerAPIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP index."
::= { wlanControllerAPEntry 1 }
wlanControllerAPMac OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC Addresss of the AP."
DEFVAL { "public" }
::= { wlanControllerAPEntry 2 }
wlanControllerAPDescription OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total numbers of associated stations"
::= { wlanControllerAPEntry 3 }
wlanControllerAPMgmtIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP managmented IP "
::= { wlanControllerAPEntry 4 }
wlanControllerAPStationNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total numbers of associated stations"
::= { wlanControllerAPEntry 5 }
--
-- Node: wlanControllerAPRadio
--
wlanControllerAPRadioTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlanControllerAPRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the AP radio information."
::= { esWireless 12 }
wlanControllerAPRadioEntry OBJECT-TYPE
SYNTAX WlanControllerAPRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry describing WLAN Radio information for each chip."
INDEX { wlanControllerRadioIndex }
::= { wlanControllerAPRadioTable 1 }
WlanControllerAPRadioEntry ::= SEQUENCE {
wlanControllerRadioIndex Integer32,
wlanControllerRadioStationNum Unsigned32,
wlanControllerRadioCurrentChannel INTEGER,
wlanControllerRadioOperationMode INTEGER,
wlanControllerRadioBand INTEGER,
wlanControllerRadioTxPkt Counter32,
wlanControllerRadioRxPkt Counter32,
wlanControllerRadioTxPower Integer32,
}
wlanControllerRadioIndex OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP radio index."
::= { wlanControllerAPRadioEntry 1 }
wlanControllerRadioStationNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total numbers of associated stations"
::= { wlanControllerAPRadioEntry 2 }
wlanControllerRadioCurrentChannel OBJECT-TYPE
SYNTAX INTEGER {
device_is_disable(0),
channel-01_2412mhz(1),
channel-02_2417mhz(2),
channel-03_2422mhz(3),
channel-04_2427mhz(4),
channel-05_2432mhz(5),
channel-06_2437mhz(6),
channel-07_2442mhz(7),
channel-08_2447mhz(8),
channel-09_2452mhz(9),
channel-10_2457mhz(10),
channel-11_2462mhz(11),
channel-12_2467mhz(12),
channel-13_2472mhz(13),
channel-36_5180mhz(36),
channel-40_5200mhz(40),
channel-44_5220mhz(44),
channel-48_5240mhz(48),
channel-52_5260mhz(52),
channel-56_5280mhz(56),
channel-60_5300mhz(60),
channel-64_5320mhz(64),
channel-100_5500mhz(100),
channel-104_5520mhz(104),
channel-108_5540mhz(108),
channel-112_5560mhz(112),
channel-116_5580mhz(116),
channel-120_5600mhz(120),
channel-124_5620mhz(124),
channel-128_5640mhz(128),
channel-132_5660mhz(132),
channel-136_5680mhz(136),
channel-140_5700mhz(140),
channel-149_5745mhz(149),
channel-153_5765mhz(153),
channel-157_5785mhz(157),
channel-161_5805mhz(161),
channel-165_5825mhz(165)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operating wireless channel."
::= { wlanControllerAPRadioEntry 3 }
wlanControllerRadioOperationMode OBJECT-TYPE
SYNTAX INTEGER {
na(0),
ap(1),
monitor(2),
mesh-Root(3),
mesh-repeater(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operation mode of the radio."
::= { wlanControllerAPRadioEntry 4 }
wlanControllerRadioBand OBJECT-TYPE
SYNTAX INTEGER {
na(0),
mode_2_4G(1),
mode_5G(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The control for WLAN radio mode."
::= { wlanControllerAPRadioEntry 5 }
wlanControllerRadioTxPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted by the radio."
::= { wlanControllerAPRadioEntry 6 }
wlanControllerRadioRxPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by the radio."
::= { wlanControllerAPRadioEntry 7 }
wlanControllerRadioTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The radio's real output power (dBm)"
::= { wlanControllerAPRadioEntry 8 }
--
-- Node: wlanControllerAPMultiVAPTable
--
wlanControllerAPVAPTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlanControllerAPVAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the AP VAP information."
::= { esWireless 13 }
--
wlanControllerAPVAPEntry OBJECT-TYPE
SYNTAX WlanControllerAPVAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry describing WLAN BSS information for each radio."
INDEX { wlanControllerRadioVAPIndex }
::= { wlanControllerAPVAPTable 1 }
WlanControllerAPVAPEntry ::= SEQUENCE {
wlanControllerRadioVAPIndex Integer32,
wlanControllerRadioVAPSSIDName OCTET STRING,
wlanControllerRadioVAPVLANID Integer32,
wlanControllerRadioVAPSecMode OCTET STRING
}
wlanControllerRadioVAPIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP radio VAP index."
::= { wlanControllerAPVAPEntry 1 }
wlanControllerRadioVAPSSIDName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSID name"
::= { wlanControllerAPVAPEntry 2 }
wlanControllerRadioVAPVLANID OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VAP VLAN ID."
::= { wlanControllerAPVAPEntry 3 }
wlanControllerRadioVAPSecMode OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VAP security mode."
::= { wlanControllerAPVAPEntry 4 }
--
-- Node: wlanControllerStationTable
--
wlanControllerStationTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlanControllerStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists controller stations list."
::= { esWireless 14 }
wlanControllerStationEntry OBJECT-TYPE
SYNTAX WlanControllerStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry describing the station information."
INDEX { wlanControllerStationIndex }
::= { wlanControllerStationTable 1 }
WlanControllerStationEntry ::= SEQUENCE {
wlanControllerStationIndex Integer32,
wlanControllerStationMacAddress OCTET STRING,
wlanControllerStationAssociatedTime OCTET STRING,
wlanControllerStationSSID OCTET STRING,
wlanControllerStationIPAddr IpAddress,
wlanControllerStationAssociatedAPMac OCTET STRING,
wlanControllerStationSignalStrength OCTET STRING,
wlanControllerStationTxPkt Counter32,
wlanControllerStationRxPkt Counter32,
}
wlanControllerStationIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of stations."
::= { wlanControllerStationEntry 1 }
wlanControllerStationMacAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC Addresss of the station."
DEFVAL { "public" }
::= { wlanControllerStationEntry 2 }
wlanControllerStationAssociatedTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated time of the station."
::= { wlanControllerStationEntry 3 }
wlanControllerStationSSID OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated ssid."
::= { wlanControllerStationEntry 4 }
wlanControllerStationIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Addresss of the station."
::= { wlanControllerStationEntry 5 }
wlanControllerStationAssociatedAPMac OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC Addresss of the Associated AP."
::= { wlanControllerStationEntry 6 }
wlanControllerStationSignalStrength OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Stations singal Strength (dbm)"
::= { wlanControllerStationEntry 7 }
wlanControllerStationTxPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bytes of packets transmitted from the station."
::= { wlanControllerStationEntry 8 }
wlanControllerStationRxPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bytes of packets received by the station."
::= { wlanControllerStationEntry 9 }
--
-- Node: wlanTotalStationCount
--
@ -593,3 +966,6 @@ wlanTotalStationCount OBJECT-TYPE
"The total numbers of associated stations"
::= { esWireless 15 }
END

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,490 @@
1.3.6.1.2.1.1.1.0|4|NXC2500
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.890.1.15
1.3.6.1.2.1.1.4.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|lo
1.3.6.1.2.1.2.2.1.2.2|4|gre0
1.3.6.1.2.1.2.2.1.2.3|4|sit0
1.3.6.1.2.1.2.2.1.2.4|4|ip6tnl0
1.3.6.1.2.1.2.2.1.2.5|4|eth_base
1.3.6.1.2.1.2.2.1.2.6|4|eth0
1.3.6.1.2.1.2.2.1.2.7|4|PORT2
1.3.6.1.2.1.2.2.1.2.8|4|PORT3
1.3.6.1.2.1.2.2.1.2.9|4|PORT4
1.3.6.1.2.1.2.2.1.2.10|4|PORT5
1.3.6.1.2.1.2.2.1.2.11|4|PORT6
1.3.6.1.2.1.2.2.1.2.12|4|eth_base.0
1.3.6.1.2.1.2.2.1.2.13|4|eth1
1.3.6.1.2.1.2.2.1.2.14|4|eth2
1.3.6.1.2.1.2.2.1.2.15|4|eth3
1.3.6.1.2.1.2.2.1.2.16|4|eth4
1.3.6.1.2.1.2.2.1.2.17|4|eth5
1.3.6.1.2.1.2.2.1.2.18|4|old1-1
1.3.6.1.2.1.2.2.1.2.19|4|old3-1
1.3.6.1.2.1.2.2.1.2.20|4|vlan0
1.3.6.1.2.1.2.2.1.2.21|4|old1-200
1.3.6.1.2.1.2.2.1.2.22|4|vlan200
1.3.6.1.2.1.2.2.1.2.23|4|old1-211
1.3.6.1.2.1.2.2.1.2.24|4|vlan211
1.3.6.1.2.1.2.2.1.2.25|4|old1-280
1.3.6.1.2.1.2.2.1.2.26|4|vlan280
1.3.6.1.2.1.2.2.1.2.27|4|old1-400
1.3.6.1.2.1.2.2.1.2.28|4|vlan400
1.3.6.1.2.1.2.2.1.2.29|4|old1-411
1.3.6.1.2.1.2.2.1.2.30|4|vlan411
1.3.6.1.2.1.2.2.1.2.31|4|old1-480
1.3.6.1.2.1.2.2.1.2.32|4|vlan480
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|131
1.3.6.1.2.1.2.2.1.3.3|2|131
1.3.6.1.2.1.2.2.1.3.4|2|131
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|6
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.3.11|2|6
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.13|2|6
1.3.6.1.2.1.2.2.1.3.14|2|6
1.3.6.1.2.1.2.2.1.3.15|2|6
1.3.6.1.2.1.2.2.1.3.16|2|6
1.3.6.1.2.1.2.2.1.3.17|2|6
1.3.6.1.2.1.2.2.1.3.18|2|6
1.3.6.1.2.1.2.2.1.3.19|2|6
1.3.6.1.2.1.2.2.1.3.20|2|6
1.3.6.1.2.1.2.2.1.3.21|2|6
1.3.6.1.2.1.2.2.1.3.22|2|6
1.3.6.1.2.1.2.2.1.3.23|2|6
1.3.6.1.2.1.2.2.1.3.24|2|6
1.3.6.1.2.1.2.2.1.3.25|2|6
1.3.6.1.2.1.2.2.1.3.26|2|6
1.3.6.1.2.1.2.2.1.3.27|2|6
1.3.6.1.2.1.2.2.1.3.28|2|6
1.3.6.1.2.1.2.2.1.3.29|2|6
1.3.6.1.2.1.2.2.1.3.30|2|6
1.3.6.1.2.1.2.2.1.3.31|2|6
1.3.6.1.2.1.2.2.1.3.32|2|6
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|2
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.8|2|2
1.3.6.1.2.1.2.2.1.8.9|2|2
1.3.6.1.2.1.2.2.1.8.10|2|2
1.3.6.1.2.1.2.2.1.8.11|2|2
1.3.6.1.2.1.2.2.1.8.12|2|2
1.3.6.1.2.1.2.2.1.8.13|2|1
1.3.6.1.2.1.2.2.1.8.14|2|1
1.3.6.1.2.1.2.2.1.8.15|2|1
1.3.6.1.2.1.2.2.1.8.16|2|1
1.3.6.1.2.1.2.2.1.8.17|2|1
1.3.6.1.2.1.2.2.1.8.18|2|1
1.3.6.1.2.1.2.2.1.8.19|2|1
1.3.6.1.2.1.2.2.1.8.20|2|1
1.3.6.1.2.1.2.2.1.8.21|2|1
1.3.6.1.2.1.2.2.1.8.22|2|1
1.3.6.1.2.1.2.2.1.8.23|2|1
1.3.6.1.2.1.2.2.1.8.24|2|1
1.3.6.1.2.1.2.2.1.8.25|2|1
1.3.6.1.2.1.2.2.1.8.26|2|1
1.3.6.1.2.1.2.2.1.8.27|2|1
1.3.6.1.2.1.2.2.1.8.28|2|1
1.3.6.1.2.1.2.2.1.8.29|2|1
1.3.6.1.2.1.2.2.1.8.30|2|1
1.3.6.1.2.1.2.2.1.8.31|2|1
1.3.6.1.2.1.2.2.1.8.32|2|1
1.3.6.1.2.1.4.20.1.2.10.1.0.230|2|22
1.3.6.1.2.1.4.20.1.2.10.1.19.251|2|24
1.3.6.1.2.1.4.20.1.2.10.1.97.251|2|26
1.3.6.1.2.1.4.20.1.2.10.3.0.230|2|28
1.3.6.1.2.1.4.20.1.2.10.3.18.2|2|30
1.3.6.1.2.1.4.20.1.2.10.3.96.1|2|32
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.192.168.1.7|2|20
1.3.6.1.2.1.4.20.1.3.10.1.0.230|64|255.255.255.0
1.3.6.1.2.1.4.31.1.1.3.1|65|80072815
1.3.6.1.2.1.4.31.1.1.4.1|70|80072815
1.3.6.1.2.1.4.31.1.1.6.1|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.15.1|65|3570
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|33627265
1.3.6.1.2.1.4.31.1.1.19.1|70|33627265
1.3.6.1.2.1.4.31.1.1.20.1|65|27349842
1.3.6.1.2.1.4.31.1.1.21.1|70|27349842
1.3.6.1.2.1.4.31.1.1.22.1|65|4
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|1572
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|30000
1.3.6.1.2.1.25.1.5.0|66|0
1.3.6.1.2.1.25.1.6.0|66|116
1.3.6.1.2.1.25.1.7.0|2|0
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.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.32|2|32
1.3.6.1.2.1.25.2.3.1.1.33|2|33
1.3.6.1.2.1.25.2.3.1.1.34|2|34
1.3.6.1.2.1.25.2.3.1.1.35|2|35
1.3.6.1.2.1.25.2.3.1.1.36|2|36
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.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.32|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.34|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.35|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.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.10|4|Swap space
1.3.6.1.2.1.25.2.3.1.3.31|4|/MRD
1.3.6.1.2.1.25.2.3.1.3.32|4|/MyZyXEL
1.3.6.1.2.1.25.2.3.1.3.33|4|/share
1.3.6.1.2.1.25.2.3.1.3.34|4|/db
1.3.6.1.2.1.25.2.3.1.3.35|4|/rw
1.3.6.1.2.1.25.2.3.1.3.36|4|/compress
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.10|2|1024
1.3.6.1.2.1.25.2.3.1.4.31|2|512
1.3.6.1.2.1.25.2.3.1.4.32|2|512
1.3.6.1.2.1.25.2.3.1.4.33|2|4096
1.3.6.1.2.1.25.2.3.1.4.34|2|4096
1.3.6.1.2.1.25.2.3.1.4.35|2|1024
1.3.6.1.2.1.25.2.3.1.4.36|2|131072
1.3.6.1.2.1.25.2.3.1.5.1|2|1004508
1.3.6.1.2.1.25.2.3.1.5.3|2|1004508
1.3.6.1.2.1.25.2.3.1.5.6|2|1004508
1.3.6.1.2.1.25.2.3.1.5.7|2|124544
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|16126
1.3.6.1.2.1.25.2.3.1.5.32|2|16126
1.3.6.1.2.1.25.2.3.1.5.33|2|226774
1.3.6.1.2.1.25.2.3.1.5.34|2|258022
1.3.6.1.2.1.25.2.3.1.5.35|2|118997
1.3.6.1.2.1.25.2.3.1.5.36|2|387
1.3.6.1.2.1.25.2.3.1.6.1|2|215904
1.3.6.1.2.1.25.2.3.1.6.3|2|215904
1.3.6.1.2.1.25.2.3.1.6.6|2|15064
1.3.6.1.2.1.25.2.3.1.6.7|2|124544
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|129
1.3.6.1.2.1.25.2.3.1.6.32|2|4
1.3.6.1.2.1.25.2.3.1.6.33|2|48229
1.3.6.1.2.1.25.2.3.1.6.34|2|9034
1.3.6.1.2.1.25.2.3.1.6.35|2|62580
1.3.6.1.2.1.25.2.3.1.6.36|2|387
1.3.6.1.2.1.25.3.2.1.1.768|2|768
1.3.6.1.2.1.25.3.2.1.1.769|2|769
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
1.3.6.1.2.1.25.3.2.1.1.1027|2|1027
1.3.6.1.2.1.25.3.2.1.1.1028|2|1028
1.3.6.1.2.1.25.3.2.1.1.1029|2|1029
1.3.6.1.2.1.25.3.2.1.1.1030|2|1030
1.3.6.1.2.1.25.3.2.1.1.1031|2|1031
1.3.6.1.2.1.25.3.2.1.1.1032|2|1032
1.3.6.1.2.1.25.3.2.1.1.1033|2|1033
1.3.6.1.2.1.25.3.2.1.1.1034|2|1034
1.3.6.1.2.1.25.3.2.1.1.1035|2|1035
1.3.6.1.2.1.25.3.2.1.1.1036|2|1036
1.3.6.1.2.1.25.3.2.1.1.1037|2|1037
1.3.6.1.2.1.25.3.2.1.1.1038|2|1038
1.3.6.1.2.1.25.3.2.1.1.1039|2|1039
1.3.6.1.2.1.25.3.2.1.1.1040|2|1040
1.3.6.1.2.1.25.3.2.1.1.1041|2|1041
1.3.6.1.2.1.25.3.2.1.1.1042|2|1042
1.3.6.1.2.1.25.3.2.1.1.1043|2|1043
1.3.6.1.2.1.25.3.2.1.1.1044|2|1044
1.3.6.1.2.1.25.3.2.1.1.1045|2|1045
1.3.6.1.2.1.25.3.2.1.1.1046|2|1046
1.3.6.1.2.1.25.3.2.1.1.1047|2|1047
1.3.6.1.2.1.25.3.2.1.1.1048|2|1048
1.3.6.1.2.1.25.3.2.1.1.1049|2|1049
1.3.6.1.2.1.25.3.2.1.1.1050|2|1050
1.3.6.1.2.1.25.3.2.1.1.1051|2|1051
1.3.6.1.2.1.25.3.2.1.1.1052|2|1052
1.3.6.1.2.1.25.3.2.1.1.1053|2|1053
1.3.6.1.2.1.25.3.2.1.1.1054|2|1054
1.3.6.1.2.1.25.3.2.1.1.1055|2|1055
1.3.6.1.2.1.25.3.2.1.1.1056|2|1056
1.3.6.1.2.1.25.3.2.1.1.1280|2|1280
1.3.6.1.2.1.25.3.2.1.1.3072|2|3072
1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.769|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1027|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1028|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1029|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1030|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1031|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1032|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1033|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1034|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1035|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1036|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1037|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1038|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1039|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1040|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1041|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1042|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1043|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1044|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1045|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1046|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1047|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1048|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1049|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1050|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1051|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1052|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1053|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1054|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1055|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1056|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1280|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.3072|6|1.3.6.1.2.1.25.3.1.12
1.3.6.1.2.1.25.3.2.1.3.768|4|
1.3.6.1.2.1.25.3.2.1.3.769|4|
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface gre0
1.3.6.1.2.1.25.3.2.1.3.1027|4|network interface sit0
1.3.6.1.2.1.25.3.2.1.3.1028|4|network interface ip6tnl0
1.3.6.1.2.1.25.3.2.1.3.1029|4|network interface eth_base
1.3.6.1.2.1.25.3.2.1.3.1030|4|network interface eth0
1.3.6.1.2.1.25.3.2.1.3.1031|4|network interface PORT2
1.3.6.1.2.1.25.3.2.1.3.1032|4|network interface PORT3
1.3.6.1.2.1.25.3.2.1.3.1033|4|network interface PORT4
1.3.6.1.2.1.25.3.2.1.3.1034|4|network interface PORT5
1.3.6.1.2.1.25.3.2.1.3.1035|4|network interface PORT6
1.3.6.1.2.1.25.3.2.1.3.1036|4|network interface eth_base.0
1.3.6.1.2.1.25.3.2.1.3.1037|4|network interface eth1
1.3.6.1.2.1.25.3.2.1.3.1038|4|network interface eth2
1.3.6.1.2.1.25.3.2.1.3.1039|4|network interface eth3
1.3.6.1.2.1.25.3.2.1.3.1040|4|network interface eth4
1.3.6.1.2.1.25.3.2.1.3.1041|4|network interface eth5
1.3.6.1.2.1.25.3.2.1.3.1042|4|network interface old1-1
1.3.6.1.2.1.25.3.2.1.3.1043|4|network interface old3-1
1.3.6.1.2.1.25.3.2.1.3.1044|4|network interface vlan0
1.3.6.1.2.1.25.3.2.1.3.1045|4|network interface old1-200
1.3.6.1.2.1.25.3.2.1.3.1046|4|network interface vlan200
1.3.6.1.2.1.25.3.2.1.3.1047|4|network interface old1-211
1.3.6.1.2.1.25.3.2.1.3.1048|4|network interface vlan211
1.3.6.1.2.1.25.3.2.1.3.1049|4|network interface old1-280
1.3.6.1.2.1.25.3.2.1.3.1050|4|network interface vlan280
1.3.6.1.2.1.25.3.2.1.3.1051|4|network interface old1-400
1.3.6.1.2.1.25.3.2.1.3.1052|4|network interface vlan400
1.3.6.1.2.1.25.3.2.1.3.1053|4|network interface old1-411
1.3.6.1.2.1.25.3.2.1.3.1054|4|network interface vlan411
1.3.6.1.2.1.25.3.2.1.3.1055|4|network interface old1-480
1.3.6.1.2.1.25.3.2.1.3.1056|4|network interface vlan480
1.3.6.1.2.1.25.3.2.1.3.1280|4x|22737563682066696c65206f72206469726563746f72790a22
1.3.6.1.2.1.25.3.2.1.3.3072|4|Guessing that there's a floating point co-processor
1.3.6.1.2.1.25.3.2.1.4.768|6|0.0
1.3.6.1.2.1.25.3.2.1.4.769|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1027|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1028|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1029|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1030|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1031|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1032|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1033|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1034|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1035|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1036|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1037|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1038|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1039|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1040|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1041|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1042|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1043|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1044|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1045|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1046|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1047|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1048|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1049|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1050|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1051|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1052|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1053|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1054|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1055|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1056|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1280|6|0.0
1.3.6.1.2.1.25.3.2.1.4.3072|6|0.0
1.3.6.1.2.1.25.3.2.1.5.768|2|2
1.3.6.1.2.1.25.3.2.1.5.769|2|2
1.3.6.1.2.1.25.3.2.1.5.1025|2|2
1.3.6.1.2.1.25.3.2.1.5.1026|2|5
1.3.6.1.2.1.25.3.2.1.5.1027|2|5
1.3.6.1.2.1.25.3.2.1.5.1028|2|5
1.3.6.1.2.1.25.3.2.1.5.1029|2|2
1.3.6.1.2.1.25.3.2.1.5.1030|2|2
1.3.6.1.2.1.25.3.2.1.5.1031|2|2
1.3.6.1.2.1.25.3.2.1.5.1032|2|2
1.3.6.1.2.1.25.3.2.1.5.1033|2|2
1.3.6.1.2.1.25.3.2.1.5.1034|2|2
1.3.6.1.2.1.25.3.2.1.5.1035|2|2
1.3.6.1.2.1.25.3.2.1.5.1036|2|5
1.3.6.1.2.1.25.3.2.1.5.1037|2|2
1.3.6.1.2.1.25.3.2.1.5.1038|2|2
1.3.6.1.2.1.25.3.2.1.5.1039|2|2
1.3.6.1.2.1.25.3.2.1.5.1040|2|2
1.3.6.1.2.1.25.3.2.1.5.1041|2|2
1.3.6.1.2.1.25.3.2.1.5.1042|2|2
1.3.6.1.2.1.25.3.2.1.5.1043|2|2
1.3.6.1.2.1.25.3.2.1.5.1044|2|2
1.3.6.1.2.1.25.3.2.1.5.1045|2|2
1.3.6.1.2.1.25.3.2.1.5.1046|2|2
1.3.6.1.2.1.25.3.2.1.5.1047|2|2
1.3.6.1.2.1.25.3.2.1.5.1048|2|2
1.3.6.1.2.1.25.3.2.1.5.1049|2|2
1.3.6.1.2.1.25.3.2.1.5.1050|2|2
1.3.6.1.2.1.25.3.2.1.5.1051|2|2
1.3.6.1.2.1.25.3.2.1.5.1052|2|2
1.3.6.1.2.1.25.3.2.1.5.1053|2|2
1.3.6.1.2.1.25.3.2.1.5.1054|2|2
1.3.6.1.2.1.25.3.2.1.5.1055|2|2
1.3.6.1.2.1.25.3.2.1.5.1056|2|2
1.3.6.1.2.1.25.3.2.1.5.1280|2|1
1.3.6.1.2.1.25.3.2.1.6.1025|65|0
1.3.6.1.2.1.25.3.2.1.6.1026|65|0
1.3.6.1.2.1.25.3.2.1.6.1027|65|0
1.3.6.1.2.1.25.3.2.1.6.1028|65|0
1.3.6.1.2.1.25.3.2.1.6.1029|65|0
1.3.6.1.2.1.25.3.2.1.6.1030|65|0
1.3.6.1.2.1.25.3.2.1.6.1031|65|0
1.3.6.1.2.1.25.3.2.1.6.1032|65|0
1.3.6.1.2.1.25.3.2.1.6.1033|65|0
1.3.6.1.2.1.25.3.2.1.6.1034|65|0
1.3.6.1.2.1.25.3.2.1.6.1035|65|0
1.3.6.1.2.1.25.3.2.1.6.1036|65|0
1.3.6.1.2.1.25.3.2.1.6.1037|65|0
1.3.6.1.2.1.25.3.2.1.6.1038|65|0
1.3.6.1.2.1.25.3.2.1.6.1039|65|0
1.3.6.1.2.1.25.3.2.1.6.1040|65|0
1.3.6.1.2.1.25.3.2.1.6.1041|65|0
1.3.6.1.2.1.25.3.2.1.6.1042|65|0
1.3.6.1.2.1.25.3.2.1.6.1043|65|0
1.3.6.1.2.1.25.3.2.1.6.1044|65|0
1.3.6.1.2.1.25.3.2.1.6.1045|65|0
1.3.6.1.2.1.25.3.2.1.6.1046|65|0
1.3.6.1.2.1.25.3.2.1.6.1047|65|0
1.3.6.1.2.1.25.3.2.1.6.1048|65|0
1.3.6.1.2.1.25.3.2.1.6.1049|65|0
1.3.6.1.2.1.25.3.2.1.6.1050|65|0
1.3.6.1.2.1.25.3.2.1.6.1051|65|0
1.3.6.1.2.1.25.3.2.1.6.1052|65|0
1.3.6.1.2.1.25.3.2.1.6.1053|65|0
1.3.6.1.2.1.25.3.2.1.6.1054|65|0
1.3.6.1.2.1.25.3.2.1.6.1055|65|0
1.3.6.1.2.1.25.3.2.1.6.1056|65|0
1.3.6.1.2.1.25.3.2.1.6.1280|65|0
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.1.769|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|19
1.3.6.1.2.1.25.3.3.1.2.769|2|7
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
1.3.6.1.2.1.31.1.1.1.1.2|4|gre0
1.3.6.1.2.1.31.1.1.1.1.3|4|sit0
1.3.6.1.2.1.31.1.1.1.1.4|4|ip6tnl0
1.3.6.1.2.1.31.1.1.1.1.5|4|eth_base
1.3.6.1.2.1.31.1.1.1.1.6|4|eth0
1.3.6.1.2.1.31.1.1.1.1.7|4|PORT2
1.3.6.1.2.1.31.1.1.1.1.8|4|PORT3
1.3.6.1.2.1.31.1.1.1.1.9|4|PORT4
1.3.6.1.2.1.31.1.1.1.1.10|4|PORT5
1.3.6.1.2.1.31.1.1.1.1.11|4|PORT6
1.3.6.1.2.1.31.1.1.1.1.12|4|eth_base.0
1.3.6.1.2.1.31.1.1.1.1.13|4|eth1
1.3.6.1.2.1.31.1.1.1.1.14|4|eth2
1.3.6.1.2.1.31.1.1.1.1.15|4|eth3
1.3.6.1.2.1.31.1.1.1.1.16|4|eth4
1.3.6.1.2.1.31.1.1.1.1.17|4|eth5
1.3.6.1.2.1.31.1.1.1.1.18|4|old1-1
1.3.6.1.2.1.31.1.1.1.1.19|4|old3-1
1.3.6.1.2.1.31.1.1.1.1.20|4|vlan0
1.3.6.1.2.1.31.1.1.1.1.21|4|old1-200
1.3.6.1.2.1.31.1.1.1.1.22|4|vlan200
1.3.6.1.2.1.31.1.1.1.1.23|4|old1-211
1.3.6.1.2.1.31.1.1.1.1.24|4|vlan211
1.3.6.1.2.1.31.1.1.1.1.25|4|old1-280
1.3.6.1.2.1.31.1.1.1.1.26|4|vlan280
1.3.6.1.2.1.31.1.1.1.1.27|4|old1-400
1.3.6.1.2.1.31.1.1.1.1.28|4|vlan400
1.3.6.1.2.1.31.1.1.1.1.29|4|old1-411
1.3.6.1.2.1.31.1.1.1.1.30|4|vlan411
1.3.6.1.2.1.31.1.1.1.1.31|4|old1-480
1.3.6.1.2.1.31.1.1.1.1.32|4|vlan480
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.8|4|
1.3.6.1.2.1.31.1.1.1.18.9|4|
1.3.6.1.2.1.31.1.1.1.18.10|4|
1.3.6.1.2.1.31.1.1.1.18.11|4|
1.3.6.1.2.1.31.1.1.1.18.12|4|
1.3.6.1.2.1.31.1.1.1.18.13|4|
1.3.6.1.2.1.31.1.1.1.18.14|4|
1.3.6.1.2.1.31.1.1.1.18.15|4|
1.3.6.1.2.1.31.1.1.1.18.16|4|
1.3.6.1.2.1.31.1.1.1.18.17|4|
1.3.6.1.2.1.31.1.1.1.18.18|4|
1.3.6.1.2.1.31.1.1.1.18.19|4|
1.3.6.1.2.1.31.1.1.1.18.20|4|
1.3.6.1.2.1.31.1.1.1.18.21|4|
1.3.6.1.2.1.31.1.1.1.18.22|4|
1.3.6.1.2.1.31.1.1.1.18.23|4|
1.3.6.1.2.1.31.1.1.1.18.24|4|
1.3.6.1.2.1.31.1.1.1.18.25|4|
1.3.6.1.2.1.31.1.1.1.18.26|4|
1.3.6.1.2.1.31.1.1.1.18.27|4|
1.3.6.1.2.1.31.1.1.1.18.28|4|
1.3.6.1.2.1.31.1.1.1.18.29|4|
1.3.6.1.2.1.31.1.1.1.18.30|4|
1.3.6.1.2.1.31.1.1.1.18.31|4|
1.3.6.1.2.1.31.1.1.1.18.32|4|
1.3.6.1.4.1.890.1.15.3.1.6.0|4|V5.40(AAIG.0)
1.3.6.1.4.1.890.1.15.3.1.11.0|4|NXC2500
1.3.6.1.4.1.890.1.15.3.1.12.0|4|S162L27100106
1.3.6.1.4.1.890.1.15.3.1.19.0|2|642
1.3.6.1.4.1.890.1.15.3.2.4.0|2|13
1.3.6.1.4.1.890.1.15.3.2.5.0|2|12
1.3.6.1.4.1.890.1.15.3.2.6.0|2|9
1.3.6.1.4.1.890.1.15.3.3.1.1.0|2|35
1.3.6.1.4.1.890.1.15.3.3.1.4.0|2|45