Convert opengear to YAML-based discovery, add some new sensors, add test data (#10553)

* Update opengear MIBs to latest version.

* Replace PHP signal discovery with YAML.

* Update Opengear YAML with new sensors.

* Add test data for Opengear.

* Add the test data json for Opengear.

* Named to numbered index to avoid data loss.
This commit is contained in:
Martijn Schmidt
2019-08-27 23:54:08 +02:00
committed by Tony Murray
parent 852647198b
commit 3a891ba727
9 changed files with 2829 additions and 66 deletions

View File

@@ -0,0 +1,65 @@
mib: OG-STATUSv2-MIB
modules:
sensors:
pre-cache:
data:
- oid:
- ogCellModemTable
- ogEmdTemperatureTable
temperature:
data:
-
oid: ogEmdTemperatureTable
value: ogEmdTemperatureValue
num_oid: '.1.3.6.1.4.1.25049.17.9.1.5.{{ $index }}'
descr: ogEmdTemperatureName
index: 'ogEmdTemperatureValue.{{ $index }}'
signal:
data:
-
oid: ogCellModemTable
value: ogCellModem3gRssi
num_oid: '.1.3.6.1.4.1.25049.17.17.1.11.{{ $index }}'
descr: 'Cellular 3G Modem RSSI'
index: '11.{{ $index }}'
-
oid: ogCellModemTable
value: ogCellModem4gRssi
num_oid: '.1.3.6.1.4.1.25049.17.17.1.12.{{ $index }}'
descr: 'Cellular 4G Modem RSSI'
index: '12.{{ $index }}'
count:
data:
-
oid: ogCellModemTable
value: ogCellModemSelectedSimCard
num_oid: '.1.3.6.1.4.1.25049.17.17.1.14.{{ $index }}'
descr: 'Selected Active SIM Card'
index: 'ogCellModemSelectedSimCard.{{ $index }}'
state:
data:
-
oid: ogCellModemTable
value: ogCellModemConnected
num_oid: '.1.3.6.1.4.1.25049.17.17.1.5.{{ $index }}'
descr: 'Modem Connection State'
index: 'ogCellModemConnected.{{ $index }}'
state_name: ogCellModemConnected
states:
- { value: 1, descr: Connected, graph: 1, generic: 0 }
- { value: 2, descr: Disconnected, graph: 2, generic: 2 }
-
oid: ogCellModemTable
value: ogCellModemRadioTechnology
num_oid: '.1.3.6.1.4.1.25049.17.17.1.9.{{ $index }}'
descr: 'Radio Access Technology'
index: 'ogCellModemRadioTechnology.{{ $index }}'
skip_values: 1
state_name: ogCellModemRadioTechnology
states:
- { value: 1, descr: Unavailable, graph: 1, generic: 3 }
- { value: 2, descr: CDMA, graph: 2, generic: 0 }
- { value: 3, descr: EVDO, graph: 3, generic: 0 }
- { value: 4, descr: GSM, graph: 4, generic: 0 }
- { value: 5, descr: UMTS, graph: 5, generic: 0 }
- { value: 6, descr: LTE, graph: 6, generic: 0 }

View File

@@ -2,6 +2,8 @@ os: opengear
text: Opengear
type: 'OOB Management'
icon: opengear
over:
- { graph: device_signal, text: 'Signal' }
mib_dir:
- opengear
discovery:

View File

@@ -1,50 +0,0 @@
<?php
/**
* opengear.inc.php
*
* LibreNMS signal sensor discovery module for Opengear 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 <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2017 Lorenzo Zafra
* @author Lorenzo Zafra<zafra@ualberta.ca>
*/
// 3G Signal
$threeG_signal = trim(snmp_get($device, 'ogCellModem3gRssi.1', '-Oqv', 'OG-STATUSv2-MIB'), '" ');
if (!empty($threeG_signal)) {
$divisor = 1;
$index = '11.1';
$descr = 'Cellular 3G RSSI';
$type = 'opengear';
$oid = '.1.3.6.1.4.1.25049.17.17.1.11.1';
$current_value = $threeG_signal / $divisor;
discover_sensor($valid['sensor'], 'signal', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current_value);
}
// 4G Signal
$fourG_signal = trim(snmp_get($device, 'ogCellModem4gRssi.1', '-Oqv', 'OG-STATUSv2-MIB'), '" ');
if (!empty($fourG_signal)) {
$divisor = 1;
$index = '12.1';
$descr = 'Cellular 4G RSSI';
$type = 'opengear';
$oid = '.1.3.6.1.4.1.25049.17.17.1.12.1';
$current_value = $fourG_signal / $divisor;
discover_sensor($valid['sensor'], 'signal', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current_value);
}

View File

@@ -2,7 +2,7 @@
-- == OG-PRODUCTS-MIB: ==
-- == Opengear Product Management Information Base ==
-- == ==
-- == (c) Copyright 2005-2014 Opengear Inc. ==
-- == (c) Copyright 2005-2018 Opengear Inc. ==
-- =====================================================================
OG-PRODUCTS-MIB DEFINITIONS ::= BEGIN
@@ -14,7 +14,7 @@ IMPORTS
FROM SNMPv2-SMI;
ogProductsMib MODULE-IDENTITY
LAST-UPDATED "201602100000Z"
LAST-UPDATED "201806150000Z"
ORGANIZATION "Opengear Inc."
CONTACT-INFO
"Opengear Inc.
@@ -23,6 +23,12 @@ ogProductsMib MODULE-IDENTITY
support@opengear.com"
DESCRIPTION
"Opengear Product MIB"
REVISION "201806150000Z"
DESCRIPTION
"Add Lighthouse 5 target to the MIB."
REVISION "201606270000Z"
DESCRIPTION
"Add CM7196 target to the MIB."
REVISION "201602100000Z"
DESCRIPTION
"Add CM71xx target to the MIB."
@@ -46,6 +52,7 @@ ogCM4002 OBJECT IDENTIFIER ::= { ogProducts 2 }
ogCM4008 OBJECT IDENTIFIER ::= { ogProducts 3 }
ogCM41xx OBJECT IDENTIFIER ::= { ogProducts 10 }
ogCM71xx OBJECT IDENTIFIER ::= { ogProducts 11 }
ogCM7196 OBJECT IDENTIFIER ::= { ogProducts 12 }
ogSD4001 OBJECT IDENTIFIER ::= { ogProducts 20 }
ogSD4002 OBJECT IDENTIFIER ::= { ogProducts 21 }
ogSD4008 OBJECT IDENTIFIER ::= { ogProducts 22 }
@@ -55,6 +62,7 @@ ogCD OBJECT IDENTIFIER ::= { ogProducts 30 }
ogCMx86 OBJECT IDENTIFIER ::= { ogProducts 31 }
ogCMS61xx OBJECT IDENTIFIER ::= { ogProducts 40 }
ogLighthouse OBJECT IDENTIFIER ::= { ogProducts 41 }
ogLighthouse5 OBJECT IDENTIFIER ::= { ogProducts 42 }
ogIM4004 OBJECT IDENTIFIER ::= { ogProducts 50 }
ogIM42xx OBJECT IDENTIFIER ::= { ogProducts 60 }
ogIM72xx OBJECT IDENTIFIER ::= { ogProducts 61 }

View File

@@ -1,7 +1,7 @@
-- ====================================================================
-- = OG-SMI-MIB: Enterprise structure of management information =
-- = =
-- = (c) Copyright 2005-2014 Opengear Inc. =
-- = (c) Copyright 2005-2018 Opengear Inc. =
-- ====================================================================
OG-SMI-MIB DEFINITIONS ::= BEGIN
@@ -14,7 +14,7 @@ IMPORTS
-- Top Level for Opengear Enterprise
opengear MODULE-IDENTITY
LAST-UPDATED "201311150000Z"
LAST-UPDATED "201806150000Z"
ORGANIZATION "Opengear Inc."
CONTACT-INFO
"Opengear Inc.
@@ -23,6 +23,10 @@ opengear MODULE-IDENTITY
support@opengear.com"
DESCRIPTION
"Opengear Structure of Management Information MIB"
REVISION "201806150000Z"
DESCRIPTION
"Add a new OID root for Lighthouse 5 and newer
management platform specifics."
REVISION "201311150000Z"
DESCRIPTION
"Re-structured MIB adding more information
@@ -119,4 +123,11 @@ ogModules OBJECT-IDENTITY
from which MODULE-IDENTITY values may be assigned."
::= { opengear 11 }
ogSpecific OBJECT-IDENTITY
STATUS current
DESCRIPTION
"ogSpecific provides a root object identifier
from Lighthouse version 5 and later."
::= { opengear 18 }
END

View File

@@ -2,7 +2,7 @@
-- == OG-STATUSv2-MIB: ==
-- == Opengear status Management Information Base ==
-- == ==
-- == (c) Copyright 2013-2014 Opengear Inc. ==
-- == (c) Copyright 2013-2017 Opengear Inc. ==
-- =====================================================================
OG-STATUSv2-MIB DEFINITIONS ::= BEGIN
@@ -20,7 +20,7 @@ IMPORTS
FROM SNMPv2-TC;
ogStatus2 MODULE-IDENTITY
LAST-UPDATED "201401280000Z"
LAST-UPDATED "201702030000Z"
ORGANIZATION "Opengear Inc."
CONTACT-INFO
"Opengear Inc.
@@ -29,6 +29,12 @@ ogStatus2 MODULE-IDENTITY
support@opengear.com"
DESCRIPTION
"Opengear extended status and alert MIB"
REVISION "201702030000Z"
DESCRIPTION
"Add CLI session alert."
REVISION "201608260000Z"
DESCRIPTION
"Correct Power Supply table and values."
REVISION "201401280000Z"
DESCRIPTION
"Initial revision"
@@ -576,7 +582,7 @@ ogWebUserTable OBJECT-TYPE
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity's serial port users table."
"This entity's Web Interface users table."
::= { ogStatus2 7 }
ogWebUserEntry OBJECT-TYPE
@@ -584,7 +590,7 @@ ogWebUserEntry OBJECT-TYPE
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A user logged in on the serial port"
"A user logged in to the Web Interface"
INDEX { ogWebUserIndex }
::= { ogWebUserTable 1 }
@@ -601,7 +607,7 @@ ogWebUserIndex OBJECT-TYPE
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index within the network host active users table"
"Index within the Web Interface users table"
::= { ogWebUserEntry 1 }
ogWebUserStartTime OBJECT-TYPE
@@ -986,7 +992,8 @@ ogEmdDioDirection OBJECT-TYPE
ogEmdDioState OBJECT-TYPE
SYNTAX INTEGER {
high(1),
low(2)
low(2),
unavailable(3)
}
MAX-ACCESS read-only
STATUS current
@@ -1131,16 +1138,16 @@ ogPowerSupplyInputVoltage OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current temperature of the Power Supply"
"Input voltage of the Power Supply"
::= { ogPowerSupplyEntry 3 }
ogPowerSupplyOutputCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "milliamps"
UNITS "0.01 Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current temperature of the Power Supply"
"Output current of the Power Supply"
::= { ogPowerSupplyEntry 4 }
ogPowerSupplyTemperature OBJECT-TYPE
@@ -1149,7 +1156,7 @@ ogPowerSupplyTemperature OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current temperature of the Power Supply"
"Temperature of the Power Supply"
::= { ogPowerSupplyEntry 5 }
ogUpsTable OBJECT-TYPE
@@ -1820,7 +1827,8 @@ CellModemEntry ::= SEQUENCE {
ogCellModemSessionTime Counter32,
ogCellModemSelectedSimCard Counter32,
ogCellModemTemperature Integer32,
ogCellModemCounter Counter32
ogCellModemCounter Counter32,
ogCellModemIMSI DisplayString
}
ogCellModemIndex OBJECT-TYPE
@@ -1968,6 +1976,14 @@ ogCellModemCounter OBJECT-TYPE
"The number of alerts the modem has triggered."
::= { ogCellModemEntry 16 }
ogCellModemIMSI OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IMSI of the SIM currently in use by the Cellular Modem."
::= { ogCellModemEntry 17 }
ogWifiClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF WifiClientEntry
MAX-ACCESS not-accessible
@@ -2497,6 +2513,7 @@ ogCheckType OBJECT-TYPE
wirelessApAssociation(34),
wirelessApAuthentication(35),
dialPoolHealth(36),
cliUser(37),
custom(255)
}
MAX-ACCESS read-only
@@ -2757,6 +2774,7 @@ ogAlarmType OBJECT-TYPE
wirelessApDisassociation(87),
wirelessApAuthenticationFailure(88),
dialPoolHealth(89),
cliUserSession(90),
customCheckFailure(255),
unknown(65535)
}
@@ -3002,6 +3020,7 @@ ogCurrentAlarmType OBJECT-TYPE
wirelessApDisassociation(87),
wirelessApAuthenticationFailure(88),
dialPoolHealth(89),
cliUserSession(90),
customCheckFailure(255),
unknown(65535)
}
@@ -3786,6 +3805,28 @@ ogCustomNotification NOTIFICATION-TYPE
"The notification sent when a custom check is triggered."
::= { ogMibNotifications 33 }
ogCliUserSessionNotification NOTIFICATION-TYPE
OBJECTS {
ogAlarmEventId,
ogAlarmName,
ogAlarmCheck,
ogAlarmInstance,
ogAlarmTime,
ogAlarmType,
ogAlarmSummary,
ogAlarmDevice,
ogAlarmUser,
ogAlarmTriggerValue,
ogAlarmCurrentValue,
ogAlarmPreviousValue,
ogAlarmState
}
STATUS current
DESCRIPTION
"The notification sent when a user logs in or out of a CLI
session."
::= { ogMibNotifications 34 }
-- End notifications
-- conformance information
@@ -3957,6 +3998,7 @@ ogBasicStatusGroup OBJECT-GROUP
ogCellModemSelectedSimCard,
ogCellModemTemperature,
ogCellModemCounter,
ogCellModemIMSI,
ogWifiClientInterface,
ogWifiClientEnabled,
ogWifiClientEssid,
@@ -4074,7 +4116,8 @@ ogBasicNotificationGroup NOTIFICATION-GROUP
ogWifiApAssociationNotification,
ogWifiApAuthNotification,
ogDialPoolHealthNotification,
ogCustomNotification
ogCustomNotification,
ogCliUserSessionNotification
}
STATUS current
DESCRIPTION

