Add support for Nokia ISAM (#9793)

* add mibs,first commit

* adds support for Nokia ISAM Plattform

* remove some comments

* change os polling to multi oid

* Restore file headers

* Fix discovery by sysObjectID

* first deactivate checks against IHUB (timos), It not necessary so long we can not provide more thatn one snmp community per device

* move snmp state and temperature from pre-cache

* Update os_schema.json
This commit is contained in:
Vitali Kari
2019-02-13 03:23:02 +01:00
committed by Tony Murray
parent fe4bd2b338
commit d60a0da7de
22 changed files with 48088 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
mib: ASAM-SYSTEM-MIB:ASAM-EQUIP-MIB
modules :
processors:
data:
-
oid: cpu
value: cpuLoadAverage
num_oid: '.1.3.6.1.4.1.637.61.1.9.29.1.1.4.{{ $index }}'
descr: CPU {{ $index }}
sensors:
state:
data:
-
oid: eqptFanMode
num_oid: .1.3.6.1.4.1.637.61.1.23.1.9.0
descr: Fan Mode
state_name: fanMode
states:
- { value: 0, generic: 0, graph: 0, descr: default }
- { value: 1, generic: 1, graph: 0, descr: eco }
- { value: 2, generic: 0, graph: 0, descr: protect }
- { value: 3, generic: 0, graph: 0, descr: classic }

View File

@@ -0,0 +1,24 @@
os: nokia-isam
text: 'NOKIA ISAM'
type: network
icon: nokia
group: nokia
bad_ifXEntry:
- NFXS-E
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.637.61
mib_dir:
- nokia
bad_iftype:
- aluGponOnu
- bridge
- ieee8023adLag
- l2vlan
- slip
- softwareLoopback

View File

@@ -0,0 +1,45 @@
<?php
/*
* LibreNMS Nokia ISAM RAM discovery module
*
* 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.
*/
if ($device['os'] == 'nokia-isam') {
echo 'Nokia ISAM Memory: ';
$slotTable = [
'4352' => 'acu:1/1/',
'4353' => 'nt-a:',
'4354' => 'nt-b:',
'4355' => 'lt:1/1/1/',
'4356' => 'lt:1/1/2/',
'4357' => 'lt:1/1/3/',
'4358' => 'lt:1/1/4/',
'4359' => 'lt:1/1/5/',
'4360' => 'lt:1/1/6/',
'4361' => 'lt:1/1/7/',
'4362' => 'lt:1/1/8/',
'4481' => '4481' // FIXME define this
];
$array = snmpwalk_cache_multi_oid($device, 'mem', null, 'ASAM-SYSTEM-MIB');
if (is_array($array)) {
foreach ($array as $index => $entry) {
if (is_numeric($entry['memAbsoluteUsage']) && is_numeric($entry['totalMemSize'])) {
list($entPhysicalIndex) = explode('.', $index);
$entPhysicalName = $entPhysicalIndex;
$descr = $slotTable[$index].' Memory ('.$index.')';
discover_mempool($valid_mempool, $device, $index, 'nokia-isam', $descr, '1', $entPhysicalIndex, null);
}
}
}
}

View File

@@ -0,0 +1,30 @@
<?php
$multiplier = 1;
$divisor = 1;
foreach ($pre_cache['nokiaIsamSfpPort'] as $slotId => $slot) {
$slotName = $pre_cache['nokiaIsamSlot'][$slotId]['numBasedSlot'];
foreach ($slot as $portId => $port) {
$portName = $slotName.$port['numBasedPort'];
if (is_numeric($port['sfpDiagRxPower'])) {
$oid = '.1.3.6.1.4.1.637.61.1.56.5.1.7.'.$slotId.'.'.$portId;
$descr = $portName.' Rx Power';
$limit_low = ($port['sfpDiagRSSIRxPowerAlmLow']/$divisor) ?: -22;
$warn_limit_low = ($port['sfpDiagRSSIRxPowerWarnLow']/$divisor) ?: -20;
$limit = ($port['sfpDiagRSSIRxPowerAlmHigh']/$divisor) ?: -3;
$warn_limit = ($port['sfpDiagRSSIRxPowerWarnHigh']/$divisor) ?: -5;
$value = $port['sfpDiagRxPower']/$divisor;
discover_sensor($valid['sensor'], 'dbm', $device, $oid, $portName.'-rx', 'nokia-isam', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
if (is_numeric($port['sfpDiagTxPower'])) {
$oid = '.1.3.6.1.4.1.637.61.1.56.5.1.6.'.$slotId.'.'.$portId;
$descr = $portName.' Tx Power';
$limit_low = ($port['sfpDiagRSSITxPowerAlmLow']/$divisor) ?: -9;
$warn_limit_low = ($port['sfpDiagRSSITxPowerWarnLow']/$divisor) ?: -8;
$limit = ($port['sfpDiagRSSITxPowerAlmHigh']/$divisor) ?: -3;
$warn_limit = ($port['sfpDiagRSSITxPowerWarnHigh']/$divisor) ?: -4;
$value = $port['sfpDiagTxPower']/$divisor;
discover_sensor($valid['sensor'], 'dbm', $device, $oid, $portName.'-tx', 'nokia-isam', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
}
}

View File

@@ -0,0 +1,68 @@
<?php
echo 'ISAM Slot/Port Mapping ';
// Slot mapping
// FIXME Hardcoded to Num Based Slot Numbering. This should be pulled from SNMP
$slotTable = [
'4352' => 'acu:1/1/',
'4353' => 'nt-a:',
'4354' => 'nt-b:',
'4355' => 'lt:1/1/1/',
'4356' => 'lt:1/1/2/',
'4357' => 'lt:1/1/3/',
'4358' => 'lt:1/1/4/',
'4359' => 'lt:1/1/5/',
'4360' => 'lt:1/1/6/',
'4361' => 'lt:1/1/7/',
'4362' => 'lt:1/1/8/',
'4481' => '4481' // FIXME define this
];
$pre_cache['nokiaIsamSlot'] = snmpwalk_cache_multi_oid($device, 'eqptBoardContainerOffset', [], 'ASAM-EQUIP-MIB', 'nokia');
$pre_cache['nokiaIsamSlot'] = snmpwalk_cache_multi_oid($device, 'eqptBoardIfSlotId', $pre_cache['nokiaIsamSlot'], 'ASAM-EQUIP-MIB', 'nokia');
foreach ($pre_cache['nokiaIsamSlot'] as $slotId => $slot) {
$pre_cache['nokiaIsamSlot'][$slotId]['numBasedSlot'] = $slotTable[$slotId];
}
// Port mapping
// FIXME Hardcoded Port Numbering for FANT-F NT Card.
$portTable = [
'257' => 'xfp:1',
'258' => 'xfp:2',
'259' => 'xfp:3',
'260' => 'xfp:4'
];
// dbm pre cache
$pre_cache['nokiaIsamSfpPort'] = snmpwalk_cache_twopart_oid($device, 'sfpDiagAvailable', [], 'SFP-MIB', 'nokia');
foreach ($pre_cache['nokiaIsamSfpPort'] as $slotId => $slot) {
foreach ($slot as $portId => $port) {
if ($portTable[$portId]) {
$pre_cache['nokiaIsamSfpPort'][$slotId][$portId]['numBasedPort'] = $portTable[$portId];
} else {
$pre_cache['nokiaIsamSfpPort'][$slotId][$portId]['numBasedPort'] = $portId;
}
$oId = '.'.$slotId.'.'.$portId;
$oIds = [
'sfpDiagRxPower'.$oId,
'sfpDiagTxPower'.$oId,
'sfpDiagRSSIRxPowerAlmLow'.$oId,
'sfpDiagRSSIRxPowerAlmHigh'.$oId,
'sfpDiagRSSIRxPowerWarnLow'.$oId,
'sfpDiagRSSIRxPowerWarnHigh'.$oId,
'sfpDiagRSSITxPowerAlmLow'.$oId,
'sfpDiagRSSITxPowerAlmHigh'.$oId,
'sfpDiagRSSITxPowerWarnLow'.$oId,
'sfpDiagRSSITxPowerWarnHigh'.$oId
];
if ($port['sfpDiagAvailable'] == 'noError') {
$twopart_value = snmp_get_multi($device, $oIds, '-OQUs', 'SFP-MIB', 'nokia', []);
foreach ($twopart_value[$slotId.'.'.$portId] as $index => $value) {
$value = str_replace(' dBm', '', $value);
if (is_numeric($value)) {
$pre_cache['nokiaIsamSfpPort'][$slotId][$portId][$index] = $value;
}
}
unset($twopart_value);
}
}
}

View File

@@ -0,0 +1,60 @@
<?php
$snmp_data['nokiaIsamEqpBoardTable'] = snmpwalk_cache_oid($device, 'eqptBoardTable', [], 'ASAM-EQUIP-MIB', 'nokia', '-OQUse');
foreach ($snmp_data['nokiaIsamEqpBoardTable'] as $index => $data) {
if (is_array($data)) {
$oid = '.1.3.6.1.4.1.637.61.1.23.3.1.7.' . $index;
$state_name = 'eqptBoardOperError';
$state_index_id = create_state_index($state_name);
$current = $data['eqptBoardOperError'];
$descr = $pre_cache['nokiaIsamSlot'][$index]['numBasedSlot'] . ' ' . $data['eqptSlotActualType'] . ' (' . $data['eqptSlotPlannedType'] . ')';
//Create State Translation
if ($state_index_id !== null) {
$states = [
[ 1, 0, 0, $state_index_id, 'no-error' ],
[ 2, 1, 0, $state_index_id, 'type-mismatch' ],
[ 3, 2, 0, $state_index_id, 'board-missing' ],
[ 4, 2, 0, $state_index_id, 'board-installation-missing' ],
[ 5, 1, 0, $state_index_id, 'no-planned-board' ],
[ 6, 1, 0, $state_index_id, 'waiting-for-sw' ],
[ 7, 2, 0, $state_index_id, 'init-boot-failed' ],
[ 8, 2, 0, $state_index_id, 'init-download-failed' ],
[ 9, 2, 0, $state_index_id, 'init-connection-failed' ],
[ 10, 2, 0, $state_index_id, 'init-configuration-failed' ],
[ 11, 1, 0, $state_index_id, 'board-reset-protection' ],
[ 12, 2, 0, $state_index_id, 'invalid-parameter' ],
[ 13, 1, 0, $state_index_id, 'temperature-alarm' ],
[ 14, 2, 0, $state_index_id, 'tempshutdown' ],
[ 15, 1, 0, $state_index_id, 'defense' ],
[ 16, 1, 0, $state_index_id, 'board-not-licensed' ],
[ 17, 2, 0, $state_index_id, 'sem-power-fail' ],
[ 18, 2, 0, $state_index_id, 'sem-ups-fail' ],
[ 19, 2, 0, $state_index_id, 'board-in-incompatible-slot' ],
[ 21, 1, 0, $state_index_id, 'download-ongoing' ],
[ 255, 2, 0, $state_index_id, 'unknown-error' ],
];
foreach ($states as $value) {
$insert = [
'state_value' => $value[0],
'state_generic_value' => $value[1],
'state_draw_graph' => $value[2],
'state_index_id' => $value[3],
'state_descr' => $value[4],
];
dbInsert($insert, 'state_translations');
}
}
//Discover Sensors
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, '1', '1', null, null, null, null, $current);
//Create Sensor To State Index
create_sensor_to_state_index($device, $state_name, $index);
}
}
unset(
$index,
$data
);

View File

@@ -0,0 +1,19 @@
<?php
$snmp_data['nokiaIsamSlotTemperature'] = snmpwalk_cache_twopart_oid($device, 'eqptBoardThermalSensorTable', [], 'ASAM-EQUIP-MIB', 'nokia');
$multiplier = 1;
$divisor = 1;
foreach ($snmp_data['nokiaIsamSlotTemperature'] as $slotId => $slot) {
$slotName = $pre_cache['nokiaIsamSlot'][$slotId]['numBasedSlot'];
foreach ($slot as $sensorId => $sensor) {
if (is_numeric($sensor['eqptBoardThermalSensorActualTemperature'])) {
$oid = '.1.3.6.1.4.1.637.61.1.23.10.1.2.'.$slotId.'.'.$sensorId;
$descr = $slotName.' Sensor '.$sensorId;
$limit = $sensor['eqptBoardThermalSensorShutdownThresholdHigh']/$divisor;
$warn_limit = $sensor['eqptBoardThermalSensorTcaThresholdHigh']/$divisor;
$value = $sensor['eqptBoardThermalSensorActualTemperature']/$divisor;
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $slotName.'.'.$sensorId.'-temp', 'nokia-isam', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
}
}

View File

@@ -0,0 +1,23 @@
<?php
/*
* LibreNMS NOKIA ISAM RAM polling module
*
* 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.
*/
echo 'Nokia ISAM Memory: ';
$oid = $mempool['mempool_index'];
$oids = array(
"memAbsoluteUsage.$oid",
"totalMemSize.$oid",
);
$data = snmp_get_multi_oid($device, $oids, '-OUQ', 'ASAM-SYSTEM-MIB');
list($mempool['used'], $mempool['total']) = array_values($data);
$mempool['free'] = ($mempool['total'] + $mempool['used']);

View File

@@ -0,0 +1,8 @@
<?php
$oids = ['eqptHolderActualType.17', 'eqptHolderSerialNumber.17', 'swEtsiVersion.0'];
$snmp = snmp_get_multi($device, $oids, '-OQUs', 'ASAM-EQUIP-MIB:ASAM-SYSTEM-MIB');
$hardware = $snmp[17]['eqptHolderActualType'];
$serial = $snmp[17]['eqptHolderSerialNumber'];
$version = $snmp[0]['swEtsiVersion'];

View File

@@ -304,6 +304,10 @@ if ($device['os'] == 'cmm') {
require_once 'ports/cmm.inc.php';
}
if ($device['os'] == 'nokia-isam') {
require_once 'ports/nokia-isam.inc.php';
}
if ($device['os'] == 'timos') {
require_once 'ports/timos.inc.php';
}

View File

@@ -0,0 +1,30 @@
<?php
/**
* nokia-isam.inc.php
*
* 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 2019 Vitali Kari
* @author Vitali Kari <vitali.kari@gmail.com>
*/
// Use proprietary asamIfExtCustomerId as ifAlias for Nokia ISAM Plattform. The default IF-MIB fields are here quite meaningless
$isam_port_stats = snmpwalk_cache_oid($device, 'asamIfExtCustomerId', [], 'ITF-MIB-EXT', 'nokia-isam');
foreach ($isam_port_stats as $index => $value) {
$port_stats[$index]['ifAlias'] = $isam_port_stats[$index]['asamIfExtCustomerId'];
}
unset($isam_ports_stats);

3135
mibs/nokia/ASAM-ALARM-MIB Normal file
View File

File diff suppressed because it is too large Load Diff

5080
mibs/nokia/ASAM-EQUIP-MIB Normal file
View File

File diff suppressed because it is too large Load Diff

3800
mibs/nokia/ASAM-SYSTEM-MIB Normal file
View File

File diff suppressed because it is too large Load Diff

183
mibs/nokia/ASAM-TC-MIB Normal file
View File

@@ -0,0 +1,183 @@
ASAM-TC-MIB DEFINITIONS ::= BEGIN
-- =============================================================================
-- This specification is published by Alcatel under Non-Disclosure
-- Agreement(s) (NDA) with specific parties and has to be considered as
-- Confidential Information as defined in such NDA.
-- Alcatel reserves the right to revise this document for any reason,
-- including but not limited to conformity with standards promulgated by
-- various agencies, utilisation of advances in the state of the technical
-- areas, or the reflection of changes in the design of any equipment,
-- techniques, or procedures described or referred to herein.
-- The product specifications and other technical or performance information
-- contained herein are subject to change without notice.
-- Updates of this document will be issued under the above NDA's.
-- Alcatel makes no representation or warranty, expressed or implied, with
-- respect to the sufficiency, accuracy, or utility of any information or
-- opinion contained herein. Alcatel expressly advises that any use of for
-- any purpose or reliance upon this technical reference is at the risk of
-- the user and that Alcatel shall not be liable for any damage or injury
-- incurred by any person arising out of the sufficiency, accuracy, or
-- utility of any information or opinion contained herein.
-- This document is not to be construed as a suggestion to any manufacturer
-- to modify or change any of its products, nor does this document represent
-- any commitment by Alcatel to sell or purchase any product.
-- Nothing contained herein shall be construed as conferring by implication,
-- estoppel, or otherwise any license or right under any patent, whether or
-- not the use of any information herein necessarily employs an invention of
-- any existing or later issued patent.
-- Alcatel reserves the right not to offer any or all of these products and
-- to withdraw any or all of them at any future time.
-- Copyright (C) 2004, Alcatel. All Rights Reserved.
-- =============================================================================
-- MODULE-IDENTITY
-- LAST-UPDATED "200606131200Z"
-- ORGANIZATION "Alcatel"
-- CONTACT-INFO
--
-- Email: asam.mibsupport@alcatel.be"
--
-- DESCRIPTION
-- "This MIB module defines Textual Conventions that are shared by
-- Alcatel specified MIB modules.
--
-- REVISION 200606131200Z
-- DESCRIPTION
-- "Version: 3EC17922EAAA_V3.2.0.0.0
-- Editor: Marc Van Vlimmeren
-- Changes: Editorial updates"
--
-- REVISION 200601231200Z
-- DESCRIPTION
-- "Version: 3EC17922EAAA_V2.0.0.0.0
-- Editor: Bart Bogaert
-- Changes: Implemented BDFhw70643: strict syntax checks (smilint)"
--
-- REVISION 200007260000Z
-- DESCRIPTION
-- "Version: 3EC17922AAAA_E4.2.0.0
-- Editor: Rajesh Abbi
-- Changes: Initial Version"
--
-- =============================================================================
IMPORTS
asam FROM SYSTEM-MIB
Gauge FROM RFC1155-SMI;
-- Profile related Textual Conventions
-- ===================================
-- Profile Index
-- =============
-- A Profile Index is used to uniquely identify a Profile in a
-- Table. The index must be unique for every profile in a table,
-- and may not be 0.
AsamProfileIndex ::= INTEGER(1..65535)
-- Profile Index
-- =============
-- A Profile Index is used to uniquely identify a Profile in a
-- Table. The index must be unique for every profile in a table,
-- and may be 0.
AsamProfileIndexOrZero ::= INTEGER(0..65535)
-- Next Profile Index
-- ==================
-- A Next Profile Index is used by the Agent to inform the Manager
-- of the next available Profile Index that may be used for creating
-- a new Profile. This index must not be in use by an existing entry
-- in the table. A value of 0 indicates no more profiles may be
-- defined in the associated table.
AsamNextProfileIndex ::= INTEGER(0..65535)
-- Max Profile Index
-- ==================
-- The Max Profile Index is used by the manager to know the maximum number
-- of profiles that can be created.
AsamMaxProfileIndex ::= INTEGER(0..65535)
-- Profile Pointer
-- ===============
-- A Profile Pointer is a reference to a profile.
-- Its value may be equal to the Profile Index of an existing
-- profile, or 0. The value 0 is treated as a NULL reference -
-- ie: no profile is assumed to be referenced.
AsamProfilePointer ::= INTEGER(0..65535)
-- Profile Name
-- ============
-- A Profile Name uniquely identifies a profile in a table.
-- It is a human readable string up to 32 characters long
-- that is NOT case-sensitive, and may only contain following
-- characters : ['a'..'z','A'..'Z','0'..'9', '-', '_', '.'].
AsamProfileName ::= OCTET STRING (SIZE(1..32))
-- Profile Scope
-- =============
-- The Profile Scope identifies the scope of the associated
-- Profile definition. Following scopes are defined:
-- o Local : Only defined for the associated NE (Network Element).
-- o Network : Defined for ALL NEs managed by the EMS.
-- Network Profiles may not be created/modified/deleted via the
-- local Craft Interface at the NE.
AsamProfileScope ::= INTEGER {
localScope (1),
networkScope(2)
}
-- Profile Reference Count
-- =======================
-- The Profile Reference Count indicates the number of entities using
-- a particular Profile instance.
-- If the value is 0, then this profile is "not in use", and may be
-- deleted.
-- If the value is greater than 0, then this profile is "in use", and
-- may NOT be deleted.
AsamProfileRefCount ::= INTEGER(0..65535)
AsamProfileRefCount32 ::= INTEGER(0..4294967295)
-- Logging related Textual Conventions
-- ===========================
LogLastEntry ::= INTEGER (0..4294967295)
LogReset ::= INTEGER {
resetCompleted (1),
reset (2)}
LogBufferSize ::= INTEGER (0..4294967295)
LogFullAction ::= INTEGER {
wrap (1),
halt (2)}
LogOverflowed ::= INTEGER {
notoverflowed (1),
overflowed (2)}
LogIndex ::= INTEGER (0..4294967295)
-- General Textual Conventions
-- ===========================
-- SMIv1 does not give an explicit limit on the range of integers.
-- In most cases, the INTEGER range is assumed to be -2147483648 .. 2147483647.
-- This TC simulates an Unsigned32 from SMIv2.
Uint32 ::= Gauge (0 .. 4294967295)
-- Type Definitions moved from ASAM_SYSTEM_MIB
NetworkTimeInSeconds ::= INTEGER (0..4294967295)
-- This type gives the distributed network time in
-- seconds encountered since January 1, 1900.
NetworkTimeInMiliSeconds ::= INTEGER (0..4294967295)
-- This type gives the distributed network time in
-- miliseconds encountered since January 1, 1900.
END

1507
mibs/nokia/ITF-MIB Normal file
View File

File diff suppressed because it is too large Load Diff

1703
mibs/nokia/ITF-MIB-EXT Normal file
View File

File diff suppressed because it is too large Load Diff

6138
mibs/nokia/SFP-MIB Normal file
View File

File diff suppressed because it is too large Load Diff

67
mibs/nokia/SYSTEM-MIB Normal file
View File

@@ -0,0 +1,67 @@
SYSTEM-MIB DEFINITIONS ::= BEGIN
-- ===========================================================================
-- This specification is published by Alcatel under Non-Disclosure
-- Agreement(s) (NDA) with specific parties and has to be considered as
-- Confidential Information as defined in such NDA.
-- Alcatel reserves the right to revise this document for any reason,
-- including but not limited to conformity with standards promulgated by
-- various agencies, utilisation of advances in the state of the technical
-- areas, or the reflection of changes in the design of any equipment,
-- techniques, or procedures described or referred to herein.
-- The product specifications and other technical or performance information
-- contained herein are subject to change without notice.
-- Updates of this document will be issued under the above NDA's.
-- Alcatel makes no representation or warranty, expressed or implied, with
-- respect to the sufficiency, accuracy, or utility of any information or
-- opinion contained herein. Alcatel expressly advises that any use of for
-- any purpose or reliance upon this technical reference is at the risk of
-- the user and that Alcatel shall not be liable for any damage or injury
-- incurred by any person arising out of the sufficiency, accuracy, or
-- utility of any information or opinion contained herein.
-- This document is not to be construed as a suggestion to any manufacturer
-- to modify or change any of its products, nor does this document represent
-- any commitment by Alcatel to sell or purchase any product.
-- Nothing contained herein shall be construed as conferring by implication,
-- estoppel, or otherwise any license or right under any patent, whether or
-- not the use of any information herein necessarily employs an invention of
-- any existing or later issued patent.
-- Alcatel reserves the right not to offer any or all of these products and
-- to withdraw any or all of them at any future time.
-- Copyright (C) 1997, Alcatel. All Rights Reserved.
-- ===========================================================================
-- MODULE-IDENTITY
-- LAST-UPDATED "200607130000Z"
-- ORGANIZATION "Alcatel"
-- CONTACT-INFO
--
-- Email: asam.mibsupport@alcatel.be"
--
-- DESCRIPTION
-- "This MIB module defines the proprietary asam branch.
--
-- REVISION "200607130000Z" -* July 13, 2006
-- DESCRIPTION
-- "Version: 3FE23453EAAA_V3.2.0.0.0
-- Editor: Marc Van Vlimmeren
-- Changes: Editorial updates"
--
-- REVISION "200601230000Z" -* January 23, 2006
-- DESCRIPTION
-- "Version: 3FE23453EAAA_V2.4.1.0.0
-- Editor: Bart Bogaert
-- Changes: Implemented BDFhw70643: strict syntax checks (smilint)"
--
-- ========================================================================
IMPORTS enterprises
FROM RFC1155-SMI
;
alcatel OBJECT IDENTIFIER ::= { enterprises 637 }
asd OBJECT IDENTIFIER ::= { alcatel 61 }
asam OBJECT IDENTIFIER ::= { asd 1 }
ant OBJECT IDENTIFIER ::= { asd 2 }
END

View File

@@ -366,6 +366,12 @@
"type": "string"
}
},
"bad_iftype": {
"type": "array",
"items": {
"type": "string"
}
},
"processor_stacked": {
"type": "boolean"
},

20804
tests/data/nokia-isam.json Normal file
View File

File diff suppressed because it is too large Load Diff

View File

File diff suppressed because it is too large Load Diff