Teldat: Wireless and GSM Basic Monitoring (#13255)

* Teldat: Wireless and GSM Basic Monitoring

* Teldat: Wireless IfIndex fix

* Teldat: Wireless and GSM tests

* minor comment correction

* Teldat: Wireless and GSM add json test data

* linter.warn: bugfix access_point_id = null, generally used for controllers, TELDATs are never controllers

* Teldat: Wireless and GSM tests replay results.

* linter.warn: fix #17 $entPhysicalMeasured expects float|int|null set to: null

* Teldat: Wireless and GSM some updates, bugfixes and lint updates as requested.

* linter : some more fixes...

* Teldat: Wireless and GSM, apply recommendations.

* minor styleCI fix.

* linter: fix

* linter: fix.

* Delete WirelessLteCellPolling.php

Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
Cupid@zul 2021-09-23 17:55:14 +01:00 committed by GitHub
parent 2687fc509e
commit 9eecca51c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 17093 additions and 0 deletions

309
LibreNMS/OS/Teldat.php Normal file
View File

@ -0,0 +1,309 @@
<?php
/**
* Teldat.php
*
* Teldat Devices
*
* 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 <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2021 Antonio Pedro Santos
* @author Antonio Pedro Santos <cupidazul@gmail.com>
*/
namespace LibreNMS\OS;
use Illuminate\Support\Str;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessCellDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrpDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrqDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSinrDiscovery;
use LibreNMS\OS;
class Teldat extends OS implements
WirelessCellDiscovery,
WirelessClientsDiscovery,
WirelessRssiDiscovery,
WirelessRsrqDiscovery,
WirelessRsrpDiscovery,
WirelessSinrDiscovery
{
/**
* Return Cellular Short Interface Name.
*
* @param string $ifName
* @param int $ifIndex
* @return string with Short Interface Name
*/
public function shortIfName($ifName, $ifIndex)
{
$device = ($ifName == '' ? strval($ifIndex) : preg_replace('/cellular/', 'Ce', $ifName));
return $device;
}
/**
* @return array Sensors
*/
public function discoverWirelessClients()
{
$sensors = [];
// telProdNpMonInterfWlanBSSCurrent :: Count of current associated stations
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'telProdNpMonInterfWlanBSSCurrent', [], 'TELDAT-MON-INTERF-WLAN-MIB');
if (! empty($data)) {
$ifNames = $this->getCacheByIndex('ifName', 'IF-MIB');
$ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB');
foreach ($data as $index => $entry) {
if (Str::startsWith($ifNames[$index], 'wlan') && $ifOperStatuses[$index] == 'up') {
$sensors[] = new WirelessSensor(
'clients',
$this->getDeviceId(),
".1.3.6.1.4.1.2007.4.1.2.2.2.24.2.1.23.$index",
'teldat',
$index,
$ifNames[$index],
$entry['telProdNpMonInterfWlanBSSCurrent'],
1,
1,
'sum',
null,
null,
40,
null,
30,
$index,
null
);
}
}
}
return $sensors;
}
/**
* teldatCellularStateMobileSignalQuality = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10 = "Cellular mobile reception signal quality (+CSQ)."
*
* Discover wireless RSSI (Received Signal Strength Indicator). This is in dBm. Type is rssi.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRssi()
{
$sensors = [];
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileSignalQuality', [], 'TELDAT-MON-INTERF-CELLULAR-MIB');
if (! empty($data)) {
$ifNames = $this->getCacheByIndex('ifName', 'IF-MIB');
$ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB');
foreach ($data as $index => $entry) {
if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') {
$sensors[] = new WirelessSensor(
'rssi',
$this->getDeviceId(),
'.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.' . $index,
'teldat',
$index,
'RSSI: ' . $this->shortIfName($ifNames[$index], $index),
$entry['teldatCellularStateMobileSignalQuality']
);
}
}
}
return $sensors;
}
/**
* teldatCellularStateMobileRxSINR = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24 = "Cellular mobile signal versus noise ratio (SINR)."
*
* Discover wireless SINR (Signal-to-Interference-plus-Noise Ratio). This is in dB. Type is sinr.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessSinr()
{
$sensors = [];
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileRxSINR', [], 'TELDAT-MON-INTERF-CELLULAR-MIB');
if (! empty($data)) {
$ifNames = $this->getCacheByIndex('ifName', 'IF-MIB');
$ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB');
foreach ($data as $index => $entry) {
if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') {
$sensors[] = new WirelessSensor(
'sinr',
$this->getDeviceId(),
'.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.' . $index,
'teldat',
$index,
'SINR: ' . $this->shortIfName($ifNames[$index], $index),
$entry['teldatCellularStateMobileRxSINR']
);
}
}
}
return $sensors;
}
/**
* teldatCellularStateMobileRxRSRQ = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23 = "Cellular mobile reference signal received quality (RSRQ)."
*
* Discover wireless RSRQ (Reference Signal Received Quality). This is in dB. Type is rsrq.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRsrq()
{
$sensors = [];
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileRxRSRQ', [], 'TELDAT-MON-INTERF-CELLULAR-MIB');
if (! empty($data)) {
$ifNames = $this->getCacheByIndex('ifName', 'IF-MIB');
$ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB');
foreach ($data as $index => $entry) {
if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') {
$sensors[] = new WirelessSensor(
'rsrq',
$this->getDeviceId(),
'.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.' . $index,
'teldat',
$index,
'RSRQ: ' . $this->shortIfName($ifNames[$index], $index),
$entry['teldatCellularStateMobileRxRSRQ']
);
}
}
}
return $sensors;
}
/**
* teldatCellularStateMobileRxRSRP = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22 = "Cellular mobile reference symbol received power (RSRP)."
*
* Discover wireless RSRP (Reference Signals Received Power). This is in dBm. Type is rsrp.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRsrp()
{
$sensors = [];
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileRxRSRP', [], 'TELDAT-MON-INTERF-CELLULAR-MIB');
if (! empty($data)) {
$ifNames = $this->getCacheByIndex('ifName', 'IF-MIB');
$ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB');
foreach ($data as $index => $entry) {
if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') {
$sensors[] = new WirelessSensor(
'rsrp',
$this->getDeviceId(),
'.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.' . $index,
'teldat',
$index,
'RSRP: ' . $this->shortIfName($ifNames[$index], $index),
$entry['teldatCellularStateMobileRxRSRP']
);
}
}
}
return $sensors;
}
/**
* teldatCellularStateMobileCellId = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5 = "Cellular mobile used cell id (+CGREG)."
* teldatCellularStateMobileLTECellId = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25 = "Cellular mobile used LTE cell id."
*
* Discover wireless Cellular Cell Id. This is in cell number. Type is cellid.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessCell()
{
$sensors = [];
$ifNames = [];
$ifOperStatuses = [];
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileCellId', [], 'TELDAT-MON-INTERF-CELLULAR-MIB');
if (! empty($data)) {
$ifNames = $this->getCacheByIndex('ifName', 'IF-MIB');
$ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB');
foreach ($data as $index => $entry) {
if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') {
$sensors[] = new WirelessSensor(
'cell',
$this->getDeviceId(),
'.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.' . $index,
'teldat',
$index,
'CellID: ' . $this->shortIfName($ifNames[$index], $index),
$entry['teldatCellularStateMobileCellId']
);
}
}
}
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileLTECellId', [], 'TELDAT-MON-INTERF-CELLULAR-MIB');
if (! empty($data)) {
if (empty($ifNames)) {
$ifNames = $this->getCacheByIndex('ifName', 'IF-MIB');
}
if (empty($ifOperStatuses)) {
$ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB');
}
foreach ($data as $index => $entry) {
if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') {
$sensors[] = new WirelessSensor(
'cell',
$this->getDeviceId(),
'.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.' . $index,
'teldat',
(10 * count($sensors)) + $index,
'LteCellID: ' . $this->shortIfName($ifNames[$index], $index),
$entry['teldatCellularStateMobileLTECellId']
);
}
}
}
return $sensors;
}
}

View File

@ -0,0 +1,790 @@
-- Teldat, S.A.
-- Parque Tecnol<6F>gico de Madrid
-- 28760, Tres Cantos (Madrid)
-- Tlf: +34-918076565
-- Fax: +34-918076521
-- e-mail: id@teldat.com
-- MIB privada de Teldat
-- Monitorizaci<63>n del interfaz CELLULAR
-- Historial:
-- 28-06-18 P. Alonso DR1042 eNB parameter as cellid when LTE.
-- 20-04-18 P. Alonso DR1042 New LTE eNB parameter.
-- 21-03-18 Benjamin G. DR1007 Dual-SIM IMSI information availability.
-- 22-01-18 P. Alonso ER#1254 New LTE cell ID parameter.
-- 01-02-17 fmiguel LTE SINR added to cellular MIB and monitoring
-- 27-07-16 P. Alonso XH 5175 cellular interface statistics for NIC.
-- 13-06-16 N. Moro DR 559. New SNMP tables: teldatCellularProfDialTable
-- and teldatCellularRecChangesTable
-- 25-02-16 J. Rodrigo DR-204. Sierra Wireless MC74xx support.
-- 07-02-14 M.A. Pastor XH 3523. Errors with HP Openview 9.20
-- 1.6 11-01-13 E. Amorena XH 2610. MIBs compilation.
-- 1.5 28-06-12 Thales Compilation error solved
-- 1.4 10-02-12 FDMB Throughput included
-- 1.3 26-06-08 FDMB Incluido SIM ICC
-- 1.2 19-07-07 M.A. Berrojo Estado del interfaz es enumeracion
-- 1.1 18-07-07 M.A. Berrojo Se agregan estadisticos de nivel 3
-- correspondientes a tr<74>fico intercambiado
-- por radio
-- 1.0 08-05-07 M.A. Berrojo Implementaci<63>n inicial
--------------------------------------------------------------------------------
TELDAT-MON-INTERF-CELLULAR-MIB
DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
telProdNpMonInterfRouter
FROM TELDAT-SW-STRUCTURE-MIB;
-- Monitorizaci<63>n privada del interfaz CELLULAR
telProdNpMonInterfCellular OBJECT IDENTIFIER ::= { telProdNpMonInterfRouter 18 }
-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
-- Global Cellular monitoring variables
-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
-- Global Info Cellular monitoring variables
-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
teldatCellularInfoInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF TeldatCellularInfoInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of information available for Cellular interfaces.
Each row represents an interface"
::= { telProdNpMonInterfCellular 1 }
teldatCellularInfoInterfaceEntry OBJECT-TYPE
SYNTAX TeldatCellularInfoInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A base list of objects that are information about a Cellular interface.
The inex is the number of the interface"
INDEX { teldatCellularInfoInterfaceIndex }
::= { teldatCellularInfoInterfaceTable 1 }
TeldatCellularInfoInterfaceEntry ::= SEQUENCE
{
teldatCellularInfoInterfaceIndex INTEGER,
teldatCellularInfoInterfaceModuleManufacturer DisplayString,
teldatCellularInfoInterfaceModuleModel DisplayString,
teldatCellularInfoInterfaceModuleFirmware DisplayString,
teldatCellularInfoInterfaceModuleIMEI DisplayString,
teldatCellularInfoInterfaceModuleIMSI DisplayString,
teldatCellularInfoInterfaceSIMId DisplayString,
teldatCellularInfoInterfaceSIMIcc DisplayString
}
teldatCellularInfoInterfaceIndex OBJECT-TYPE
SYNTAX INTEGER(1 .. 255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Interface index"
::= { teldatCellularInfoInterfaceEntry 1 }
teldatCellularInfoInterfaceModuleManufacturer OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular module manufacturer."
::={ teldatCellularInfoInterfaceEntry 2 }
teldatCellularInfoInterfaceModuleModel OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular module model."
::={ teldatCellularInfoInterfaceEntry 3 }
teldatCellularInfoInterfaceModuleFirmware OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular module firmware release."
::={ teldatCellularInfoInterfaceEntry 4 }
teldatCellularInfoInterfaceModuleIMEI OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular module IMEI."
::={ teldatCellularInfoInterfaceEntry 5 }
teldatCellularInfoInterfaceModuleIMSI OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular module IMSI."
::={ teldatCellularInfoInterfaceEntry 6 }
teldatCellularInfoInterfaceSIMId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular active SIM ID."
::={ teldatCellularInfoInterfaceEntry 7 }
teldatCellularInfoInterfaceSIMIcc OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular active SIM ICC."
::={ teldatCellularInfoInterfaceEntry 8 }
-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
-- Global Stats group Cellular monitoring variables
-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
teldatCellularStatObject OBJECT IDENTIFIER ::= { telProdNpMonInterfCellular 3 }
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Cellular State Table, interface variables
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
teldatCellularStateInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF TeldatCellularStateInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of Cellular interface state information."
::= { teldatCellularStatObject 1 }
teldatCellularStateInterfaceEntry OBJECT-TYPE
SYNTAX TeldatCellularStateInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A base list of objects that are interface state information."
INDEX { teldatCellularStateInterfaceIndex}
::= { teldatCellularStateInterfaceTable 1 }
TeldatCellularStateInterfaceEntry ::= SEQUENCE
{
teldatCellularStateInterfaceIndex INTEGER,
teldatCellularStateInterfaceState DisplayString,
teldatCellularStateInterfaceDropPing INTEGER,
teldatCellularStateInterfaceDropTrace INTEGER,
teldatCellularStateInterfaceDropTraffic INTEGER,
teldatCellularStateInterfaceTConnTime INTEGER,
teldatCellularStateInterfaceCConnTime INTEGER,
teldatCellularStateInterfaceCurDial DisplayString,
teldatCellularStateInterfaceNCall INTEGER,
teldatCellularStateInterfaceDestination DisplayString,
teldatCellularStateInterfaceTime2Sp INTEGER
}
teldatCellularStateInterfaceIndex OBJECT-TYPE
SYNTAX INTEGER(1 .. 255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular Interface index."
::={ teldatCellularStateInterfaceEntry 1 }
teldatCellularStateInterfaceState OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Call state."
::={ teldatCellularStateInterfaceEntry 2 }
teldatCellularStateInterfaceDropPing OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of calls dropped due to ping supervision."
::={ teldatCellularStateInterfaceEntry 3 }
teldatCellularStateInterfaceDropTrace OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of calls dropped due to traceroute supervision."
::={ teldatCellularStateInterfaceEntry 4 }
teldatCellularStateInterfaceDropTraffic OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of calls dropped due to traffic supervision."
::={ teldatCellularStateInterfaceEntry 5 }
teldatCellularStateInterfaceTConnTime OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total connection time ."
::={ teldatCellularStateInterfaceEntry 6 }
teldatCellularStateInterfaceCConnTime OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current connection time."
::={ teldatCellularStateInterfaceEntry 7 }
teldatCellularStateInterfaceCurDial OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current dial-profile used."
::={ teldatCellularStateInterfaceEntry 8 }
teldatCellularStateInterfaceNCall OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of processed calls."
::={ teldatCellularStateInterfaceEntry 9 }
teldatCellularStateInterfaceDestination OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Connection destination."
::={ teldatCellularStateInterfaceEntry 10 }
teldatCellularStateInterfaceTime2Sp OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time to establish the call."
::={ teldatCellularStateInterfaceEntry 11 }
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Cellular State Table, Mobile variables
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
teldatCellularStateMobileTable OBJECT-TYPE
SYNTAX SEQUENCE OF TeldatCellularStateMobileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of Cellular mobile state information."
::= { teldatCellularStatObject 2 }
teldatCellularStateMobileEntry OBJECT-TYPE
SYNTAX TeldatCellularStateMobileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A base list of objects that are mobile state information."
INDEX { teldatCellularStateMobileIndex }
::= { teldatCellularStateMobileTable 1 }
TeldatCellularStateMobileEntry ::= SEQUENCE
{
teldatCellularStateMobileIndex INTEGER,
teldatCellularStateMobileRegistrationState INTEGER,
teldatCellularStateMobilePublicLandMobileNtwCode INTEGER,
teldatCellularStateMobileCellLocationAreaCode INTEGER,
teldatCellularStateMobileCellId INTEGER,
teldatCellularStateMobileRadioTechnology DisplayString,
teldatCellularStateMobileRadioBand DisplayString,
teldatCellularStateMobileRxSignalCodePwr INTEGER,
teldatCellularStateMobileEnergyChipByPwrdnsty INTEGER,
teldatCellularStateMobileSignalQuality INTEGER,
teldatCellularStateMobileTemperature INTEGER,
teldatCellularStateMobileRxPackets INTEGER,
teldatCellularStateMobileRxBytes INTEGER,
teldatCellularStateMobileTxPackets INTEGER,
teldatCellularStateMobileTxBytes INTEGER,
teldatCellularStateMobileRxBpsLast1s INTEGER,
teldatCellularStateMobileTxBpsLast1s INTEGER,
teldatCellularStateMobileRxBpsLast1m INTEGER,
teldatCellularStateMobileTxBpsLast1m INTEGER,
teldatCellularStateMobileRxBpsLast5m INTEGER,
teldatCellularStateMobileTxBpsLast5m INTEGER,
teldatCellularStateMobileRxRSRP INTEGER,
teldatCellularStateMobileRxRSRQ INTEGER,
teldatCellularStateMobileRxSINR INTEGER,
teldatCellularStateMobileLTECellId INTEGER
}
teldatCellularStateMobileIndex OBJECT-TYPE
SYNTAX INTEGER(1 .. 255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile state index."
::={ teldatCellularStateMobileEntry 1 }
teldatCellularStateMobileRegistrationState OBJECT-TYPE
SYNTAX INTEGER {
searching(0),
home-network(1),
attaching(2),
denied(3),
unknown(4),
roaming(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile registration state ()."
::={ teldatCellularStateMobileEntry 2 }
teldatCellularStateMobilePublicLandMobileNtwCode OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Public land mobile network used (+COPS)."
::={ teldatCellularStateMobileEntry 3 }
teldatCellularStateMobileCellLocationAreaCode OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile cell location area code (+CGREG)."
::={ teldatCellularStateMobileEntry 4 }
teldatCellularStateMobileCellId OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile used cell id (+CGREG)."
::={ teldatCellularStateMobileEntry 5 }
teldatCellularStateMobileRadioTechnology OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile current radio access tecnology used (!GETRAT)."
::={ teldatCellularStateMobileEntry 6 }
teldatCellularStateMobileRadioBand OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile current active band (!GETBAND)."
::={ teldatCellularStateMobileEntry 7 }
teldatCellularStateMobileRxSignalCodePwr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile received signal code power (RSCP)."
::={ teldatCellularStateMobileEntry 8 }
teldatCellularStateMobileEnergyChipByPwrdnsty OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile total energy per chip per power density (EcNo)."
::={ teldatCellularStateMobileEntry 9 }
teldatCellularStateMobileSignalQuality OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile reception signal quality (+CSQ)."
::={ teldatCellularStateMobileEntry 10 }
teldatCellularStateMobileTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile temperature (!PCTEMP)."
::={ teldatCellularStateMobileEntry 11 }
teldatCellularStateMobileRxPackets OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data packtes received by the radio interface"
::={ teldatCellularStateMobileEntry 12 }
teldatCellularStateMobileRxBytes OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data bytes received by the radio interface"
::={ teldatCellularStateMobileEntry 13 }
teldatCellularStateMobileTxPackets OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data packtes sent by the radio interface"
::={ teldatCellularStateMobileEntry 14 }
teldatCellularStateMobileTxBytes OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data packtes sent by the radio interface"
::={ teldatCellularStateMobileEntry 15 }
teldatCellularStateMobileRxBpsLast1s OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Rx througput measured in the last second in bps"
::={ teldatCellularStateMobileEntry 16 }
teldatCellularStateMobileTxBpsLast1s OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Tx througput measured in the last second in bps"
::={ teldatCellularStateMobileEntry 17 }
teldatCellularStateMobileRxBpsLast1m OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Rx througput measured in the last minute in bps"
::={ teldatCellularStateMobileEntry 18 }
teldatCellularStateMobileTxBpsLast1m OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Tx througput measured in the last minute in bps"
::={ teldatCellularStateMobileEntry 19 }
teldatCellularStateMobileRxBpsLast5m OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Rx througput measured in the last five minutes in bps"
::={ teldatCellularStateMobileEntry 20 }
teldatCellularStateMobileTxBpsLast5m OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Tx througput measured in the last five minutes in bps"
::={ teldatCellularStateMobileEntry 21 }
teldatCellularStateMobileRxRSRP OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile reference symbol received power (RSRP)."
::={ teldatCellularStateMobileEntry 22 }
teldatCellularStateMobileRxRSRQ OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile reference signal received quality (RSRQ)."
::={ teldatCellularStateMobileEntry 23 }
teldatCellularStateMobileRxSINR OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile signal versus noise ratio (SINR)."
::={ teldatCellularStateMobileEntry 24 }
teldatCellularStateMobileLTECellId OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile used LTE cell id."
::={ teldatCellularStateMobileEntry 25 }
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Cellular SIM Management Table,
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
teldatCellularSIMMngTable OBJECT-TYPE
SYNTAX SEQUENCE OF TeldatCellularSIMMngEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of Cellular SIM Management information."
::= { teldatCellularStatObject 3 }
teldatCellularSIMMngEntry OBJECT-TYPE
SYNTAX TeldatCellularSIMMngEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A base list of objects that are sim management information."
INDEX { teldatCellularSIMMngIndex }
::= { teldatCellularSIMMngTable 1 }
TeldatCellularSIMMngEntry ::= SEQUENCE
{
teldatCellularSIMMngIndex INTEGER,
teldatCellularSIMMngCurrentSIMSocket INTEGER,
teldatCellularSIMMngMainSIMSocket INTEGER,
teldatCellularSIMMngSupervisionSIMSocket INTEGER,
teldatCellularSIMMngSIMImsiInfoSocket1 DisplayString,
teldatCellularSIMMngSIMIdInfoSocket1 DisplayString,
teldatCellularSIMMngSIMImsiInfoSocket2 DisplayString,
teldatCellularSIMMngSIMIdInfoSocket2 DisplayString
}
teldatCellularSIMMngIndex OBJECT-TYPE
SYNTAX INTEGER(1 .. 255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cellular mobile state index."
::={ teldatCellularSIMMngEntry 1 }
teldatCellularSIMMngCurrentSIMSocket OBJECT-TYPE
SYNTAX INTEGER {
external-socket1(0),
internal-socket2(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current SIM Socket."
::={ teldatCellularSIMMngEntry 2 }
teldatCellularSIMMngMainSIMSocket OBJECT-TYPE
SYNTAX INTEGER {
external-socket1(0),
internal-socket2(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Main SIM Socket."
::={ teldatCellularSIMMngEntry 3 }
teldatCellularSIMMngSupervisionSIMSocket OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Supervision SIM Socket state."
::={ teldatCellularSIMMngEntry 4 }
teldatCellularSIMMngSIMImsiInfoSocket1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IMSI of the SIM inserted in Socket1"
::={ teldatCellularSIMMngEntry 5 }
teldatCellularSIMMngSIMIdInfoSocket1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"SIM ID of the SIM inserted in Socket1"
::={ teldatCellularSIMMngEntry 6 }
teldatCellularSIMMngSIMImsiInfoSocket2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IMSI of the SIM inserted in Socket2"
::={ teldatCellularSIMMngEntry 7 }
teldatCellularSIMMngSIMIdInfoSocket2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"SIM ID of the SIM inserted in Socket2"
::={ teldatCellularSIMMngEntry 8 }
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Cellular Profile Dial Table,
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
teldatCellularProfDialTable OBJECT-TYPE
SYNTAX SEQUENCE OF TeldatCellularProfDialEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of Cellular Dial Profile information."
::= { teldatCellularStatObject 4 }
teldatCellularProfDialEntry OBJECT-TYPE
SYNTAX TeldatCellularProfDialEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of objects that show Dial Profile information"
INDEX { teldatCellularProfDialIfcIndex }
::= { teldatCellularProfDialTable 1 }
TeldatCellularProfDialEntry ::= SEQUENCE
{
teldatCellularProfDialIfcIndex INTEGER,
teldatCellularProfDialName1 DisplayString,
teldatCellularProfDialAPN1 DisplayString,
teldatCellularProfDialName2 DisplayString,
teldatCellularProfDialAPN2 DisplayString
}
teldatCellularProfDialIfcIndex OBJECT-TYPE
SYNTAX INTEGER(1 .. 255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Interface index."
::={ teldatCellularProfDialEntry 1 }
teldatCellularProfDialName1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Dial Profile Name(1) associated to cellular interface."
::={ teldatCellularProfDialEntry 2 }
teldatCellularProfDialAPN1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Access Point Name(1) associated to cellular interface."
::={ teldatCellularProfDialEntry 3 }
teldatCellularProfDialName2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Dial Profile Name(2) associated to cellular interface."
::={ teldatCellularProfDialEntry 4 }
teldatCellularProfDialAPN2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Access Point Name(2) associated to cellular interface."
::={ teldatCellularProfDialEntry 5 }
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Cellular Record Changes Table,
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
teldatCellularRecChangesTable OBJECT-TYPE
SYNTAX SEQUENCE OF TeldatCellularRecChangesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of Cellular record-changes information."
::= { teldatCellularStatObject 5 }
teldatCellularRecChangesEntry OBJECT-TYPE
SYNTAX TeldatCellularRecChangesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of objects that show information about cellular record-changes"
INDEX { teldatCellularRecChangesIfcIndex }
::= { teldatCellularRecChangesTable 1 }
TeldatCellularRecChangesEntry ::= SEQUENCE
{
teldatCellularRecChangesIfcIndex INTEGER,
teldatCellularRecChangesPLMNTimeStamp DisplayString,
teldatCellularRecChangesPLMNCode DisplayString
}
teldatCellularRecChangesIfcIndex OBJECT-TYPE
SYNTAX INTEGER(1 .. 255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Interface index."
::={ teldatCellularRecChangesEntry 1 }
teldatCellularRecChangesPLMNTimeStamp OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Display the timestamp of the latest change of Public Land Mobile Network (PLMN) code."
::={ teldatCellularRecChangesEntry 2 }
teldatCellularRecChangesPLMNCode OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Display the latest change of Public Land Mobile Network (PLMN) code."
::={ teldatCellularRecChangesEntry 3 }
END

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,778 @@
1.3.6.1.2.1.1.1.0|4|Router model RS123w-4G S/N: RNPFDK019380272 SWL: BASE Teldat (c)1996 - 2019
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2007.1.1.236
1.3.6.1.2.1.1.3.0|67|244698300
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.2.2.1.2.1|4|ethernet0/0
1.3.6.1.2.1.2.2.1.2.2|4|ethernet0/1
1.3.6.1.2.1.2.2.1.2.3|4|cellular0/0
1.3.6.1.2.1.2.2.1.2.4|4|cellular0/1
1.3.6.1.2.1.2.2.1.2.5|4|cellular0/2
1.3.6.1.2.1.2.2.1.2.6|4|cellular1/0
1.3.6.1.2.1.2.2.1.2.7|4|cellular1/1
1.3.6.1.2.1.2.2.1.2.8|4|cellular1/2
1.3.6.1.2.1.2.2.1.2.9|4|wlan0/0
1.3.6.1.2.1.2.2.1.2.10|4|ppp30
1.3.6.1.2.1.2.2.1.2.11|4|ppp40
1.3.6.1.2.1.2.2.1.2.12|4|direct-ip1
1.3.6.1.2.1.2.2.1.2.13|4|ethernet0/1.21
1.3.6.1.2.1.2.2.1.2.14|4|ethernet0/0.300
1.3.6.1.2.1.2.2.1.2.15|4|l2tp30
1.3.6.1.2.1.2.2.1.2.16|4|l2tp40
1.3.6.1.2.1.2.2.1.2.17|4|ethernet0/0.301
1.3.6.1.2.1.2.2.1.2.18|4|ethernet0/0.302
1.3.6.1.2.1.2.2.1.2.19|4|ethernet0/0.303
1.3.6.1.2.1.2.2.1.2.20|4|ethernet0/0.9
1.3.6.1.2.1.2.2.1.2.21|4|l2tp30
1.3.6.1.2.1.2.2.1.2.22|4|l2tp40
1.3.6.1.2.1.2.2.1.2.64536|4|Loopback interface
1.3.6.1.2.1.2.2.1.2.64537|4|Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0
1.3.6.1.2.1.2.2.1.2.64538|4|Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0
1.3.6.1.2.1.2.2.1.2.64539|4|Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0
1.3.6.1.2.1.2.2.1.2.64540|4|Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0
1.3.6.1.2.1.2.2.1.3.1|2|7
1.3.6.1.2.1.2.2.1.3.2|2|7
1.3.6.1.2.1.2.2.1.3.3|2|243
1.3.6.1.2.1.2.2.1.3.4|2|142
1.3.6.1.2.1.2.2.1.3.5|2|142
1.3.6.1.2.1.2.2.1.3.6|2|243
1.3.6.1.2.1.2.2.1.3.7|2|142
1.3.6.1.2.1.2.2.1.3.8|2|142
1.3.6.1.2.1.2.2.1.3.9|2|71
1.3.6.1.2.1.2.2.1.3.10|2|23
1.3.6.1.2.1.2.2.1.3.11|2|23
1.3.6.1.2.1.2.2.1.3.12|2|22
1.3.6.1.2.1.2.2.1.3.13|2|135
1.3.6.1.2.1.2.2.1.3.14|2|135
1.3.6.1.2.1.2.2.1.3.15|2|53
1.3.6.1.2.1.2.2.1.3.16|2|53
1.3.6.1.2.1.2.2.1.3.17|2|135
1.3.6.1.2.1.2.2.1.3.18|2|135
1.3.6.1.2.1.2.2.1.3.19|2|135
1.3.6.1.2.1.2.2.1.3.20|2|135
1.3.6.1.2.1.2.2.1.3.21|2|53
1.3.6.1.2.1.2.2.1.3.22|2|53
1.3.6.1.2.1.2.2.1.3.64536|2|24
1.3.6.1.2.1.2.2.1.3.64537|2|7
1.3.6.1.2.1.2.2.1.3.64538|2|7
1.3.6.1.2.1.2.2.1.3.64539|2|7
1.3.6.1.2.1.2.2.1.3.64540|2|7
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.4.3|2|2048
1.3.6.1.2.1.2.2.1.4.4|2|2048
1.3.6.1.2.1.2.2.1.4.5|2|2048
1.3.6.1.2.1.2.2.1.4.6|2|2048
1.3.6.1.2.1.2.2.1.4.7|2|2048
1.3.6.1.2.1.2.2.1.4.8|2|2048
1.3.6.1.2.1.2.2.1.4.9|2|1508
1.3.6.1.2.1.2.2.1.4.10|2|2048
1.3.6.1.2.1.2.2.1.4.11|2|2048
1.3.6.1.2.1.2.2.1.4.12|2|2048
1.3.6.1.2.1.2.2.1.4.13|2|1500
1.3.6.1.2.1.2.2.1.4.14|2|1500
1.3.6.1.2.1.2.2.1.4.15|2|2048
1.3.6.1.2.1.2.2.1.4.16|2|2048
1.3.6.1.2.1.2.2.1.4.17|2|1500
1.3.6.1.2.1.2.2.1.4.18|2|1500
1.3.6.1.2.1.2.2.1.4.19|2|1500
1.3.6.1.2.1.2.2.1.4.20|2|1500
1.3.6.1.2.1.2.2.1.4.21|2|2048
1.3.6.1.2.1.2.2.1.4.22|2|2048
1.3.6.1.2.1.2.2.1.4.64536|2|1500
1.3.6.1.2.1.2.2.1.4.64537|2|0
1.3.6.1.2.1.2.2.1.4.64538|2|0
1.3.6.1.2.1.2.2.1.4.64539|2|0
1.3.6.1.2.1.2.2.1.4.64540|2|0
1.3.6.1.2.1.2.2.1.6.1|4x|00A0F96924FE
1.3.6.1.2.1.2.2.1.6.2|4x|00A0F96924FF
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|000000000000
1.3.6.1.2.1.2.2.1.6.5|4x|000000000000
1.3.6.1.2.1.2.2.1.6.6|4|
1.3.6.1.2.1.2.2.1.6.7|4x|BE5E200B0104
1.3.6.1.2.1.2.2.1.6.8|4x|000000000000
1.3.6.1.2.1.2.2.1.6.9|4x|00A0F9692500
1.3.6.1.2.1.2.2.1.6.10|4x|00000000000000000000000000000000
1.3.6.1.2.1.2.2.1.6.11|4x|00000000000000000000000000000000
1.3.6.1.2.1.2.2.1.6.12|4x|BE5E200B0104
1.3.6.1.2.1.2.2.1.6.13|4x|00A0F96924FF
1.3.6.1.2.1.2.2.1.6.14|4x|00A0F96924FE
1.3.6.1.2.1.2.2.1.6.15|4|
1.3.6.1.2.1.2.2.1.6.16|4|
1.3.6.1.2.1.2.2.1.6.17|4x|00A0F969280A
1.3.6.1.2.1.2.2.1.6.18|4x|00A0F969280A
1.3.6.1.2.1.2.2.1.6.19|4x|00A0F969280A
1.3.6.1.2.1.2.2.1.6.20|4x|00A0F969280A
1.3.6.1.2.1.2.2.1.6.21|4|
1.3.6.1.2.1.2.2.1.6.22|4|
1.3.6.1.2.1.2.2.1.6.64536|4|
1.3.6.1.2.1.2.2.1.6.64537|4x|00000000000000000000000000000000
1.3.6.1.2.1.2.2.1.6.64538|4x|00000000000000000000000000000000
1.3.6.1.2.1.2.2.1.6.64539|4x|00000000000000000000000000000000
1.3.6.1.2.1.2.2.1.6.64540|4x|00000000000000000000000000000000
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.7.3|2|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.7.9|2|2
1.3.6.1.2.1.2.2.1.7.10|2|1
1.3.6.1.2.1.2.2.1.7.11|2|1
1.3.6.1.2.1.2.2.1.7.12|2|1
1.3.6.1.2.1.2.2.1.7.13|2|1
1.3.6.1.2.1.2.2.1.7.14|2|1
1.3.6.1.2.1.2.2.1.7.15|2|1
1.3.6.1.2.1.2.2.1.7.16|2|1
1.3.6.1.2.1.2.2.1.7.17|2|1
1.3.6.1.2.1.2.2.1.7.18|2|1
1.3.6.1.2.1.2.2.1.7.19|2|1
1.3.6.1.2.1.2.2.1.7.20|2|1
1.3.6.1.2.1.2.2.1.7.21|2|1
1.3.6.1.2.1.2.2.1.7.22|2|1
1.3.6.1.2.1.2.2.1.7.64536|2|1
1.3.6.1.2.1.2.2.1.7.64537|2|1
1.3.6.1.2.1.2.2.1.7.64538|2|1
1.3.6.1.2.1.2.2.1.7.64539|2|1
1.3.6.1.2.1.2.2.1.7.64540|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|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|2
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|1
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|7
1.3.6.1.2.1.2.2.1.8.11|2|7
1.3.6.1.2.1.2.2.1.8.12|2|1
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|2
1.3.6.1.2.1.2.2.1.8.16|2|2
1.3.6.1.2.1.2.2.1.8.17|2|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|2
1.3.6.1.2.1.2.2.1.8.22|2|2
1.3.6.1.2.1.2.2.1.8.64536|2|1
1.3.6.1.2.1.2.2.1.8.64537|2|1
1.3.6.1.2.1.2.2.1.8.64538|2|2
1.3.6.1.2.1.2.2.1.8.64539|2|2
1.3.6.1.2.1.2.2.1.8.64540|2|2
1.3.6.1.2.1.2.2.1.9.1|67|560
1.3.6.1.2.1.2.2.1.9.2|67|166949
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|406
1.3.6.1.2.1.2.2.1.9.5|67|406
1.3.6.1.2.1.2.2.1.9.6|67|3914
1.3.6.1.2.1.2.2.1.9.7|67|4006
1.3.6.1.2.1.2.2.1.9.8|67|406
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.9.11|67|0
1.3.6.1.2.1.2.2.1.9.12|67|4906
1.3.6.1.2.1.2.2.1.9.13|67|167009
1.3.6.1.2.1.2.2.1.9.14|67|611
1.3.6.1.2.1.2.2.1.9.15|67|0
1.3.6.1.2.1.2.2.1.9.16|67|0
1.3.6.1.2.1.2.2.1.9.17|67|609
1.3.6.1.2.1.2.2.1.9.18|67|609
1.3.6.1.2.1.2.2.1.9.19|67|609
1.3.6.1.2.1.2.2.1.9.20|67|609
1.3.6.1.2.1.2.2.1.9.21|67|11630
1.3.6.1.2.1.2.2.1.9.22|67|6507
1.3.6.1.2.1.2.2.1.9.64536|67|0
1.3.6.1.2.1.2.2.1.9.64537|67|500
1.3.6.1.2.1.2.2.1.9.64538|67|0
1.3.6.1.2.1.2.2.1.9.64539|67|0
1.3.6.1.2.1.2.2.1.9.64540|67|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.13.9|65|0
1.3.6.1.2.1.2.2.1.13.10|65|0
1.3.6.1.2.1.2.2.1.13.11|65|0
1.3.6.1.2.1.2.2.1.13.12|65|0
1.3.6.1.2.1.2.2.1.13.13|65|0
1.3.6.1.2.1.2.2.1.13.14|65|0
1.3.6.1.2.1.2.2.1.13.15|65|0
1.3.6.1.2.1.2.2.1.13.16|65|0
1.3.6.1.2.1.2.2.1.13.17|65|0
1.3.6.1.2.1.2.2.1.13.18|65|0
1.3.6.1.2.1.2.2.1.13.19|65|0
1.3.6.1.2.1.2.2.1.13.20|65|0
1.3.6.1.2.1.2.2.1.13.21|65|0
1.3.6.1.2.1.2.2.1.13.22|65|0
1.3.6.1.2.1.2.2.1.13.64536|65|0
1.3.6.1.2.1.2.2.1.13.64537|65|0
1.3.6.1.2.1.2.2.1.13.64538|65|0
1.3.6.1.2.1.2.2.1.13.64539|65|0
1.3.6.1.2.1.2.2.1.13.64540|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|0
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.14.11|65|0
1.3.6.1.2.1.2.2.1.14.12|65|0
1.3.6.1.2.1.2.2.1.14.13|65|0
1.3.6.1.2.1.2.2.1.14.14|65|0
1.3.6.1.2.1.2.2.1.14.15|65|0
1.3.6.1.2.1.2.2.1.14.16|65|0
1.3.6.1.2.1.2.2.1.14.17|65|8
1.3.6.1.2.1.2.2.1.14.18|65|0
1.3.6.1.2.1.2.2.1.14.19|65|0
1.3.6.1.2.1.2.2.1.14.20|65|0
1.3.6.1.2.1.2.2.1.14.21|65|0
1.3.6.1.2.1.2.2.1.14.22|65|0
1.3.6.1.2.1.2.2.1.14.64536|65|0
1.3.6.1.2.1.2.2.1.14.64537|65|0
1.3.6.1.2.1.2.2.1.14.64538|65|0
1.3.6.1.2.1.2.2.1.14.64539|65|0
1.3.6.1.2.1.2.2.1.14.64540|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.19.11|65|0
1.3.6.1.2.1.2.2.1.19.12|65|0
1.3.6.1.2.1.2.2.1.19.13|65|0
1.3.6.1.2.1.2.2.1.19.14|65|0
1.3.6.1.2.1.2.2.1.19.15|65|0
1.3.6.1.2.1.2.2.1.19.16|65|0
1.3.6.1.2.1.2.2.1.19.17|65|0
1.3.6.1.2.1.2.2.1.19.18|65|0
1.3.6.1.2.1.2.2.1.19.19|65|0
1.3.6.1.2.1.2.2.1.19.20|65|0
1.3.6.1.2.1.2.2.1.19.21|65|0
1.3.6.1.2.1.2.2.1.19.22|65|0
1.3.6.1.2.1.2.2.1.19.64536|65|0
1.3.6.1.2.1.2.2.1.19.64537|65|0
1.3.6.1.2.1.2.2.1.19.64538|65|0
1.3.6.1.2.1.2.2.1.19.64539|65|0
1.3.6.1.2.1.2.2.1.19.64540|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|0
1.3.6.1.2.1.2.2.1.20.10|65|0
1.3.6.1.2.1.2.2.1.20.11|65|0
1.3.6.1.2.1.2.2.1.20.12|65|0
1.3.6.1.2.1.2.2.1.20.13|65|2
1.3.6.1.2.1.2.2.1.20.14|65|0
1.3.6.1.2.1.2.2.1.20.15|65|0
1.3.6.1.2.1.2.2.1.20.16|65|0
1.3.6.1.2.1.2.2.1.20.17|65|0
1.3.6.1.2.1.2.2.1.20.18|65|0
1.3.6.1.2.1.2.2.1.20.19|65|0
1.3.6.1.2.1.2.2.1.20.20|65|0
1.3.6.1.2.1.2.2.1.20.21|65|0
1.3.6.1.2.1.2.2.1.20.22|65|0
1.3.6.1.2.1.2.2.1.20.64536|65|0
1.3.6.1.2.1.2.2.1.20.64537|65|0
1.3.6.1.2.1.2.2.1.20.64538|65|0
1.3.6.1.2.1.2.2.1.20.64539|65|0
1.3.6.1.2.1.2.2.1.20.64540|65|0
1.3.6.1.2.1.10.7.2.1.19.1|2|3
1.3.6.1.2.1.10.7.2.1.19.2|2|3
1.3.6.1.2.1.31.1.1.1.1.1|4|ethernet0/0
1.3.6.1.2.1.31.1.1.1.1.2|4|ethernet0/1
1.3.6.1.2.1.31.1.1.1.1.3|4|cellular0/0
1.3.6.1.2.1.31.1.1.1.1.4|4|cellular0/1
1.3.6.1.2.1.31.1.1.1.1.5|4|cellular0/2
1.3.6.1.2.1.31.1.1.1.1.6|4|cellular1/0
1.3.6.1.2.1.31.1.1.1.1.7|4|cellular1/1
1.3.6.1.2.1.31.1.1.1.1.8|4|cellular1/2
1.3.6.1.2.1.31.1.1.1.1.9|4|wlan0/0
1.3.6.1.2.1.31.1.1.1.1.10|4|ppp30
1.3.6.1.2.1.31.1.1.1.1.11|4|ppp40
1.3.6.1.2.1.31.1.1.1.1.12|4|direct-ip1
1.3.6.1.2.1.31.1.1.1.1.13|4|ethernet0/1.21
1.3.6.1.2.1.31.1.1.1.1.14|4|ethernet0/0.300
1.3.6.1.2.1.31.1.1.1.1.15|4|l2tp30
1.3.6.1.2.1.31.1.1.1.1.16|4|l2tp40
1.3.6.1.2.1.31.1.1.1.1.17|4|ethernet0/0.301
1.3.6.1.2.1.31.1.1.1.1.18|4|ethernet0/0.302
1.3.6.1.2.1.31.1.1.1.1.19|4|ethernet0/0.303
1.3.6.1.2.1.31.1.1.1.1.20|4|ethernet0/0.9
1.3.6.1.2.1.31.1.1.1.1.21|4|l2tp30
1.3.6.1.2.1.31.1.1.1.1.22|4|l2tp40
1.3.6.1.2.1.31.1.1.1.1.64536|4|Loopback Interface
1.3.6.1.2.1.31.1.1.1.1.64537|4|ethernet0/0
1.3.6.1.2.1.31.1.1.1.1.64538|4|ethernet0/0
1.3.6.1.2.1.31.1.1.1.1.64539|4|ethernet0/0
1.3.6.1.2.1.31.1.1.1.1.64540|4|ethernet0/0
1.3.6.1.2.1.31.1.1.1.2.1|65|1304970
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.8|65|0
1.3.6.1.2.1.31.1.1.1.2.9|65|0
1.3.6.1.2.1.31.1.1.1.2.10|65|0
1.3.6.1.2.1.31.1.1.1.2.11|65|0
1.3.6.1.2.1.31.1.1.1.2.12|65|0
1.3.6.1.2.1.31.1.1.1.2.13|65|0
1.3.6.1.2.1.31.1.1.1.2.14|65|1304969
1.3.6.1.2.1.31.1.1.1.2.15|65|0
1.3.6.1.2.1.31.1.1.1.2.16|65|0
1.3.6.1.2.1.31.1.1.1.2.17|65|266312
1.3.6.1.2.1.31.1.1.1.2.18|65|0
1.3.6.1.2.1.31.1.1.1.2.19|65|405089
1.3.6.1.2.1.31.1.1.1.2.20|65|0
1.3.6.1.2.1.31.1.1.1.2.21|65|0
1.3.6.1.2.1.31.1.1.1.2.22|65|0
1.3.6.1.2.1.31.1.1.1.2.64536|65|0
1.3.6.1.2.1.31.1.1.1.2.64537|65|0
1.3.6.1.2.1.31.1.1.1.2.64538|65|0
1.3.6.1.2.1.31.1.1.1.2.64539|65|0
1.3.6.1.2.1.31.1.1.1.2.64540|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.8|65|0
1.3.6.1.2.1.31.1.1.1.3.9|65|0
1.3.6.1.2.1.31.1.1.1.3.10|65|0
1.3.6.1.2.1.31.1.1.1.3.11|65|0
1.3.6.1.2.1.31.1.1.1.3.12|65|0
1.3.6.1.2.1.31.1.1.1.3.13|65|0
1.3.6.1.2.1.31.1.1.1.3.14|65|0
1.3.6.1.2.1.31.1.1.1.3.15|65|0
1.3.6.1.2.1.31.1.1.1.3.16|65|0
1.3.6.1.2.1.31.1.1.1.3.17|65|216087
1.3.6.1.2.1.31.1.1.1.3.18|65|164169
1.3.6.1.2.1.31.1.1.1.3.19|65|55641
1.3.6.1.2.1.31.1.1.1.3.20|65|0
1.3.6.1.2.1.31.1.1.1.3.21|65|0
1.3.6.1.2.1.31.1.1.1.3.22|65|0
1.3.6.1.2.1.31.1.1.1.3.64536|65|0
1.3.6.1.2.1.31.1.1.1.3.64537|65|0
1.3.6.1.2.1.31.1.1.1.3.64538|65|0
1.3.6.1.2.1.31.1.1.1.3.64539|65|0
1.3.6.1.2.1.31.1.1.1.3.64540|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.8|65|0
1.3.6.1.2.1.31.1.1.1.4.9|65|0
1.3.6.1.2.1.31.1.1.1.4.10|65|0
1.3.6.1.2.1.31.1.1.1.4.11|65|0
1.3.6.1.2.1.31.1.1.1.4.12|65|0
1.3.6.1.2.1.31.1.1.1.4.13|65|0
1.3.6.1.2.1.31.1.1.1.4.14|65|0
1.3.6.1.2.1.31.1.1.1.4.15|65|0
1.3.6.1.2.1.31.1.1.1.4.16|65|0
1.3.6.1.2.1.31.1.1.1.4.17|65|0
1.3.6.1.2.1.31.1.1.1.4.18|65|0
1.3.6.1.2.1.31.1.1.1.4.19|65|0
1.3.6.1.2.1.31.1.1.1.4.20|65|0
1.3.6.1.2.1.31.1.1.1.4.21|65|0
1.3.6.1.2.1.31.1.1.1.4.22|65|0
1.3.6.1.2.1.31.1.1.1.4.64536|65|0
1.3.6.1.2.1.31.1.1.1.4.64537|65|0
1.3.6.1.2.1.31.1.1.1.4.64538|65|0
1.3.6.1.2.1.31.1.1.1.4.64539|65|0
1.3.6.1.2.1.31.1.1.1.4.64540|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|1
1.3.6.1.2.1.31.1.1.1.5.2|65|3
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.8|65|0
1.3.6.1.2.1.31.1.1.1.5.9|65|0
1.3.6.1.2.1.31.1.1.1.5.10|65|0
1.3.6.1.2.1.31.1.1.1.5.11|65|0
1.3.6.1.2.1.31.1.1.1.5.12|65|0
1.3.6.1.2.1.31.1.1.1.5.13|65|3
1.3.6.1.2.1.31.1.1.1.5.14|65|1
1.3.6.1.2.1.31.1.1.1.5.15|65|0
1.3.6.1.2.1.31.1.1.1.5.16|65|0
1.3.6.1.2.1.31.1.1.1.5.17|65|156691
1.3.6.1.2.1.31.1.1.1.5.18|65|18
1.3.6.1.2.1.31.1.1.1.5.19|65|9941
1.3.6.1.2.1.31.1.1.1.5.20|65|0
1.3.6.1.2.1.31.1.1.1.5.21|65|0
1.3.6.1.2.1.31.1.1.1.5.22|65|0
1.3.6.1.2.1.31.1.1.1.5.64536|65|0
1.3.6.1.2.1.31.1.1.1.5.64537|65|0
1.3.6.1.2.1.31.1.1.1.5.64538|65|0
1.3.6.1.2.1.31.1.1.1.5.64539|65|0
1.3.6.1.2.1.31.1.1.1.5.64540|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|2186535162
1.3.6.1.2.1.31.1.1.1.6.2|70|5394281116
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|0
1.3.6.1.2.1.31.1.1.1.6.5|70|0
1.3.6.1.2.1.31.1.1.1.6.6|70|22922485
1.3.6.1.2.1.31.1.1.1.6.7|70|13906586
1.3.6.1.2.1.31.1.1.1.6.8|70|0
1.3.6.1.2.1.31.1.1.1.6.9|70|0
1.3.6.1.2.1.31.1.1.1.6.10|70|0
1.3.6.1.2.1.31.1.1.1.6.11|70|0
1.3.6.1.2.1.31.1.1.1.6.12|70|12392561
1.3.6.1.2.1.31.1.1.1.6.13|70|5467303451
1.3.6.1.2.1.31.1.1.1.6.14|70|2232569748
1.3.6.1.2.1.31.1.1.1.6.15|70|0
1.3.6.1.2.1.31.1.1.1.6.16|70|0
1.3.6.1.2.1.31.1.1.1.6.17|70|705421909
1.3.6.1.2.1.31.1.1.1.6.18|70|1079074857
1.3.6.1.2.1.31.1.1.1.6.19|70|3843930696
1.3.6.1.2.1.31.1.1.1.6.20|70|0
1.3.6.1.2.1.31.1.1.1.6.21|70|225111
1.3.6.1.2.1.31.1.1.1.6.22|70|16788
1.3.6.1.2.1.31.1.1.1.6.64536|70|0
1.3.6.1.2.1.31.1.1.1.6.64537|70|0
1.3.6.1.2.1.31.1.1.1.6.64538|70|0
1.3.6.1.2.1.31.1.1.1.6.64539|70|0
1.3.6.1.2.1.31.1.1.1.6.64540|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|5969961
1.3.6.1.2.1.31.1.1.1.7.2|70|8586022
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|0
1.3.6.1.2.1.31.1.1.1.7.5|70|0
1.3.6.1.2.1.31.1.1.1.7.6|70|327707
1.3.6.1.2.1.31.1.1.1.7.7|70|108084
1.3.6.1.2.1.31.1.1.1.7.8|70|0
1.3.6.1.2.1.31.1.1.1.7.9|70|0
1.3.6.1.2.1.31.1.1.1.7.10|70|0
1.3.6.1.2.1.31.1.1.1.7.11|70|0
1.3.6.1.2.1.31.1.1.1.7.12|70|108071
1.3.6.1.2.1.31.1.1.1.7.13|70|8586013
1.3.6.1.2.1.31.1.1.1.7.14|70|5969961
1.3.6.1.2.1.31.1.1.1.7.15|70|0
1.3.6.1.2.1.31.1.1.1.7.16|70|0
1.3.6.1.2.1.31.1.1.1.7.17|70|1973485
1.3.6.1.2.1.31.1.1.1.7.18|70|5926849
1.3.6.1.2.1.31.1.1.1.7.19|70|13562815
1.3.6.1.2.1.31.1.1.1.7.20|70|0
1.3.6.1.2.1.31.1.1.1.7.21|70|388
1.3.6.1.2.1.31.1.1.1.7.22|70|51
1.3.6.1.2.1.31.1.1.1.7.64536|70|0
1.3.6.1.2.1.31.1.1.1.7.64537|70|0
1.3.6.1.2.1.31.1.1.1.7.64538|70|0
1.3.6.1.2.1.31.1.1.1.7.64539|70|0
1.3.6.1.2.1.31.1.1.1.7.64540|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|1304970
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.8|70|0
1.3.6.1.2.1.31.1.1.1.8.9|70|0
1.3.6.1.2.1.31.1.1.1.8.10|70|0
1.3.6.1.2.1.31.1.1.1.8.11|70|0
1.3.6.1.2.1.31.1.1.1.8.12|70|0
1.3.6.1.2.1.31.1.1.1.8.13|70|0
1.3.6.1.2.1.31.1.1.1.8.14|70|1304969
1.3.6.1.2.1.31.1.1.1.8.15|70|0
1.3.6.1.2.1.31.1.1.1.8.16|70|0
1.3.6.1.2.1.31.1.1.1.8.17|70|266312
1.3.6.1.2.1.31.1.1.1.8.18|70|0
1.3.6.1.2.1.31.1.1.1.8.19|70|405089
1.3.6.1.2.1.31.1.1.1.8.20|70|0
1.3.6.1.2.1.31.1.1.1.8.21|70|0
1.3.6.1.2.1.31.1.1.1.8.22|70|0
1.3.6.1.2.1.31.1.1.1.8.64536|70|0
1.3.6.1.2.1.31.1.1.1.8.64537|70|0
1.3.6.1.2.1.31.1.1.1.8.64538|70|0
1.3.6.1.2.1.31.1.1.1.8.64539|70|0
1.3.6.1.2.1.31.1.1.1.8.64540|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.8|70|0
1.3.6.1.2.1.31.1.1.1.9.9|70|0
1.3.6.1.2.1.31.1.1.1.9.10|70|0
1.3.6.1.2.1.31.1.1.1.9.11|70|0
1.3.6.1.2.1.31.1.1.1.9.12|70|0
1.3.6.1.2.1.31.1.1.1.9.13|70|0
1.3.6.1.2.1.31.1.1.1.9.14|70|0
1.3.6.1.2.1.31.1.1.1.9.15|70|0
1.3.6.1.2.1.31.1.1.1.9.16|70|0
1.3.6.1.2.1.31.1.1.1.9.17|70|216087
1.3.6.1.2.1.31.1.1.1.9.18|70|164169
1.3.6.1.2.1.31.1.1.1.9.19|70|55641
1.3.6.1.2.1.31.1.1.1.9.20|70|0
1.3.6.1.2.1.31.1.1.1.9.21|70|0
1.3.6.1.2.1.31.1.1.1.9.22|70|0
1.3.6.1.2.1.31.1.1.1.9.64536|70|0
1.3.6.1.2.1.31.1.1.1.9.64537|70|0
1.3.6.1.2.1.31.1.1.1.9.64538|70|0
1.3.6.1.2.1.31.1.1.1.9.64539|70|0
1.3.6.1.2.1.31.1.1.1.9.64540|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|5182480647
1.3.6.1.2.1.31.1.1.1.10.2|70|2500185570
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|0
1.3.6.1.2.1.31.1.1.1.10.5|70|0
1.3.6.1.2.1.31.1.1.1.10.6|70|6382266
1.3.6.1.2.1.31.1.1.1.10.7|70|0
1.3.6.1.2.1.31.1.1.1.10.8|70|0
1.3.6.1.2.1.31.1.1.1.10.9|70|0
1.3.6.1.2.1.31.1.1.1.10.10|70|0
1.3.6.1.2.1.31.1.1.1.10.11|70|0
1.3.6.1.2.1.31.1.1.1.10.12|70|0
1.3.6.1.2.1.31.1.1.1.10.13|70|2464041292
1.3.6.1.2.1.31.1.1.1.10.14|70|5182480647
1.3.6.1.2.1.31.1.1.1.10.15|70|0
1.3.6.1.2.1.31.1.1.1.10.16|70|0
1.3.6.1.2.1.31.1.1.1.10.17|70|2402290473
1.3.6.1.2.1.31.1.1.1.10.18|70|1373959023
1.3.6.1.2.1.31.1.1.1.10.19|70|57165143424
1.3.6.1.2.1.31.1.1.1.10.20|70|0
1.3.6.1.2.1.31.1.1.1.10.21|70|247651
1.3.6.1.2.1.31.1.1.1.10.22|70|149
1.3.6.1.2.1.31.1.1.1.10.64536|70|0
1.3.6.1.2.1.31.1.1.1.10.64537|70|0
1.3.6.1.2.1.31.1.1.1.10.64538|70|0
1.3.6.1.2.1.31.1.1.1.10.64539|70|0
1.3.6.1.2.1.31.1.1.1.10.64540|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|6613778
1.3.6.1.2.1.31.1.1.1.11.2|70|9036279
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|0
1.3.6.1.2.1.31.1.1.1.11.5|70|0
1.3.6.1.2.1.31.1.1.1.11.6|70|163661
1.3.6.1.2.1.31.1.1.1.11.7|70|0
1.3.6.1.2.1.31.1.1.1.11.8|70|0
1.3.6.1.2.1.31.1.1.1.11.9|70|0
1.3.6.1.2.1.31.1.1.1.11.10|70|0
1.3.6.1.2.1.31.1.1.1.11.11|70|0
1.3.6.1.2.1.31.1.1.1.11.12|70|0
1.3.6.1.2.1.31.1.1.1.11.13|70|9036286
1.3.6.1.2.1.31.1.1.1.11.14|70|6613778
1.3.6.1.2.1.31.1.1.1.11.15|70|0
1.3.6.1.2.1.31.1.1.1.11.16|70|0
1.3.6.1.2.1.31.1.1.1.11.17|70|2841890
1.3.6.1.2.1.31.1.1.1.11.18|70|5124477
1.3.6.1.2.1.31.1.1.1.11.19|70|41725176
1.3.6.1.2.1.31.1.1.1.11.20|70|0
1.3.6.1.2.1.31.1.1.1.11.21|70|1141
1.3.6.1.2.1.31.1.1.1.11.22|70|10
1.3.6.1.2.1.31.1.1.1.11.64536|70|0
1.3.6.1.2.1.31.1.1.1.11.64537|70|0
1.3.6.1.2.1.31.1.1.1.11.64538|70|0
1.3.6.1.2.1.31.1.1.1.11.64539|70|0
1.3.6.1.2.1.31.1.1.1.11.64540|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.12.3|70|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.8|70|0
1.3.6.1.2.1.31.1.1.1.12.9|70|0
1.3.6.1.2.1.31.1.1.1.12.10|70|0
1.3.6.1.2.1.31.1.1.1.12.11|70|0
1.3.6.1.2.1.31.1.1.1.12.12|70|0
1.3.6.1.2.1.31.1.1.1.12.13|70|0
1.3.6.1.2.1.31.1.1.1.12.14|70|0
1.3.6.1.2.1.31.1.1.1.12.15|70|0
1.3.6.1.2.1.31.1.1.1.12.16|70|0
1.3.6.1.2.1.31.1.1.1.12.17|70|0
1.3.6.1.2.1.31.1.1.1.12.18|70|0
1.3.6.1.2.1.31.1.1.1.12.19|70|0
1.3.6.1.2.1.31.1.1.1.12.20|70|0
1.3.6.1.2.1.31.1.1.1.12.21|70|0
1.3.6.1.2.1.31.1.1.1.12.22|70|0
1.3.6.1.2.1.31.1.1.1.12.64536|70|0
1.3.6.1.2.1.31.1.1.1.12.64537|70|0
1.3.6.1.2.1.31.1.1.1.12.64538|70|0
1.3.6.1.2.1.31.1.1.1.12.64539|70|0
1.3.6.1.2.1.31.1.1.1.12.64540|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|1
1.3.6.1.2.1.31.1.1.1.13.2|70|3
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.8|70|0
1.3.6.1.2.1.31.1.1.1.13.9|70|0
1.3.6.1.2.1.31.1.1.1.13.10|70|0
1.3.6.1.2.1.31.1.1.1.13.11|70|0
1.3.6.1.2.1.31.1.1.1.13.12|70|0
1.3.6.1.2.1.31.1.1.1.13.13|70|3
1.3.6.1.2.1.31.1.1.1.13.14|70|1
1.3.6.1.2.1.31.1.1.1.13.15|70|0
1.3.6.1.2.1.31.1.1.1.13.16|70|0
1.3.6.1.2.1.31.1.1.1.13.17|70|156691
1.3.6.1.2.1.31.1.1.1.13.18|70|18
1.3.6.1.2.1.31.1.1.1.13.19|70|9941
1.3.6.1.2.1.31.1.1.1.13.20|70|0
1.3.6.1.2.1.31.1.1.1.13.21|70|0
1.3.6.1.2.1.31.1.1.1.13.22|70|0
1.3.6.1.2.1.31.1.1.1.13.64536|70|0
1.3.6.1.2.1.31.1.1.1.13.64537|70|0
1.3.6.1.2.1.31.1.1.1.13.64538|70|0
1.3.6.1.2.1.31.1.1.1.13.64539|70|0
1.3.6.1.2.1.31.1.1.1.13.64540|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|1000
1.3.6.1.2.1.31.1.1.1.15.3|66|0
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|1
1.3.6.1.2.1.31.1.1.1.15.8|66|0
1.3.6.1.2.1.31.1.1.1.15.9|66|0
1.3.6.1.2.1.31.1.1.1.15.10|66|0
1.3.6.1.2.1.31.1.1.1.15.11|66|0
1.3.6.1.2.1.31.1.1.1.15.12|66|1
1.3.6.1.2.1.31.1.1.1.15.13|66|1000
1.3.6.1.2.1.31.1.1.1.15.14|66|1000
1.3.6.1.2.1.31.1.1.1.15.15|66|0
1.3.6.1.2.1.31.1.1.1.15.16|66|0
1.3.6.1.2.1.31.1.1.1.15.17|66|1000
1.3.6.1.2.1.31.1.1.1.15.18|66|1000
1.3.6.1.2.1.31.1.1.1.15.19|66|1000
1.3.6.1.2.1.31.1.1.1.15.20|66|1000
1.3.6.1.2.1.31.1.1.1.15.21|66|0
1.3.6.1.2.1.31.1.1.1.15.22|66|0
1.3.6.1.2.1.31.1.1.1.15.64536|66|10
1.3.6.1.2.1.31.1.1.1.15.64537|66|0
1.3.6.1.2.1.31.1.1.1.15.64538|66|0
1.3.6.1.2.1.31.1.1.1.15.64539|66|0
1.3.6.1.2.1.31.1.1.1.15.64540|66|0
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|== LAN: UTILIZADORES ==
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|== LAN: IMPRESSORAS ==
1.3.6.1.2.1.31.1.1.1.18.18|4|== LAN: TELEFONES ==
1.3.6.1.2.1.31.1.1.1.18.19|4|== LAN: EQUIPAMENTOS VAS ==
1.3.6.1.2.1.31.1.1.1.18.20|4|== LAN: APP ==
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.64536|4|
1.3.6.1.2.1.31.1.1.1.18.64537|4|
1.3.6.1.2.1.31.1.1.1.18.64538|4|
1.3.6.1.2.1.31.1.1.1.18.64539|4|
1.3.6.1.2.1.31.1.1.1.18.64540|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.8|67|0
1.3.6.1.2.1.31.1.1.1.19.9|67|0
1.3.6.1.2.1.31.1.1.1.19.10|67|0
1.3.6.1.2.1.31.1.1.1.19.11|67|0
1.3.6.1.2.1.31.1.1.1.19.12|67|0
1.3.6.1.2.1.31.1.1.1.19.13|67|0
1.3.6.1.2.1.31.1.1.1.19.14|67|0
1.3.6.1.2.1.31.1.1.1.19.15|67|0
1.3.6.1.2.1.31.1.1.1.19.16|67|0
1.3.6.1.2.1.31.1.1.1.19.17|67|0
1.3.6.1.2.1.31.1.1.1.19.18|67|0
1.3.6.1.2.1.31.1.1.1.19.19|67|0
1.3.6.1.2.1.31.1.1.1.19.20|67|0
1.3.6.1.2.1.31.1.1.1.19.21|67|0
1.3.6.1.2.1.31.1.1.1.19.22|67|0
1.3.6.1.2.1.31.1.1.1.19.64536|67|0
1.3.6.1.2.1.31.1.1.1.19.64537|67|0
1.3.6.1.2.1.31.1.1.1.19.64538|67|0
1.3.6.1.2.1.31.1.1.1.19.64539|67|0
1.3.6.1.2.1.31.1.1.1.19.64540|67|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.3|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.4|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.5|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.6|66|1828
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.7|66|1828
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.8|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.3|2|-113
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.4|2|-113
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.5|2|-113
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.6|2|-57
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.7|2|-57
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.8|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.3|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.4|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.5|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.6|2|-85
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.7|2|-85
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.8|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.3|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.4|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.5|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.6|2|-8
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.7|2|-8
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.8|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.3|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.4|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.5|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.6|2|20
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.7|2|20
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.8|2|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.3|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.4|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.5|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.6|66|139
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.7|66|139
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.8|66|0
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.3|4|---
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.4|4|---
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.5|4|---
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.6|4|---
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.7|4|backup.tmn.pt
1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.8|4|---
1.3.6.1.6.3.10.2.1.3.0|2|2446980

File diff suppressed because it is too large Load Diff