View File

@@ -62,6 +62,9 @@ ogDialPoolMib OBJECT IDENTIFIER ::= {
ogCustomMib OBJECT IDENTIFIER ::= {
ogLegacyMgmt 115
}
ogCliMib OBJECT IDENTIFIER ::= {
ogLegacyMgmt 116
}
--
-- v1 Trap contents
@@ -218,6 +221,7 @@ ogAlarmType OBJECT-TYPE
wirelessApDisassociation(87),
wirelessApAuthenticationFailure(88),
dialPoolHealth(89),
cliUserSession(90),
customCheckFailure(255),
unknown(65535)
}
@@ -1174,4 +1178,38 @@ ogCustomNotification TRAP-TYPE
"A notification sent when a custom check alarm occurs."
::= 33
-- CLI Session Alarms
ogCliMibObjects OBJECT IDENTIFIER ::= {
ogCliMib 1
}
ogCliEvent OBJECT IDENTIFIER ::= {
ogCliMibObjects 1
}
ogCliEventTable OBJECT IDENTIFIER ::= {
ogCliEvent 1
}
ogCliEventEntry OBJECT IDENTIFIER ::= {
ogCliEventTable 1
}
ogCliUserNotification TRAP-TYPE
ENTERPRISE opengear
VARIABLES {
ogAlarmEventId,
ogAlarmName,
ogAlarmCheck,
ogAlarmInstance,
ogAlarmTime,
ogAlarmType,
ogAlarmSummary,
ogAlarmDevice,
ogAlarmTriggerValue,
ogAlarmCurrentValue,
ogAlarmPreviousValue,
ogAlarmState
}
DESCRIPTION
"An alarm sent when a user connection to CLI session occurs"
::= 34
END

2167
tests/data/opengear.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,2 +1,481 @@
1.3.6.1.2.1.1.1.0|4|Linux TS-LAB-1 3.10.0-uc0 #1 Mon Nov 14 16:53:28 EST 2016 armv4tl
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.25049.1.81
1.3.6.1.2.1.1.3.0|67|268903851
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|eth0
1.3.6.1.2.1.2.2.1.2.3|4|eth1
1.3.6.1.2.1.2.2.1.2.6|4|wwan0
1.3.6.1.2.1.2.2.1.2.7|4|wwan1
1.3.6.1.2.1.2.2.1.2.8|4|wwan0
1.3.6.1.2.1.2.2.1.2.9|4|wwan1
1.3.6.1.2.1.2.2.1.2.16|4|wwan0
1.3.6.1.2.1.2.2.1.2.17|4|wwan1
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|6
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.6|2|1
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|1
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.16|2|1
1.3.6.1.2.1.2.2.1.3.17|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
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|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|1430
1.3.6.1.2.1.2.2.1.4.9|2|1500
1.3.6.1.2.1.2.2.1.4.16|2|1430
1.3.6.1.2.1.2.2.1.4.17|2|1500
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|0013C6045828
1.3.6.1.2.1.2.2.1.6.3|4x|0013C6045829
1.3.6.1.2.1.2.2.1.6.6|4|
1.3.6.1.2.1.2.2.1.6.7|4x|92262EEAF3B3
1.3.6.1.2.1.2.2.1.6.8|4|
1.3.6.1.2.1.2.2.1.6.9|4x|92262EEAF3B3
1.3.6.1.2.1.2.2.1.6.16|4|
1.3.6.1.2.1.2.2.1.6.17|4x|9A5766DEEE51
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|2
1.3.6.1.2.1.2.2.1.7.6|2|2
1.3.6.1.2.1.2.2.1.7.7|2|2
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.16|2|1
1.3.6.1.2.1.2.2.1.7.17|2|2
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.6|2|2
1.3.6.1.2.1.2.2.1.8.7|2|2
1.3.6.1.2.1.2.2.1.8.8|2|1
1.3.6.1.2.1.2.2.1.8.9|2|2
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|2
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.6|67|3010
1.3.6.1.2.1.2.2.1.9.7|67|3010
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.16|67|0
1.3.6.1.2.1.2.2.1.9.17|67|0
1.3.6.1.2.1.2.2.1.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.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.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.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.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.16|65|0
1.3.6.1.2.1.2.2.1.14.17|65|0
1.3.6.1.2.1.2.2.1.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.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.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.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.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.16|65|0
1.3.6.1.2.1.2.2.1.20.17|65|0
1.3.6.1.2.1.4.3.0|65|757573
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|757542
1.3.6.1.2.1.4.10.0|65|785792
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|28
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|0
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|0
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.192.168.16.4|2|2
1.3.6.1.2.1.4.20.1.2.192.168.27.4|2|2
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.20.1.3.192.168.16.4|64|255.255.255.0
1.3.6.1.2.1.4.20.1.3.192.168.27.4|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.2.192.168.16.1|4x|748EF8A94841
1.3.6.1.2.1.4.22.1.2.2.192.168.27.1|4x|00005E000110
1.3.6.1.2.1.4.31.1.1.3.1|65|757594
1.3.6.1.2.1.4.31.1.1.3.2|65|0
1.3.6.1.2.1.4.31.1.1.4.1|70|757594
1.3.6.1.2.1.4.31.1.1.4.2|70|0
1.3.6.1.2.1.4.31.1.1.6.1|70|0
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|0
1.3.6.1.2.1.4.31.1.1.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|0
1.3.6.1.2.1.4.31.1.1.13.2|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.14.2|65|0
1.3.6.1.2.1.4.31.1.1.15.1|65|0
1.3.6.1.2.1.4.31.1.1.15.2|65|0
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.16.2|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.17.2|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|757563
1.3.6.1.2.1.4.31.1.1.18.2|65|0
1.3.6.1.2.1.4.31.1.1.19.1|70|757563
1.3.6.1.2.1.4.31.1.1.19.2|70|0
1.3.6.1.2.1.4.31.1.1.20.1|65|785814
1.3.6.1.2.1.4.31.1.1.20.2|65|0
1.3.6.1.2.1.4.31.1.1.21.1|70|785814
1.3.6.1.2.1.4.31.1.1.21.2|70|0
1.3.6.1.2.1.4.31.1.1.22.1|65|28
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.24.2|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.25.2|65|0
1.3.6.1.2.1.4.31.1.1.27.1|65|0
1.3.6.1.2.1.4.31.1.1.27.2|65|0
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|0
1.3.6.1.2.1.4.31.1.1.29.2|65|0
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.46.2|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|30000
1.3.6.1.2.1.4.31.1.1.47.2|66|30000
1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128
1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2
1.3.6.1.2.1.4.35.1.4.2.1.4.192.168.16.1|4x|748EF8A94841
1.3.6.1.2.1.4.35.1.4.2.1.4.192.168.27.1|4x|00005E000110
1.3.6.1.2.1.5.1.0|65|85607
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|0
1.3.6.1.2.1.5.4.0|65|490
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|0
1.3.6.1.2.1.5.9.0|65|85117
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|0
1.3.6.1.2.1.5.15.0|65|85132
1.3.6.1.2.1.5.16.0|65|0
1.3.6.1.2.1.5.17.0|65|15
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|0
1.3.6.1.2.1.5.23.0|65|85117
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.6.5.0|65|0
1.3.6.1.2.1.6.6.0|65|10473
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|1
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|142432
1.3.6.1.2.1.6.11.0|65|157216
1.3.6.1.2.1.6.12.0|65|2
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|0
1.3.6.1.2.1.7.1.0|65|529552
1.3.6.1.2.1.7.2.0|65|1
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|543566
1.3.6.1.2.1.11.1.0|65|381980
1.3.6.1.2.1.11.2.0|65|381979
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|2979953
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|108646
1.3.6.1.2.1.11.16.0|65|232
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|0
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|381983
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|2
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.25.1.1.0|67|320132069
1.3.6.1.2.1.25.1.4.0|4|console=null ubi.mtd=ubi root=/dev/mtdblock10
1.3.6.1.2.1.25.1.5.0|66|0
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|eth0
1.3.6.1.2.1.31.1.1.1.1.3|4|eth1
1.3.6.1.2.1.31.1.1.1.1.6|4|wwan0
1.3.6.1.2.1.31.1.1.1.1.7|4|wwan1
1.3.6.1.2.1.31.1.1.1.1.8|4|wwan0
1.3.6.1.2.1.31.1.1.1.1.9|4|wwan1
1.3.6.1.2.1.31.1.1.1.1.16|4|wwan0
1.3.6.1.2.1.31.1.1.1.1.17|4|wwan1
1.3.6.1.2.1.31.1.1.1.2.1|65|0
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.2.3|65|0
1.3.6.1.2.1.31.1.1.1.2.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.16|65|0
1.3.6.1.2.1.31.1.1.1.2.17|65|0
1.3.6.1.2.1.31.1.1.1.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.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.16|65|0
1.3.6.1.2.1.31.1.1.1.3.17|65|0
1.3.6.1.2.1.31.1.1.1.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.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.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.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.5.3|65|0
1.3.6.1.2.1.31.1.1.1.5.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.16|65|0
1.3.6.1.2.1.31.1.1.1.5.17|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|0
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.6.3|70|0
1.3.6.1.2.1.31.1.1.1.6.6|70|0
1.3.6.1.2.1.31.1.1.1.6.7|70|0
1.3.6.1.2.1.31.1.1.1.6.8|70|160698
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.16|70|0
1.3.6.1.2.1.31.1.1.1.6.17|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|0
1.3.6.1.2.1.31.1.1.1.7.2|70|0
1.3.6.1.2.1.31.1.1.1.7.3|70|0
1.3.6.1.2.1.31.1.1.1.7.6|70|0
1.3.6.1.2.1.31.1.1.1.7.7|70|0
1.3.6.1.2.1.31.1.1.1.7.8|70|508
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.16|70|0
1.3.6.1.2.1.31.1.1.1.7.17|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.8.3|70|0
1.3.6.1.2.1.31.1.1.1.8.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.16|70|0
1.3.6.1.2.1.31.1.1.1.8.17|70|0
1.3.6.1.2.1.31.1.1.1.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.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.16|70|0
1.3.6.1.2.1.31.1.1.1.9.17|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|0
1.3.6.1.2.1.31.1.1.1.10.2|70|188507858
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.6|70|0
1.3.6.1.2.1.31.1.1.1.10.7|70|0
1.3.6.1.2.1.31.1.1.1.10.8|70|96743313
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.16|70|0
1.3.6.1.2.1.31.1.1.1.10.17|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|0
1.3.6.1.2.1.31.1.1.1.11.2|70|934359
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.6|70|0
1.3.6.1.2.1.31.1.1.1.11.7|70|0
1.3.6.1.2.1.31.1.1.1.11.8|70|290561
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.16|70|0
1.3.6.1.2.1.31.1.1.1.11.17|70|0
1.3.6.1.2.1.31.1.1.1.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.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.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.13.1|70|0
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.13.3|70|0
1.3.6.1.2.1.31.1.1.1.13.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.16|70|0
1.3.6.1.2.1.31.1.1.1.13.17|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|0
1.3.6.1.2.1.31.1.1.1.14.2|2|0
1.3.6.1.2.1.31.1.1.1.14.3|2|0
1.3.6.1.2.1.31.1.1.1.14.6|2|0
1.3.6.1.2.1.31.1.1.1.14.7|2|0
1.3.6.1.2.1.31.1.1.1.14.8|2|0
1.3.6.1.2.1.31.1.1.1.14.9|2|0
1.3.6.1.2.1.31.1.1.1.14.16|2|0
1.3.6.1.2.1.31.1.1.1.14.17|2|0
1.3.6.1.2.1.31.1.1.1.15.1|66|0
1.3.6.1.2.1.31.1.1.1.15.2|66|0
1.3.6.1.2.1.31.1.1.1.15.3|66|0
1.3.6.1.2.1.31.1.1.1.15.6|66|0
1.3.6.1.2.1.31.1.1.1.15.7|66|0
1.3.6.1.2.1.31.1.1.1.15.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.16|66|0
1.3.6.1.2.1.31.1.1.1.15.17|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|0
1.3.6.1.2.1.31.1.1.1.16.2|2|0
1.3.6.1.2.1.31.1.1.1.16.3|2|0
1.3.6.1.2.1.31.1.1.1.16.6|2|0
1.3.6.1.2.1.31.1.1.1.16.7|2|0
1.3.6.1.2.1.31.1.1.1.16.8|2|0
1.3.6.1.2.1.31.1.1.1.16.9|2|0
1.3.6.1.2.1.31.1.1.1.16.16|2|0
1.3.6.1.2.1.31.1.1.1.16.17|2|0
1.3.6.1.2.1.31.1.1.1.17.1|2|0
1.3.6.1.2.1.31.1.1.1.17.2|2|0
1.3.6.1.2.1.31.1.1.1.17.3|2|0
1.3.6.1.2.1.31.1.1.1.17.6|2|0
1.3.6.1.2.1.31.1.1.1.17.7|2|0
1.3.6.1.2.1.31.1.1.1.17.8|2|0
1.3.6.1.2.1.31.1.1.1.17.9|2|0
1.3.6.1.2.1.31.1.1.1.17.16|2|0
1.3.6.1.2.1.31.1.1.1.17.17|2|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.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.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.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.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.16|67|0
1.3.6.1.2.1.31.1.1.1.19.17|67|0
1.3.6.1.4.1.2021.4.3.0|2|0
1.3.6.1.4.1.2021.4.4.0|2|0
1.3.6.1.4.1.2021.4.5.0|2|253932
1.3.6.1.4.1.2021.4.6.0|2|163012
1.3.6.1.4.1.2021.4.11.0|2|163012
1.3.6.1.4.1.2021.4.13.0|2|0
1.3.6.1.4.1.2021.4.14.0|2|8984
1.3.6.1.4.1.2021.4.15.0|2|29040
1.3.6.1.4.1.2021.10.1.5.1|2|0
1.3.6.1.4.1.2021.10.1.5.2|2|3
1.3.6.1.4.1.2021.10.1.5.3|2|5
1.3.6.1.4.1.2021.11.1.0|2|1
1.3.6.1.4.1.2021.11.2.0|4|systemStats
1.3.6.1.4.1.2021.11.3.0|2|0
1.3.6.1.4.1.2021.11.4.0|2|0
1.3.6.1.4.1.2021.11.5.0|2|0
1.3.6.1.4.1.2021.11.6.0|2|0
1.3.6.1.4.1.2021.11.7.0|2|7
1.3.6.1.4.1.2021.11.8.0|2|6
1.3.6.1.4.1.2021.11.9.0|2|2
1.3.6.1.4.1.2021.11.10.0|2|3
1.3.6.1.4.1.2021.11.11.0|2|94
1.3.6.1.4.1.2021.11.50.0|65|4474190
1.3.6.1.4.1.2021.11.51.0|65|0
1.3.6.1.4.1.2021.11.52.0|65|6565966
1.3.6.1.4.1.2021.11.53.0|65|309092572
1.3.6.1.4.1.2021.11.54.0|65|166
1.3.6.1.4.1.2021.11.55.0|65|6467526
1.3.6.1.4.1.2021.11.56.0|65|0
1.3.6.1.4.1.2021.11.57.0|65|0
1.3.6.1.4.1.2021.11.58.0|65|20104
1.3.6.1.4.1.2021.11.59.0|65|581653703
1.3.6.1.4.1.2021.11.60.0|65|662464370
1.3.6.1.4.1.2021.11.61.0|65|98440
1.3.6.1.4.1.2021.11.62.0|65|0
1.3.6.1.4.1.2021.11.63.0|65|0
1.3.6.1.4.1.25049.17.1.1|4|4.3.0 f5ad8650 ()
1.3.6.1.4.1.25049.17.1.2|4|70081804019547
1.3.6.1.4.1.25049.17.9.1.2.1.1|6|0.3.6.1.4.1.25049.17.9.1.1.1
1.3.6.1.4.1.25049.17.9.1.3.1.1|4|Internal environmental sensor
1.3.6.1.4.1.25049.17.9.1.4.1.1|4|User-configured EMD description
1.3.6.1.4.1.25049.17.9.1.5.1.1|2|32
1.3.6.1.4.1.25049.17.17.1.2.1|4|Sierra Wireless, Incorporated
1.3.6.1.4.1.25049.17.17.1.3.1|4|MC7304
1.3.6.1.4.1.25049.17.17.1.4.1|2|1
1.3.6.1.4.1.25049.17.17.1.5.1|2|2
1.3.6.1.4.1.25049.17.17.1.9.1|2|5
1.3.6.1.4.1.25049.17.17.1.10.1|4|apn-name
1.3.6.1.4.1.25049.17.17.1.11.1|2|-76
1.3.6.1.4.1.25049.17.17.1.12.1|2|-67
1.3.6.1.4.1.25049.17.17.1.13.1|65|12
1.3.6.1.4.1.25049.17.17.1.14.1|65|1
1.3.6.1.4.1.25049.17.17.1.16.1|65|0
1.3.6.1.4.1.25049.17.17.1.17.1|4|204080811045920
1.3.6.1.6.3.10.2.1.3.0|2|2689039