new device os Raisecom Router OS (ROAP) (#12361)

* new device os Raisecom Router OS (ROAP)
tried to add that as existing raisecom os but ended in new os, because they use a
new MIB base for Router OS and newer devices.

* add sensors
This commit is contained in:
Vitali Kari 2021-01-04 00:39:35 +01:00 committed by GitHub
parent 10eb7b2c2a
commit 9126e0f00a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 16121 additions and 8 deletions

View File

@ -0,0 +1,45 @@
mib: ROSMGMT-ALARM-MGMT-MIB:ROSMGMT-COMMON-MANAGEMENT-MIB:ROSMGMT-SYSTEM-MIB:ROSMGMT-VERSION-MIB:ROSMGMT-MEMORY-MIB
modules:
mempools:
data:
-
total: ROSMGMT-MEMORY-MIB::rosMgmtMemoryTotal
free: ROSMGMT-MEMORY-MIB::rosMgmtMemoryAvailable
os:
hardware: ROSMGMT-VERSION-MIB::rosMgmtProductVersion.0
serial: ROSMGMT-VERSION-MIB::rosMgmtSerialNumber.0
version: ROSMGMT-VERSION-MIB::rosMgmtRosVersion.0
processors:
data:
-
oid: rosMgmtCpuUtilizationTable
value: rosMgmtCpuUtilization.oneMin
num_oid: '.1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.3.{{ $index }}'
snmp_flags: ['-OeQUsb'] # workaround for one Min index
descr: 'Processor'
index: 3
sensors:
state:
data:
-
oid: rosMgmtConfigLoadState
value: rosMgmtConfigLoadState
num_oid: '.1.3.6.1.4.1.8886.1.2.1.3.{{ $index }}'
descr: 'Config {{ $index }} Load State'
states:
- { graph: 0, value: 1, generic: 1, descr: ready }
- { graph: 0, value: 2, generic: 1, descr: running }
- { graph: 0, value: 3, generic: 0, descr: successful }
- { graph: 0, value: 4, generic: 2, descr: failed }
-
oid: rosMgmtAlarmMgmtMonitorLevel
value: rosMgmtAlarmMgmtMonitorLevel
num_oid: '.1.3.6.1.4.1.8886.60.34.1.1.7.{{ $index }}'
descr: 'The level of Alarm Monitor'
states:
- { graph: 0, value: 1, generic: 0, descr: clear }
- { graph: 0, value: 2, generic: 0, descr: indeterminate }
- { graph: 0, value: 3, generic: 2, descr: critical }
- { graph: 0, value: 4, generic: 2, descr: major }
- { graph: 0, value: 5, generic: 1, descr: minor }
- { graph: 0, value: 6, generic: 1, descr: warning }

View File

@ -0,0 +1,17 @@
os: raisecom-ros
text: 'Raisecom ROS'
type: network
bad_snmpEngineTime: true
mib_dir: raisecom
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
icon: raisecom
discovery:
-
sysObjectID: .1.3.6.1.4.1.8886
snmpget:
oid: ROSMGMT-VERSION-MIB::rosMgmtRosVersion.0
op: '!='
value: false

View File

@ -2,6 +2,7 @@ os: raisecom
text: 'Raisecom ROAP'
type: network
bad_snmpEngineTime: true
mib_dir: raisecom
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
@ -9,5 +10,8 @@ over:
icon: raisecom
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.8886
sysObjectID: .1.3.6.1.4.1.8886
snmpget:
oid: ROSMGMT-VERSION-MIB::rosMgmtRosVersion.0
op: '='
value: false

View File

@ -0,0 +1,42 @@
<?php
echo 'Raisecom';
$multiplier = 1;
$divisor = 1000;
foreach ($pre_cache['rosMgmtOpticalTransceiverDDMTable'] as $index => $data) {
foreach ($data as $key => $value) {
if (($key == 'txPower') && is_numeric($value['rosMgmtOpticalTransceiverParameterValue']) && ($value['rosMgmtOpticalTransceiverDDMValidStatus'] == 1)) {
$oid = '.1.3.6.1.4.1.8886.1.18.2.2.1.1.2.' . $index . '.3';
$sensor_type = 'rosMgmtOpticalTransceiverTxPower';
$port = get_port_by_index_cache($device['device_id'], str_replace('1.', '', $index));
$descr = $port['ifDescr'] . ' Transmit Power';
$low_limit = $value['rosMgmtOpticalTransceiverParamLowAlarmThresh'] / $divisor;
$low_warn_limit = $value['rosMgmtOpticalTransceiverParamLowWarningThresh'] / $divisor;
$warn_limit = $value['rosMgmtOpticalTransceiverParamHighWarningThresh'] / $divisor;
$high_limit = $value['rosMgmtOpticalTransceiverParamHighAlarmThresh'] / $divisor;
$current = $value['rosMgmtOpticalTransceiverParameterValue'] / $divisor;
$entPhysicalIndex = $index;
$entPhysicalIndex_measured = 'ports';
if ($port['ifAdminStatus'] == 'up') {
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'tx-' . $index, $sensor_type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
}
if (($key == 'rxPower') && is_numeric($value['rosMgmtOpticalTransceiverParameterValue']) && ($value['rosMgmtOpticalTransceiverDDMValidStatus'] != 0)) {
$oid = '.1.3.6.1.4.1.8886.1.18.2.2.1.1.2.' . $index . '.4';
$sensor_type = 'rosMgmtOpticalTransceiverRxPower';
$port = get_port_by_index_cache($device['device_id'], str_replace('1.', '', $index));
$descr = $port['ifDescr'] . ' Receive Power';
$low_limit = $value['rosMgmtOpticalTransceiverParamLowAlarmThresh'] / $divisor;
$low_warn_limit = $value['rosMgmtOpticalTransceiverParamLowWarningThresh'] / $divisor;
$warn_limit = $value['rosMgmtOpticalTransceiverParamHighWarningThresh'] / $divisor;
$high_limit = $value['rosMgmtOpticalTransceiverParamHighAlarmThresh'] / $divisor;
$current = $value['rosMgmtOpticalTransceiverParameterValue'] / $divisor;
$entPhysicalIndex = $index;
$entPhysicalIndex_measured = 'ports';
if ($port['ifAdminStatus'] == 'up') {
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'rx-' . $index, $sensor_type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
}
}
}

View File

@ -0,0 +1,4 @@
<?php
echo 'rosMgmtOpticalTransceiverDDMTable ';
$pre_cache['rosMgmtOpticalTransceiverDDMTable'] = snmpwalk_cache_twopart_oid($device, 'rosMgmtOpticalTransceiverDDMTable', [], 'ROSMGMT-OPTICAL-TRANSCEIVER-MIB', 'raisecom', ['-OeQUs', '-Ih']);

View File

@ -0,0 +1,24 @@
<?php
echo 'Raisecom';
$multiplier = 1;
$divisor = 1000;
foreach ($pre_cache['rosMgmtOpticalTransceiverDDMTable'] as $index => $data) {
foreach ($data as $key => $value) {
if (($key == 'transceiverTemperature') && is_numeric($value['rosMgmtOpticalTransceiverParameterValue']) && ($value['rosMgmtOpticalTransceiverDDMValidStatus'] == 1)) {
$oid = '.1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.' . $index . '.1';
$sensor_type = 'rosMgmtOpticalTransceiverTemperature';
$port_descr = get_port_by_index_cache($device['device_id'], str_replace('1.', '', $index));
$descr = $port_descr['ifDescr'] . ' Transceiver Temperature';
$low_limit = $value['rosMgmtOpticalTransceiverParamLowAlarmThresh'] / $divisor;
$low_warn_limit = $value['rosMgmtOpticalTransceiverParamLowWarningThresh'] / $divisor;
$warn_limit = $value['rosMgmtOpticalTransceiverParamHighWarningThresh'] / $divisor;
$high_limit = $value['rosMgmtOpticalTransceiverParamHighAlarmThresh'] / $divisor;
$current = $value['rosMgmtOpticalTransceiverParameterValue'] / $divisor;
$entPhysicalIndex = $index;
$entPhysicalIndex_measured = 'ports';
discover_sensor($valid['sensor'], 'temperature', $device, $oid, 'tx-' . $index, $sensor_type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
}
}
}

137
mibs/IANA-PWE3-MIB Normal file
View File

@ -0,0 +1,137 @@
IANA-PWE3-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, mib-2
FROM SNMPv2-SMI -- [RFC2578]
TEXTUAL-CONVENTION
FROM SNMPv2-TC; -- [RFC2579]
ianaPwe3MIB MODULE-IDENTITY
LAST-UPDATED "200906110000Z" -- 11 June 2009 00:00:00 GMT
ORGANIZATION "IANA"
CONTACT-INFO
"Internet Assigned Numbers Authority
Internet Corporation for Assigned Names and Numbers
4676 Admiralty Way, Suite 330
Marina del Rey, CA 90292-6601
Phone: +1 310 823 9358
EMail: iana@iana.org"
DESCRIPTION
"This MIB module defines the IANAPwTypeTC and
IANAPwPsnTypeTC textual conventions for use in PWE3
MIB modules.
Any additions or changes to the contents of this MIB
module require either publication of an RFC, Designated
Expert Review as defined in RFC 5226, Guidelines for
Writing an IANA Considerations Section in RFCs, and should
be based on the procedures defined in [RFC4446]. The
Designated Expert will be selected by the IESG Area
Director(s) of the internet Area.
Copyright (c) 2009 IETF Trust and the persons identified as
authors of the code. All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the
following conditions are met:
- Redistributions of source code must retain the above
copyright notice, this list of conditions and the
following disclaimer.
- Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the
following disclaimer in the documentation and/or other
materials provided with the distribution.
- Neither the name of Internet Society, IETF or IETF Trust,
nor the names of specific contributors, may be used to
endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. "
REVISION "200906110000Z" -- 11 June 2009 00:00:00 GMT
DESCRIPTION "Original version, published as part of RFC 5601."
::= { mib-2 174 }
IANAPwTypeTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the PW type (i.e., the carried service). "
SYNTAX INTEGER {
other(0),
frameRelayDlciMartiniMode(1),
atmAal5SduVcc(2),
atmTransparent(3),
ethernetTagged(4),
ethernet(5),
hdlc(6),
ppp(7),
cem(8), -- Historic type
atmCellNto1Vcc(9),
atmCellNto1Vpc(10),
ipLayer2Transport(11),
atmCell1to1Vcc(12),
atmCell1to1Vpc(13),
atmAal5PduVcc(14),
frameRelayPortMode(15),
cep(16),
e1Satop(17),
t1Satop(18),
e3Satop(19),
t3Satop(20),
basicCesPsn(21),
basicTdmIp(22),
tdmCasCesPsn(23),
tdmCasTdmIp(24),
frDlci(25),
wildcard (32767)
}
IANAPwPsnTypeTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identifies the PSN type that the PW will use over the
network."
SYNTAX INTEGER {
mpls (1),
l2tp (2),
udpOverIp (3),
mplsOverIp (4),
mplsOverGre (5),
other (6)
}
IANAPwCapabilities ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes a collection of capabilities related to
a specific PW.
Values may be added in the future based on new capabilities
introduced in IETF documents.
"
SYNTAX BITS {
pwStatusIndication (0), -- Applicable only if maintenance
-- protocol is in use.
pwVCCV (1)
}
END

2438
mibs/PW-STD-MIB Normal file

File diff suppressed because it is too large Load Diff

288
mibs/PW-TC-STD-MIB Normal file
View File

@ -0,0 +1,288 @@
PW-TC-STD-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, Unsigned32, mib-2
FROM SNMPv2-SMI -- [RFC2578]
TEXTUAL-CONVENTION
FROM SNMPv2-TC; -- [RFC2579]
pwTcStdMIB MODULE-IDENTITY
LAST-UPDATED "200904210000Z" -- 21 April 2009 00:00:00 GMT
ORGANIZATION "Pseudowire Edge-to-Edge Emulation (PWE3) Working
Group"
CONTACT-INFO
" Thomas D. Nadeau
Email: tom.nadeau@bt.com
David Zelig
Email: davidz@oversi.com
Orly Nicklass
Email: orlyn@radvision.com
The PWE3 Working Group (email distribution pwe3@ietf.org,
http://www.ietf.org/html.charters/pwe3-charter.html)
"
DESCRIPTION
"This MIB module defines TEXTUAL-CONVENTIONS
for concepts used in pseudowire edge-to-edge
networks.
Copyright (c) 2009 IETF Trust and the persons identified
as authors of the code. All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:
- Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer.
- Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
- Neither the name of Internet Society, IETF or IETF Trust, nor
the names of specific contributors, may be used to endorse or
promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This version of this MIB module is part of RFC 5542;
see the RFC itself for full legal notices."
-- Revision history.
REVISION "200904210000Z" -- 21 April 2009 00:00:00 GMT
DESCRIPTION
"Original Version"
::= { mib-2 188 }
PwGroupID ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"An administrative identification for grouping a
set of service-specific pseudowire services."
SYNTAX Unsigned32
PwIDType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Pseudowire Identifier. Used to identify the PW
(together with some other fields) in the signaling
session."
SYNTAX Unsigned32
PwIndexType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Pseudowire Index. A unique value, greater than zero,
for each locally defined PW. Used for indexing
several MIB tables associated with the particular PW.
It is recommended that values are assigned contiguously
starting from 1. The value for each PW MUST remain
constant at least from one re-initialization
to the next re-initialization."
SYNTAX Unsigned32 (1..4294967295)
PwIndexOrZeroType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"This TEXTUAL-CONVENTION is an extension of the
PwIndexType convention. The latter defines a greater-
than-zero value used to identify a pseudowire
in the managed system. This extension permits the
additional value of zero. The zero value is object-specific
and MUST therefore be defined as part of the description of
any object that uses this syntax. Examples of the usage of
zero might include situations where pseudowire was unknown,
or where none or all pseudowires need to be referenced."
SYNTAX Unsigned32 (0..4294967295)
PwOperStatusTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the operational status of the PW.
- up(1): Ready to pass packets.
- down(2): PW signaling is not yet finished, or
indications available at the service
level indicate that the PW is not
passing packets.
- testing(3): AdminStatus at the PW level is set to
test.
- dormant(4): The PW is not in a condition to pass
packets but is in a 'pending' state,
waiting for some external event.
- notPresent(5): Some component is missing to accomplish
the setup of the PW. It can be
configuration error, incomplete
configuration, or a missing H/W component.
- lowerLayerDown(6): One or more of the lower-layer interfaces
responsible for running the underlying PSN
is not in OperStatus 'up' state."
SYNTAX INTEGER {
up(1),
down(2),
testing(3),
dormant(4),
notPresent(5),
lowerLayerDown(6)
}
PwAttachmentIdentifierType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An octet string used in the generalized Forward Error
Correction (FEC) element for identifying attachment forwarder
and groups. A NULL identifier is of zero length.
"
SYNTAX OCTET STRING (SIZE (0..255))
PwGenIdType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents the Attachment Group Identifier (AGI) Type and
Attachment Individual Identifier (AII) Type in generalized FEC
signaling and configuration.
"
SYNTAX Unsigned32( 0..254 )
PwCwStatusTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the status of the control word (CW) negotiation
based on the local configuration and the indications received
from the peer node.
waitingForNextMsg(1) indicates that the node is waiting for
another label mapping from the peer.
sentWrongBitErrorCode(2) indicates that the local node has
notified the peer about a mismatch in the C-bit.
rxWithdrawWithWrongBitErrorCode(3) indicates that a withdraw
message has been received with the wrong C-bit error code.
illegalReceivedBit(4) indicates a C-bit configuration with
the peer that is not compatible with the PW type.
cwPresent(5) indicates that the CW is present for this PW.
If signaling is used, the C-bit is set and agreed upon between
the nodes. For manually configured PW, the local
configuration requires the use of the CW.
cwNotPresent(6) indicates that the CW is not present for this
PW. If signaling is used, the C-bit is reset and agreed upon
between the nodes. For manually configured PW, the local
configuration requires that the CW not be used.
notYetKnown(7) indicates that a label mapping has not yet
been received from the peer.
"
REFERENCE
"Martini, et al., 'Pseudowire Setup and Maintenance Using
the Label Distribution Protocol', [RFC4447]."
SYNTAX INTEGER {
waitingForNextMsg(1),
sentWrongBitErrorCode(2),
rxWithdrawWithWrongBitErrorCode(3),
illegalReceivedBit(4),
cwPresent(5),
cwNotPresent(6),
notYetKnown(7)
}
PwStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the status of the PW and the interfaces affecting
this PW. If none of the bits are set, it indicates no faults
are reported.
"
SYNTAX BITS {
pwNotForwarding(0),
servicePwRxFault(1),
servicePwTxFault(2),
psnPwRxFault(3),
psnPwTxFault(4)
}
PwFragSize ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"If set to a value other than zero, it indicates the desired
fragmentation length in bytes. If set to zero,
fragmentation is not desired for PSN bound packets.
"
SYNTAX Unsigned32
PwFragStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the status of the fragmentation/reassembly process
based on local configuration and peer capability.
noFrag(0) bit indicates that local configuration is for no
fragmentation.
cfgFragGreaterThanPsnMtu(1) bit indicates that the local node
is set to fragment, but the fragmentation size is greater
than the MTU available at the PSN between the nodes.
Fragmentation is not done in this case.
cfgFragButRemoteIncapable(2) bit indicates that the local
configuration conveys the desire for fragmentation but
the peer is not capable of reassembly.
remoteFragCapable(3) bit indicates that the remote node
is capable to accept fragmented PDUs.
fragEnabled(4) bit indicates that fragmentation will be used
on this PW. Fragmentation can be used if the local node was
configured for fragmentation, the peer has the capability
to accept fragmented packets, and the CW is in use for this
PW."
REFERENCE
"Malis, A. and M. Townsley, 'Pseudowire Emulation Edge-to-
Edge (PWE3) Fragmentation and Reassembly', [RFC4623]."
SYNTAX BITS {
noFrag(0),
cfgFragGreaterThanPsnMtu(1),
cfgFragButRemoteIncapable(2),
remoteFragCapable(3),
fragEnabled(4)
}
PwCfgIndexOrzero ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Index in any of the relevant configuration tables for
supplement information regarding configuration of the
specific technology. Value zero implies no additional
configuration information is applicable."
SYNTAX Unsigned32 (0..4294967295)
END

View File

@ -2,6 +2,7 @@
-- =======================================================================
-- Version info
--
-- Version 1.0 modified 2020.4.17 by QiYianqin, add ROS Mgmt
-- Version 1.0 modified 2012.4.18 by WangMingjuan, add gazelle series
-- Version 1.0 modified 2011.12.14 by WangMingjuan
-- Version 0.1 Created 2003.5.24 by GONGGUIDONG
@ -14,6 +15,7 @@ RAISECOM-BASE-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises FROM RFC1155-SMI;
-- =======================================================================
--
-- Organization branches
@ -98,14 +100,15 @@ IMPORTS
gazelleRouterSeries OBJECT IDENTIFIER ::= { raisecom 28 }
-- SHENLANXUNTONG Series
shenlanxuntongSeries OBJECT IDENTIFIER ::= { raisecom 29 }
shenlanxuntongSeries OBJECT IDENTIFIER ::= { raisecom 29 }
-- SHENLANXUNTONG Transmit Series
sltSeries OBJECT IDENTIFIER ::= { shenlanxuntongSeries 1 }
sltSeries OBJECT IDENTIFIER ::= { shenlanxuntongSeries 1 }
-- OTN Product Series
otnSeries OBJECT IDENTIFIER ::= { raisecom 30 }
OTNSeries OBJECT IDENTIFIER ::= { raisecom 30 }
--ROS Mgmt
rosMgmt OBJECT IDENTIFIER ::= { raisecom 60 }
-- =======================================================================
--

View File

@ -0,0 +1,495 @@
--MibName=rosMgmtAlarm
-- *****************************************************************
-- ROSMGMT-ALARM-MGMT-MIB.mib: ROSMGMT ALARM MIB
--
-- April 2011, yangguodong
--
-- Copyright (c) 1996-2011 by Raisecom Technology Co., Ltd.
-- All rights reserved.
--
-- *****************************************************************
--
ROSMGMT-ALARM-MGMT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,
Unsigned32,Integer32
FROM SNMPv2-SMI -- [RFC2578]
TEXTUAL-CONVENTION,TruthValue
FROM SNMPv2-TC -- [RFC2579]
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB -- [RFC3411]
ifIndex FROM IF-MIB
rosMgmt
FROM RAISECOM-BASE-MIB;
rosMgmtAlarmMgmt MODULE-IDENTITY
LAST-UPDATED "202006180000Z" -- 18 June 2020 00:00:00 GMT
ORGANIZATION "Raisecom Technology Co., Ltd."
CONTACT-INFO
"Raisecom Science & Technology Co., ltd.
E-mail: support@rosMgmt.com ."
DESCRIPTION
"This MIB module contains managed object definitions for
MPLS. "
REVISION "202006180000Z" -- 18 June 2020 00:00:00 GMT
DESCRIPTION
"Add alarm reversal mode to automatically flip state."
REVISION "201103120000Z" -- 12 March 2011 00:00:00 GMT
DESCRIPTION
"ROSMGMT ALARM MIB initial version."
::= { rosMgmt 34 }
--rosMgmtAlarmMgmt 0 notification
rosMgmtAlarmMgmtObejcts OBJECT IDENTIFIER ::= { rosMgmtAlarmMgmt 1 }
--rosMgmtAlarmMgmt 2 conformance group
-- User-defined types
AlarmStorageMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Describes how to store alarm active table when the alarm
table was full.When the storage mode is stop,the new raised
alarm will be discarded.It will not insert to alarm active table.
If the storage mode is loop,the oldest row in alarm active table
will be deleted and the the newly raiseco alarm will be inserted
to the alarm active table."
SYNTAX INTEGER {
stop(1), -- eh?
loop(2) -- e.g., in RAM
}
AlarmInverseMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Describes the mode of alarm inverse "
SYNTAX INTEGER {
none(1), -- inverse mode is non
auto(2), -- inverse mode is auto
manual(3), -- inverse mode is manual
autofinish(4) -- inverse mode is auto finish
}
--end user defined type
--start of alarm config
rosMgmtAlarmMgmtScalarGroup OBJECT IDENTIFIER ::= { rosMgmtAlarmMgmtObejcts 1 }
rosMgmtAlarmMgmtRaiseDelay OBJECT-TYPE
SYNTAX Integer32 (0..600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The approximate period from the time a alarm was
raised to a time this alarm was reported."
DEFVAL { 0 }
::= { rosMgmtAlarmMgmtScalarGroup 1}
rosMgmtAlarmMgmtClearDelay OBJECT-TYPE
SYNTAX Integer32 (0..600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The approximate period from the time a alarm was
cleared to a time this alarm report."
DEFVAL { 0 }
::= { rosMgmtAlarmMgmtScalarGroup 2 }
rosMgmtAlarmMgmtActiveStoreMode OBJECT-TYPE
SYNTAX AlarmStorageMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The storage mode of the alarm active table"
::= { rosMgmtAlarmMgmtScalarGroup 3 }
rosMgmtAlarmMgmtInhibitEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable Alarm Inhibit"
DEFVAL { true }
::= { rosMgmtAlarmMgmtScalarGroup 4 }
rosMgmtAlarmMgmtSyslogEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable write syslog when an alarm raise"
DEFVAL { true }
::= { rosMgmtAlarmMgmtScalarGroup 5 }
rosMgmtAlarmMgmtActiveClear OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"clear active alarm according to the active table third index"
::= { rosMgmtAlarmMgmtScalarGroup 6 }
rosMgmtAlarmMgmtConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtAlarmMgmtConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the information of alarm configuration."
::= { rosMgmtAlarmMgmtObejcts 2 }
rosMgmtAlarmMgmtConfigEntry OBJECT-TYPE
SYNTAX RosMgmtAlarmMgmtConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in this table represents the configuration of specified alarm."
INDEX { rosMgmtAlarmMgmtId,ifIndex }
::= { rosMgmtAlarmMgmtConfigTable 1 }
RosMgmtAlarmMgmtConfigEntry ::= SEQUENCE {
rosMgmtAlarmMgmtId Unsigned32,
rosMgmtAlarmMgmtClear TruthValue,
rosMgmtAlarmMgmtReportEnable TruthValue,
rosMgmtAlarmMgmtMonitorEnable TruthValue,
rosMgmtAlarmMgmtInverseMode AlarmInverseMode,
rosMgmtAlarmMgmtModuleName SnmpAdminString,
rosMgmtAlarmMgmtGroupName SnmpAdminString
}
rosMgmtAlarmMgmtId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"First index of alarm config table which is equal to alarm group Id"
::= { rosMgmtAlarmMgmtConfigEntry 1 }
rosMgmtAlarmMgmtClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The swith of alarm clear,when open the swith the related
active alarm entry will be deleted from alarm active table"
DEFVAL { false }
::= { rosMgmtAlarmMgmtConfigEntry 2 }
rosMgmtAlarmMgmtReportEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable Alarm Report"
DEFVAL { true }
::= { rosMgmtAlarmMgmtConfigEntry 3 }
rosMgmtAlarmMgmtMonitorEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable alarm monitor"
DEFVAL { true }
::= { rosMgmtAlarmMgmtConfigEntry 4 }
rosMgmtAlarmMgmtInverseMode OBJECT-TYPE
SYNTAX AlarmInverseMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mode of alarm inverse"
DEFVAL { none }
::= { rosMgmtAlarmMgmtConfigEntry 5 }
rosMgmtAlarmMgmtModuleName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module name which this alarm belongs to."
::= { rosMgmtAlarmMgmtConfigEntry 6 }
rosMgmtAlarmMgmtGroupName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of alarm group."
::= { rosMgmtAlarmMgmtConfigEntry 7 }
rosMgmtAlarmMgmtCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtAlarmMgmtCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the information of alarm configuration."
::= { rosMgmtAlarmMgmtObejcts 3 }
rosMgmtAlarmMgmtCfgEntry OBJECT-TYPE
SYNTAX RosMgmtAlarmMgmtCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in this table represents the configuration of specified alarm."
INDEX { rosMgmtAlarmMgmtCfgAlarmType,rosMgmtAlarmMgmtCfgAlarmResType,rosMgmtAlarmMgmtCfgAlarmRes}
::= { rosMgmtAlarmMgmtCfgTable 1 }
RosMgmtAlarmMgmtCfgEntry ::= SEQUENCE {
rosMgmtAlarmMgmtCfgAlarmType Unsigned32,
rosMgmtAlarmMgmtCfgAlarmResType INTEGER,
rosMgmtAlarmMgmtCfgAlarmRes Unsigned32,
rosMgmtAlarmMgmtCfgClear TruthValue,
rosMgmtAlarmMgmtCfgMonitorEnable TruthValue,
rosMgmtAlarmMgmtCfgReportEnable TruthValue,
rosMgmtAlarmMgmtCfgInverseMode AlarmInverseMode
}
rosMgmtAlarmMgmtCfgAlarmType OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Third index of alarm Mgmt config table.The type of Alarm."
::= { rosMgmtAlarmMgmtCfgEntry 1 }
rosMgmtAlarmMgmtCfgAlarmResType OBJECT-TYPE
SYNTAX INTEGER {
slotindex(1), --告警源:板卡
pwindex(2), --告警源PW
lspindex(3), --告警源LSP
loifindex(4), --告警源LOOPBACK口
agifindex(5), --告警源AG口
apifindex(6), --告警源AP口
obifindex(7), --告警源OUTBAND口
tdmifindex(8), --告警源TDM口
tunnelifindex(9), --告警源TRUNK口
vlanifindex(10), --告警源VLAN口
subifindex(11), --告警源SUBIF口
portindex(12), --告警源:端口
apagsubifindex(13), --告警源AP,AG,子接口
powerindex(14), --告警源:电源
fanindex(15), --告警源:风扇
boardindex(16), --告警源:板卡,电源,风扇
cfmindex(17),
erpsindex(18),
apsindex(19),
bfdindex(20),
ldpindex(21),
lsaindex(22),
ifindex(23),
cpuindex(24),
tdmsubifindex(25),
tdmtdmsubifindex(26),
stmifindex(27),
stmsubifindex(28),
stmsubtdmtdmsubindex(29),
stmvcindex(30),
eponifindex(31),
eonuifindex(32),
eonusubifindex(33),
apeponifindex(34),
apagvlansubifindex(35)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"First index of alarm Mgmt config table.The type of Alarm Resoure."
::= { rosMgmtAlarmMgmtCfgEntry 2 }
rosMgmtAlarmMgmtCfgAlarmRes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Second index of alarm Mgmt config table.The value of Alarm Resoure."
::= { rosMgmtAlarmMgmtCfgEntry 3 }
rosMgmtAlarmMgmtCfgClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The swith of alarm clear,when open the swith, the related active alarm entry will be deleted from alarm active table."
DEFVAL { false }
::= { rosMgmtAlarmMgmtCfgEntry 4 }
rosMgmtAlarmMgmtCfgMonitorEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable alarm Monitor."
DEFVAL { true }
::= { rosMgmtAlarmMgmtCfgEntry 5 }
rosMgmtAlarmMgmtCfgReportEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable alarm Report."
DEFVAL { true }
::= { rosMgmtAlarmMgmtCfgEntry 6 }
rosMgmtAlarmMgmtCfgInverseMode OBJECT-TYPE
SYNTAX AlarmInverseMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Inverse Mode."
DEFVAL { none }
::= { rosMgmtAlarmMgmtCfgEntry 7 }
--end of alarm config
rosMgmtAlarmMgmtMonitorLevel OBJECT-TYPE
SYNTAX INTEGER {
clear(1),
indeterminate(2),
critical(3),
major(4),
minor(5),
warning(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The level of Alarm Monitor."
DEFVAL { minor }
::= { rosMgmtAlarmMgmtScalarGroup 7}
rosMgmtAlarmMgmtClearLevel OBJECT-TYPE
SYNTAX INTEGER {
clear(1),
indeterminate(2),
critical(3),
major(4),
minor(5),
warning(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The level of Alarm Monitor."
::= { rosMgmtAlarmMgmtScalarGroup 8}
rosMgmtAlarmMgmtMonitor OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable Alarm Monitor."
DEFVAL { true }
::= { rosMgmtAlarmMgmtScalarGroup 9 }
rosMgmtAlarmMgmtCorrelationInhibit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable Alarm CorrelationInhibit."
DEFVAL { true }
::= { rosMgmtAlarmMgmtScalarGroup 10 }
rosMgmtAlarmMgmtReport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable Alarm Report."
DEFVAL { true }
::= { rosMgmtAlarmMgmtScalarGroup 11 }
-- rosMgmtAlarmMgmtCfgOutPutTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF RaisecomAlarmMgmtCfgOutPutEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "This table specifies the information of alarm configuration."
-- ::= { rosMgmtAlarmMgmtObejcts 14 }
--
-- rosMgmtAlarmMgmtCfgOutPutEntry OBJECT-TYPE
-- SYNTAX RaisecomAlarmMgmtCfgOutPutEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "A row in this table represents the configuration of specified alarm."
-- INDEX { rosMgmtAlarmMgmtAlarmOutputGroupIndex, rosMgmtAlarmMgmtAlarmOutputType}
-- ::= { rosMgmtAlarmMgmtCfgOutPutTable 1 }
--
-- RaisecomAlarmMgmtCfgOutPutEntry ::= SEQUENCE {
-- rosMgmtAlarmMgmtAlarmOutputGroupIndex INTEGER,
-- rosMgmtAlarmMgmtAlarmOutputType Unsigned32,
-- rosMgmtAlarmMgmtAlarmOutputRowStatus TruthValue
-- }
--
-- rosMgmtAlarmMgmtAlarmOutputGroupIndex OBJECT-TYPE
-- SYNTAX INTEGER (1..2)
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "The index of alarm Mgmt OutputGroup table."
-- ::= { rosMgmtAlarmMgmtCfgOutPutEntry 1}
--
-- rosMgmtAlarmMgmtAlarmOutputType OBJECT-TYPE
-- SYNTAX Unsigned32
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "Third index of alarm Mgmt config table.The type of Alarm."
-- ::= { rosMgmtAlarmMgmtCfgOutPutEntry 2 }
--
-- rosMgmtAlarmMgmtAlarmOutputRowStatus OBJECT-TYPE
-- SYNTAX TruthValue
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Enable or disable Alarm Output"
-- DEFVAL { true }
-- ::= { rosMgmtAlarmMgmtCfgOutPutEntry 3}
--
--
-- rosMgmtAlarmMgmtCfgOutPutGroupTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF RaisecomAlarmMgmtCfgOutPutGroupEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "This table specifies the information of alarm configuration."
-- ::= { rosMgmtAlarmMgmtObejcts 15 }
--
-- rosMgmtAlarmMgmtCfgOutPutGroupEntry OBJECT-TYPE
-- SYNTAX RaisecomAlarmMgmtCfgOutPutGroupEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "A row in this table represents the configuration of specified alarm."
-- INDEX { rosMgmtAlarmMgmtAlarmOutputgrpIndex}
-- ::= { rosMgmtAlarmMgmtCfgOutPutGroupTable 1 }
--
-- RaisecomAlarmMgmtCfgOutPutGroupEntry ::= SEQUENCE {
-- rosMgmtAlarmMgmtAlarmOutputgrpIndex INTEGER,
-- rosMgmtAlarmMgmtAlarmOutputEnable EnableVar
-- }
--
-- rosMgmtAlarmMgmtAlarmOutputgrpIndex OBJECT-TYPE
-- SYNTAX INTEGER (1..2)
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "The index of alarm Mgmt OutputGroup table."
-- ::= { rosMgmtAlarmMgmtCfgOutPutGroupEntry 1}
--
-- rosMgmtAlarmMgmtAlarmOutputEnable OBJECT-TYPE
-- SYNTAX EnableVar
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Third index of alarm Mgmt config table.The type of Alarm."
-- ::= { rosMgmtAlarmMgmtCfgOutPutGroupEntry 2 }
END

View File

@ -0,0 +1,141 @@
--MibName=raisecomCommonManagement
-- =======================================================================
-- Version info
--
-- Version 0.1 Created 2002.5.24 by GONGGUIDONG
-- This version of MIB is created just for management of base and user.
-- Added raisecomClockGroup.raisecomClockMode sub-node by XueChaomin 20081220
-- remove UserManage and OnlineUpgrade group by guoxiaodan 20070716
-- removed keepalve group by LIAOBIN 20070709
-- raisecomEnableLogMethod add localradius radiuslocal by yjg 20070112
-- modify RaisecomUserEntry by cjy 20060616
-- add raisecomEnableLogPassword¡¢raisecomEnableLogOldPassword by cjy 20060616
-- add rcNotificationGroup by gongguidong 20041208
-- add raisecomUserStatus by gongguidong 20040205
-- add online Upgrade group by gongguidong 20040205
-- Copyright(c) 2003-2005 by RAISECOM TECH, Ltd.
-- =======================================================================
-- ===========================================================================
--
-- RAISECOM base management objects
--
ROSMGMT-COMMON-MANAGEMENT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE ,
Integer32
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC
EnableVar
FROM SWITCH-TC
rosMgmt
FROM RAISECOM-BASE-MIB;
rosMgmtCommonManagement MODULE-IDENTITY
LAST-UPDATED "202004120000Z"
ORGANIZATION "RAISECOM TECH, Ltd."
CONTACT-INFO "www.raisecom.com"
DESCRIPTION
"The MIB module defining objects for common management"
REVISION "202004120000Z"
DESCRIPTION "MIB file check and modification"
::= { rosMgmt 2}
rosMgmtCommonFunctionGroup OBJECT IDENTIFIER ::= {rosMgmtCommonManagement 1}
rosMgmtCommonNotifications OBJECT IDENTIFIER ::= { rosMgmtCommonFunctionGroup 0 }
rosMgmtCommonObjects OBJECT IDENTIFIER ::= { rosMgmtCommonFunctionGroup 1 }
rosMgmtCommonConformance OBJECT IDENTIFIER ::= { rosMgmtCommonFunctionGroup 2 }
rosMgmtLoadcfg OBJECT IDENTIFIER ::= { rosMgmtCommonObjects 1 }
rosMgmtAutoWrite OBJECT IDENTIFIER ::= { rosMgmtCommonObjects 2 }
rosMgmtLoadcfgScalar OBJECT IDENTIFIER ::= { rosMgmtLoadcfg 1 }
rosMgmtConfigLoadOperation OBJECT-TYPE
SYNTAX INTEGER{
ready(1),
saving(2),
erasing(3),
reboot(4),
restore(5),
reload(6),
backupsaving(7),
cpoyStaConf2BackConf(8),
cpoyBackConf2StaConf(9),
switStaConfBackConf(10),
backuperasing(11),
eraseStartupconfig(12),
eraseStartupconfigAll(13),
savingall(14)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Syetem Load Configuration .Includes to erase the start-up config,
or to save the running config."
::= { rosMgmtLoadcfgScalar 1 }
rosMgmtConfigLoadNotificationOnCompletion OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether or not a raisecomConfigLoadOnCompletion
notification should be issued on completion of some
operation . If such a notification is desired, it is the
responsibility of the management entity to ensure that the
SNMP administrative model is configured in such a way as to
allow the notification to be delivered."
DEFVAL { false }
::= { rosMgmtLoadcfgScalar 2 }
rosMgmtConfigLoadState OBJECT-TYPE
SYNTAX INTEGER {
ready(1),
running(2),
successful(3),
failed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the state of this load configuration."
::= { rosMgmtLoadcfgScalar 3 }
rosMgmtAutoWritecfgEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set/get auto writing configuration status."
DEFVAL { enable }
::= { rosMgmtAutoWrite 1 }
rosMgmtAutoWritecfgInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Interval time of auto save module."
::= { rosMgmtAutoWrite 2 }
rosMgmtConfigLoadCompletion NOTIFICATION-TYPE
OBJECTS {
rosMgmtConfigLoadOperation,
rosMgmtConfigLoadState }
STATUS current
DESCRIPTION
"A raisecomConfigLoadeCompletion trap is sent when saving
or erasing the configuration file. "
::= { rosMgmtCommonNotifications 1}
END

View File

@ -0,0 +1,142 @@
--MibName=rosMgmtMemory
-- =======================================================================
-- Version info
--
-- Version 0.1 Created 2003.12.17 by GONGGUIDONG
-- This version of MIB is created just for the use of Network Management Systems
-- display the memory and cpu.
--
-- Copyright(c) 2002-2005 by RAISECOM TECH, Ltd.
--
-- =======================================================================
ROSMGMT-MEMORY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
NOTIFICATION-TYPE,
OBJECT-TYPE,
Integer32
FROM SNMPv2-SMI
EnableVar
FROM SWITCH-TC
rosMgmtSystem
FROM ROSMGMT-SYSTEM-MIB;
rosMgmtMemory MODULE-IDENTITY
LAST-UPDATED "202004120000Z"
ORGANIZATION "RAISECOM TECH, Ltd."
CONTACT-INFO "www.raisecom.com"
DESCRIPTION
"raisecom System objects: memory objects."
REVISION "202004120000Z"
DESCRIPTION "MIB file check and modification"
::= { rosMgmtSystem 3 }
rosMgmtMemoryNotifications OBJECT IDENTIFIER ::= { rosMgmtMemory 0 }
rosMgmtMemoryObjects OBJECT IDENTIFIER ::= { rosMgmtMemory 1 }
rosMgmtMemoryConformance OBJECT IDENTIFIER ::= { rosMgmtMemory 2 }
-- 1.3.6.1.4.1.8886.60.1.3.0.1
rosMgmtMemoryTrap NOTIFICATION-TYPE
OBJECTS { rosMgmtMemoryTotal, rosMgmtMemoryUtil, rosMgmtMemoryThrshd }
STATUS current
DESCRIPTION
"Trap transfer when memory utilization upon threshold."
::= { rosMgmtMemoryNotifications 1 }
-- 1.3.6.1.4.1.8886.60.1.3.0.2
rosMgmtMemoryTrapRecover NOTIFICATION-TYPE
OBJECTS { rosMgmtMemoryTotal, rosMgmtMemoryUtil,rosMgmtMemoryThrshdRecover }
STATUS current
DESCRIPTION
"Trap transfer when memory utilization upon thresholdrecover."
::= { rosMgmtMemoryNotifications 2 }
--
-- rosMgmtMemoryScalarGroup
--
-- 1.3.6.1.4.1.8886.60.1.3.1.1
rosMgmtMemoryScalarGroup OBJECT IDENTIFIER ::= { rosMgmtMemoryObjects 1 }
-- 1.3.6.1.4.1.8886.60.1.3.1.1.1
rosMgmtMemoryTotal OBJECT-TYPE
SYNTAX Integer32
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total memory of the system for this duration."
::= { rosMgmtMemoryScalarGroup 1 }
-- 1.3.6.1.4.1.8886.60.1.3.1.1.2
rosMgmtMemoryAvailable OBJECT-TYPE
SYNTAX Integer32
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The available memory of the system for this duration."
::= { rosMgmtMemoryScalarGroup 2 }
-- 1.3.6.1.4.1.8886.60.1.3.1.1.3
rosMgmtMemoryUtil OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..8))
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of memory utilization for this duration."
::= { rosMgmtMemoryScalarGroup 3 }
-- 1.3.6.1.4.1.8886.60.1.3.1.1.4
rosMgmtMemoryTrapEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The switch of memory trap."
::= { rosMgmtMemoryScalarGroup 4 }
-- 1.3.6.1.4.1.8886.60.1.3.1.1.5
rosMgmtMemoryThrshd OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold of memory monitor."
::= { rosMgmtMemoryScalarGroup 5 }
-- 1.3.6.1.4.1.8886.60.1.3.1.1.6
rosMgmtMemoryThrshdRecover OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The recover threshold of memory monitor."
::= { rosMgmtMemoryScalarGroup 6 }
-- 1.3.6.1.4.1.8886.60.1.3.1.1.7
rosMgmtMemoryMonInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timer interval of memory monitor."
::= { rosMgmtMemoryScalarGroup 7 }
END

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,675 @@
--MibName=raisecomSystem
-- =======================================================================
-- Version info
--
-- Version 0.1 Created 2003.12.17 by GONGGUIDONG
-- This version of MIB is created just for the use of Network Management Systems
-- display the memory and cpu.
--
-- Copyright(c) 2002-2005 by RAISECOM TECH, Ltd.
-- modify history
-- 01, 20131012, huxiangfeng, Add two traps.
-- 01, 20090915, qiyun, Add CPU monitor MIBs.
--
-- =======================================================================
ROSMGMT-SYSTEM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY ,
NOTIFICATION-TYPE,
Integer32,
OBJECT-TYPE
FROM SNMPv2-SMI
rosMgmt
FROM RAISECOM-BASE-MIB
EnableVar
FROM SWITCH-TC
TimeStamp,TEXTUAL-CONVENTION
FROM SNMPv2-TC;
rosMgmtSystem MODULE-IDENTITY
LAST-UPDATED "202004120000Z"
ORGANIZATION "RAISECOM TECH, Ltd."
CONTACT-INFO "www.raisecom.com"
DESCRIPTION
"raisecom System objects: objects common to all platforms."
REVISION "202004120000Z"
DESCRIPTION "MIB file check and modification"
::= { rosMgmt 1 }
--
-- Textual Conventions
--
ProcessStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Status of the process."
SYNTAX INTEGER
{
rrunning(1),
dinterruptiblesleep(2),
suninterruptiblesleep(3),
tstopped(4),
zzombie(5),
xdead(6),
wpaging(7)
}
CPUTimeStamp ::= TEXTUAL-CONVENTION
DISPLAY-HINT "4d.4d.4d.4d"
STATUS current
DESCRIPTION
"The time in seconds that could represent signed
quantities like time delay with respect to some
source. The signed integer part is in the first
32 bits and the fraction part is in the last 32 bits."
REFERENCE
"D.L. Mills, 'Network Time Protocol (Version 3)',
RFC-1305, March 1992, Sections 2, 3.2.1"
SYNTAX OCTET STRING (SIZE (16))
--
-- RAISECOM CPU objects
--
rosMgmtCpu OBJECT IDENTIFIER ::= { rosMgmtSystem 1 }
--rosMgmtCpuTrapGroup
rosMgmtCpuNotifications OBJECT IDENTIFIER ::= { rosMgmtCpu 0 }
rosMgmtCpuObjects OBJECT IDENTIFIER ::= { rosMgmtCpu 1 }
rosMgmtCpuConformance OBJECT IDENTIFIER ::= { rosMgmtCpu 2 }
--rosMgmtCpuNotifications
rosMgmtCpuRisingThreshold NOTIFICATION-TYPE
OBJECTS { rosMgmtProcessIndex, rosMgmtProcessUtilization,rosMgmtCpuUtilizationCpuIdx, rosMgmtCpuUtilization }
STATUS current
DESCRIPTION
"CPU utilization rising threshold trap transfer."
::= { rosMgmtCpuNotifications 1 }
rosMgmtCpuRisingThresholdRecover NOTIFICATION-TYPE
OBJECTS {rosMgmtCpuUtilizationCpuIdx, rosMgmtCpuUtilization }
STATUS current
DESCRIPTION
"CPU utilization rising threshold return to normal trap transfer."
::= { rosMgmtCpuNotifications 2 }
--rosMgmtCpuScalarGroup
rosMgmtCpuScalarGroup OBJECT IDENTIFIER
::= { rosMgmtCpuObjects 1}
rosMgmtCpuTotalProcNum OBJECT-TYPE
SYNTAX Integer32 (1..2000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of processes."
::= { rosMgmtCpuScalarGroup 1}
rosMgmtCpuHistoryTableSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value configured by the user which specifies
the number of reports in the history table."
DEFVAL { 60 }
::= { rosMgmtCpuScalarGroup 2}
rosMgmtCpuThresholdTrapEnable OBJECT-TYPE
SYNTAX EnableVar
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The administration status of the CPU utilization threshold trap."
::= { rosMgmtCpuScalarGroup 3}
rosMgmtCpuRisingThresholdValue OBJECT-TYPE
SYNTAX Integer32 (2..99)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The percentage rising threshold value configured by the user.
The value indicates, if the CPU utilization which rise from
rosMgmtCpuFallingThresholdValue is equal to or above this value
for rosMgmtCpuThresholdInterval duration then send
a rosMgmtCpuRisingThreshold notification to the NMS."
DEFVAL { 99 }
::= { rosMgmtCpuScalarGroup 4}
rosMgmtCpuRecoverThresholdValue OBJECT-TYPE
SYNTAX Integer32 (0..98)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The percentage falling threshold value configured by the user.
The value indicates, if the CPU utilization which fell from
rosMgmtCpuRecoverThresholdValue is equal to or below this value
for rosMgmtCpuThresholdInterval duration then send
a rosMgmtCpuFallingThreshold notification to the NMS."
DEFVAL { 79 }
::= { rosMgmtCpuScalarGroup 5}
rosMgmtCpuThresholdInterval OBJECT-TYPE
SYNTAX Integer32 (5..36000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an observation interval.
The value of this object indicates that the CPU utilization
should be above rosMgmtCpuRisingThresholdValue for this
duration to send a rosMgmtCpuRisingThreshold notification
to the NMS or below rosMgmtCpuFallingThresholdValue for
this duration to send a rosMgmtCpuFallingThreshold."
DEFVAL { 60 }
::= { rosMgmtCpuScalarGroup 6}
rosMgmtCpuNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of cpu."
::= { rosMgmtCpuScalarGroup 7}
--rosMgmtCpuTableGroup
rosMgmtCpuTableGroup OBJECT IDENTIFIER
::= { rosMgmtCpuObjects 2}
--rosMgmtCpuUtilizationGroup
rosMgmtCpuUtilizationGroup OBJECT IDENTIFIER
::= { rosMgmtCpuTableGroup 1 }
--rosMgmtCpuUtilizationTable
rosMgmtCpuUtilizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtCpuUtilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about multi-core CPU utilization."
::= { rosMgmtCpuUtilizationGroup 1 }
rosMgmtCpuUtilizationEntry OBJECT-TYPE
SYNTAX RosMgmtCpuUtilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the CPU utilization."
INDEX { rosMgmtCpuUtilizationPeriod,rosMgmtCpuUtilizationCpuIdx }
::= { rosMgmtCpuUtilizationTable 1 }
RosMgmtCpuUtilizationEntry ::= SEQUENCE {
rosMgmtCpuUtilizationPeriod INTEGER,
rosMgmtCpuUtilizationCpuIdx Integer32,
rosMgmtCpuUtilization Integer32
}
rosMgmtCpuUtilizationPeriod OBJECT-TYPE
SYNTAX INTEGER {
oneSec(1),
fiveSec(2),
oneMin(3),
tenMin(4),
twoHour(5)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Periods for computing CPU utilization."
::= { rosMgmtCpuUtilizationEntry 1 }
rosMgmtCpuUtilizationCpuIdx OBJECT-TYPE
SYNTAX Integer32 (0..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cpu core index"
::= { rosMgmtCpuUtilizationEntry 2 }
rosMgmtCpuUtilization OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU busy percentage in the last specified period."
::= { rosMgmtCpuUtilizationEntry 3 }
--rosMgmtTotalCPUUtilizationTable
rosMgmtTotalCPUUtilizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtTotalCPUUtilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about total CPU utilization."
::= { rosMgmtCpuUtilizationGroup 2 }
rosMgmtTotalCPUUtilizationEntry OBJECT-TYPE
SYNTAX RosMgmtTotalCPUUtilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { rosMgmtTotalCPUPeriod }
::= { rosMgmtTotalCPUUtilizationTable 1 }
RosMgmtTotalCPUUtilizationEntry ::= SEQUENCE {
rosMgmtTotalCPUPeriod INTEGER,
rosMgmtTotalCPUUtilization Integer32
}
rosMgmtTotalCPUPeriod OBJECT-TYPE
SYNTAX INTEGER {
oneSec(1),
fiveSec(2),
oneMin(3),
tenMin(4),
twoHour(5)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Periods for computing CPU utilization."
::= { rosMgmtTotalCPUUtilizationEntry 1 }
rosMgmtTotalCPUUtilization OBJECT-TYPE
SYNTAX Integer32 (0..10000)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU busy percentage in the last specified period."
::= { rosMgmtTotalCPUUtilizationEntry 2 }
--rosMgmtCpuHistoryTable
rosMgmtCpuHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtCpuHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains CPU hsitory utilization records."
::= { rosMgmtCpuUtilizationGroup 3}
rosMgmtCpuHistoryEntry OBJECT-TYPE
SYNTAX RosMgmtCpuHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CPU history utilization record."
INDEX { rosMgmtCpuHistoryPeriod, rosMgmtCpuHistoryIndex,rosMgmtCpuHistoryCpuIdx }
::= { rosMgmtCpuHistoryTable 1 }
RosMgmtCpuHistoryEntry ::= SEQUENCE {
rosMgmtCpuHistoryPeriod INTEGER,
rosMgmtCpuHistoryIndex Integer32,
rosMgmtCpuHistoryCpuIdx Integer32,
rosMgmtCpuHistoryUtil Integer32
}
rosMgmtCpuHistoryPeriod OBJECT-TYPE
SYNTAX INTEGER {
fiveSec(1),
oneMin(2),
tenMin(3),
twoHour(4)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Periods for computing CPU history utilization, the first index of CPU history utilization table."
::= { rosMgmtCpuHistoryEntry 1 }
rosMgmtCpuHistoryIndex OBJECT-TYPE
SYNTAX Integer32 (1..60)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Process sequence number,the second index of CPU history utilization table."
::= { rosMgmtCpuHistoryEntry 2 }
rosMgmtCpuHistoryCpuIdx OBJECT-TYPE
SYNTAX Integer32 (0..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cpu core index"
::= { rosMgmtCpuHistoryEntry 3 }
rosMgmtCpuHistoryUtil OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"History record of CPU utilization in the specified period. "
::= { rosMgmtCpuHistoryEntry 4 }
--rosMgmtTotalCPUHistoryTable
rosMgmtTotalCPUHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtTotalCPUHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains CPU hsitory utilization records."
::= { rosMgmtCpuUtilizationGroup 4}
rosMgmtTotalCPUHistoryEntry OBJECT-TYPE
SYNTAX RosMgmtTotalCPUHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CPU history utilization record."
INDEX { rosMgmtTotalCPUHistoryPeriod, rosMgmtTotalCPUHistoryIndex }
::= { rosMgmtTotalCPUHistoryTable 1 }
RosMgmtTotalCPUHistoryEntry ::= SEQUENCE {
rosMgmtTotalCPUHistoryPeriod INTEGER,
rosMgmtTotalCPUHistoryIndex Integer32,
rosMgmtTotalCPUHistoryUtil Integer32
}
rosMgmtTotalCPUHistoryPeriod OBJECT-TYPE
SYNTAX INTEGER {
fiveSec(1),
oneMin(2),
tenMin(3),
twoHour(4)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Periods for computing CPU history utilization, the first index of CPU history utilization table."
::= { rosMgmtTotalCPUHistoryEntry 1 }
rosMgmtTotalCPUHistoryIndex OBJECT-TYPE
SYNTAX Integer32 (1..60)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Process sequence number,the second index of CPU history utilization table."
::= { rosMgmtTotalCPUHistoryEntry 2 }
rosMgmtTotalCPUHistoryUtil OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"History record of CPU utilization in the specified period. "
::= { rosMgmtTotalCPUHistoryEntry 3 }
--rosMgmtCpuProcessesGroup
rosMgmtCpuProcessesGroup OBJECT IDENTIFIER
::= { rosMgmtCpuTableGroup 2 }
--rosMgmtProcessesTable
rosMgmtProcessesTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtProcessesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about processes."
::= { rosMgmtCpuProcessesGroup 1 }
rosMgmtProcessesEntry OBJECT-TYPE
SYNTAX RosMgmtProcessesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about processes."
INDEX { rosMgmtProcessIndex }
::= { rosMgmtProcessesTable 1 }
RosMgmtProcessesEntry ::= SEQUENCE {
rosMgmtProcessIndex Integer32,
rosMgmtProcessPID Integer32,
rosMgmtProcessName OCTET STRING,
rosMgmtProcessRunTimeTotal CPUTimeStamp,
rosMgmtProcessInvokedTotal Integer32,
rosMgmtProcessTimeCreated TimeStamp,
rosMgmtProcessCurrentPriority Integer32,
rosMgmtProcessStatus ProcessStatus
}
rosMgmtProcessIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object index of processes table. This index is PID."
::= { rosMgmtProcessesEntry 1 }
rosMgmtProcessPID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the process ID."
::= { rosMgmtProcessesEntry 2 }
rosMgmtProcessName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name associated with this process."
::= { rosMgmtProcessesEntry 3 }
rosMgmtProcessRunTimeTotal OBJECT-TYPE
SYNTAX CPUTimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time the process occupied, in microseconds."
::= { rosMgmtProcessesEntry 4 }
rosMgmtProcessInvokedTotal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times since rosMgmtProcessTimeCreated
that the process has been invoked."
::= { rosMgmtProcessesEntry 5 }
rosMgmtProcessTimeCreated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the process was created.
The process sequence number and the time
when the process was created, uniquely identifies a process."
::= { rosMgmtProcessesEntry 6 }
rosMgmtProcessCurrentPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current priority at which the process is running."
::= { rosMgmtProcessesEntry 7 }
rosMgmtProcessStatus OBJECT-TYPE
SYNTAX ProcessStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the process."
::= { rosMgmtProcessesEntry 8 }
--rosMgmtProcessStatisticsTable
rosMgmtProcessStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtProcessStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains statistics information for processes.
The first index is rosMgmtProcessIndex,
the second index is rosMgmtProcessStatisticsPeriod"
::= { rosMgmtCpuProcessesGroup 2 }
rosMgmtProcessStatisticsEntry OBJECT-TYPE
SYNTAX RosMgmtProcessStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Statistics information for processes."
INDEX { rosMgmtProcessIndex, rosMgmtProcessStatisticsPeriod }
::= { rosMgmtProcessStatisticsTable 1 }
RosMgmtProcessStatisticsEntry ::= SEQUENCE {
rosMgmtProcessStatisticsPeriod INTEGER,
rosMgmtProcessRunTime CPUTimeStamp,
rosMgmtProcessUtilization Integer32
}
rosMgmtProcessStatisticsPeriod OBJECT-TYPE
SYNTAX INTEGER {
fiveSec(1),
oneMin(2),
tenMin(3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Periods for process statistics,
the second index of process statistics table."
::= { rosMgmtProcessStatisticsEntry 1 }
rosMgmtProcessRunTime OBJECT-TYPE
SYNTAX CPUTimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time of the process occupied in the specified period."
::= { rosMgmtProcessStatisticsEntry 2 }
rosMgmtProcessUtilization OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides a general idea of how busy
a process caused the processor to be over a specified period."
::= { rosMgmtProcessStatisticsEntry 3 }
--rosMgmtDeadProcessesTable
rosMgmtDeadProcessesTable OBJECT-TYPE
SYNTAX SEQUENCE OF RosMgmtDeadProcessesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains dead processes information."
::= { rosMgmtCpuProcessesGroup 3 }
rosMgmtDeadProcessesEntry OBJECT-TYPE
SYNTAX RosMgmtDeadProcessesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Dead processes information."
INDEX { rosMgmtDeadProcessIndex }
::= { rosMgmtDeadProcessesTable 1 }
RosMgmtDeadProcessesEntry ::= SEQUENCE {
rosMgmtDeadProcessIndex Integer32 ,
rosMgmtDeadProcessName OCTET STRING,
rosMgmtDeadProcessPriority Integer32,
rosMgmtDeadProcessTimeDelete TimeStamp,
rosMgmtDeadProcessDeadTimes Integer32,
rosMgmtDeadProcessStatus ProcessStatus
}
rosMgmtDeadProcessIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Process sequence number,the index of dead processes table. The index is PID."
::= { rosMgmtDeadProcessesEntry 1 }
rosMgmtDeadProcessName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name associated with this dead process."
::= { rosMgmtDeadProcessesEntry 2 }
rosMgmtDeadProcessPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority at which the dead process."
::= { rosMgmtDeadProcessesEntry 3 }
rosMgmtDeadProcessTimeDelete OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the process was deleted."
::= { rosMgmtDeadProcessesEntry 4}
rosMgmtDeadProcessDeadTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Times of the process dead."
::= { rosMgmtDeadProcessesEntry 5 }
rosMgmtDeadProcessStatus OBJECT-TYPE
SYNTAX ProcessStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the dead process."
::= { rosMgmtDeadProcessesEntry 6}
END

View File

@ -0,0 +1,127 @@
--MibName=rosMgmtVersion
-- =======================================================================
-- Version info
--
-- Version 0.1 Created 2019.09.10 by wanghaisheng
-- This version of MIB is created just for the use of Network Management Systems
-- display the version info of the device.
--
-- Copyright(c) 2002-2019 by RAISECOM TECH, Ltd.
-- modify history
-- 02, 20200407, wanghaisheng, add rosMgmtSoftVersion.
-- 01, 20190915, wanghaisheng, Created.
--
-- =======================================================================
ROSMGMT-VERSION-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
MacAddress FROM SNMPv2-TC
rosMgmt FROM RAISECOM-BASE-MIB
;
rosMgmtVersion MODULE-IDENTITY
LAST-UPDATED "201909100000Z"
ORGANIZATION "Raisecom Science & Technology Co., ltd"
CONTACT-INFO "www.rosMgmt.com"
DESCRIPTION
"The device version info Enterprise MIB definition."
REVISION "201909100000Z" -- 10 September 2019
DESCRIPTION
"RAISECOM ALARM MIB initial version."
::= { rosMgmt 131 }
--rosMgmtVersionNotifications OBJECT IDENTIFIER ::= { rosMgmtVersion 0 }
rosMgmtVersionObjects OBJECT IDENTIFIER ::= { rosMgmtVersion 1 }
rosMgmtVersionScalarGroup OBJECT IDENTIFIER ::= { rosMgmtVersionObjects 1 }
rosMgmtRosVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ros software version."
::= { rosMgmtVersionScalarGroup 1 }
rosMgmtHardwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ros hardware version."
::= { rosMgmtVersionScalarGroup 2 }
rosMgmtBootstrapVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ros bootstrap version."
::= { rosMgmtVersionScalarGroup 3 }
rosMgmtSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the motherboard."
::= { rosMgmtVersionScalarGroup 4 }
rosMgmtFpgaVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ros fpga version."
::= { rosMgmtVersionScalarGroup 5 }
rosMgmtProductVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"product version"
::= { rosMgmtVersionScalarGroup 6 }
rosMgmtCmpAbName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"manufacturer abbreviated name"
::= { rosMgmtVersionScalarGroup 7 }
rosMgmtCmpFullName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"manufacturer full name"
::= { rosMgmtVersionScalarGroup 8 }
rosMgmtDeviceName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"device name"
::= { rosMgmtVersionScalarGroup 9 }
rosMgmtMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MAC address."
::= { rosMgmtVersionScalarGroup 10}
rosMgmtSoftVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version of the devcie."
::= { rosMgmtVersionScalarGroup 11}
END

4093
tests/data/raisecom-ros.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,504 @@
1.0.8802.1.1.2.1.3.7.1.3.272637955|4x|74656E6769676162697465746865726E0a363520373420333120324620333120324620333120303020
1.0.8802.1.1.2.1.3.7.1.3.272637959|4x|74656E6769676162697465746865726E0a363520373420333120324620333120324620333220303020
1.0.8802.1.1.2.1.3.7.1.3.272637963|4x|74656E6769676162697465746865726E0a363520373420333120324620333120324620333320303020
1.0.8802.1.1.2.1.3.7.1.3.272637967|4x|74656E6769676162697465746865726E0a363520373420333120324620333120324620333420303020
1.0.8802.1.1.2.1.3.7.1.3.272646147|4x|6769676165746865726E6574312F322F0a333120303020
1.0.8802.1.1.2.1.3.7.1.3.272646151|4x|6769676165746865726E6574312F322F0a333220303020
1.0.8802.1.1.2.1.3.7.1.3.272646155|4x|6769676165746865726E6574312F322F0a333320303020
1.0.8802.1.1.2.1.3.7.1.3.272646159|4x|6769676165746865726E6574312F322F0a333420303020
1.0.8802.1.1.2.1.3.7.1.3.272646163|4x|6769676165746865726E6574312F322F0a333520303020
1.0.8802.1.1.2.1.3.7.1.3.272646167|4x|6769676165746865726E6574312F322F0a333620303020
1.0.8802.1.1.2.1.3.7.1.3.272646171|4x|6769676165746865726E6574312F322F0a333720303020
1.0.8802.1.1.2.1.3.7.1.3.272646175|4x|6769676165746865726E6574312F322F0a333820303020
1.0.8802.1.1.2.1.3.7.1.3.272646179|4x|6769676165746865726E6574312F322F0a333920303020
1.0.8802.1.1.2.1.3.7.1.3.272646183|4x|6769676165746865726E6574312F322F0a333120333020303020
1.0.8802.1.1.2.1.3.7.1.3.272646187|4x|6769676165746865726E6574312F322F0a333120333120303020
1.0.8802.1.1.2.1.3.7.1.3.272646191|4x|6769676165746865726E6574312F322F0a3331203332203030
1.0.8802.1.1.2.1.4.1.1.4.0.272637955.1|2|4
1.0.8802.1.1.2.1.4.1.1.4.0.272637959.1|2|4
1.0.8802.1.1.2.1.4.1.1.5.0.272637955.1|4x|F8130852E465
1.0.8802.1.1.2.1.4.1.1.5.0.272637959.1|4x|F813084BC465
1.0.8802.1.1.2.1.4.1.1.6.0.272637955.1|2|7
1.0.8802.1.1.2.1.4.1.1.6.0.272637959.1|2|7
1.0.8802.1.1.2.1.4.1.1.7.0.272637955.1|4|1292566538
1.0.8802.1.1.2.1.4.1.1.7.0.272637959.1|4|1292566538
1.0.8802.1.1.2.1.4.1.1.8.0.272637955.1|4|1/6/10, 1-Gig/10-Gig Ethernet, \to_goe-lab-rax-a\
1.0.8802.1.1.2.1.4.1.1.8.0.272637959.1|4|1/6/10, 1-Gig/10-Gig Ethernet, \to_goe-lab-rax-a:TGE1/1/2\
1.0.8802.1.1.2.1.4.1.1.9.0.272637955.1|4|goe-0-service-rt-a
1.0.8802.1.1.2.1.4.1.1.9.0.272637959.1|4|goe-0-service-rt-b
1.0.8802.1.1.2.1.4.1.1.10.0.272637955.1|4x|54694d4f532d422d32302e322e523120626f74682f686f70733634204e6f6b696120373235302049585220436f707972696768742028632920323030302d32303230204e6f6b69612e0a416c6c207269676874732072657365727665642e20416c6c20757365207375626a65637420746f206170706c696361626c65206c6963656e73652061677265656d656e74732e0d0a4275696c74206f6e20536174204665622032392031303a33393a3332205053542032303230206279206275696c64657220696e202f6275696c64732f632f323032422f52312f70616e6f732f6d61696e2f73726f730d
1.0.8802.1.1.2.1.4.1.1.10.0.272637959.1|4x|54694d4f532d422d32302e322e523120626f74682f686f70733634204e6f6b696120373235302049585220436f707972696768742028632920323030302d32303230204e6f6b69612e0a416c6c207269676874732072657365727665642e20416c6c20757365207375626a65637420746f206170706c696361626c65206c6963656e73652061677265656d656e74732e0d0a4275696c74206f6e20536174204665622032392031303a33393a3332205053542032303230206279206275696c64657220696e202f6275696c64732f632f323032422f52312f70616e6f732f6d61696e2f73726f730d
1.0.8802.1.1.2.1.4.1.1.11.0.272637955.1|4|00
1.0.8802.1.1.2.1.4.1.1.11.0.272637959.1|4|00
1.0.8802.1.1.2.1.4.1.1.12.0.272637955.1|4|00
1.0.8802.1.1.2.1.4.1.1.12.0.272637959.1|4|00
1.0.8802.1.1.2.1.4.2.1.3.0.272637955.1.1.10.49.55.50.46.49.55.46.48.46.56|2|2
1.0.8802.1.1.2.1.4.2.1.3.0.272637959.1.1.10.49.55.50.46.49.55.46.48.46.57|2|2
1.3.6.1.2.1.1.1.0|4|ROS_.RAX711-C-R.2020614.(null)
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8886.23.191
1.3.6.1.2.1.1.3.0|67|62100100
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.268435456|4|fastethernet1/0/1
1.3.6.1.2.1.2.2.1.2.272637955|4|tengigabitethernet1/1/1
1.3.6.1.2.1.2.2.1.2.272637959|4|tengigabitethernet1/1/2
1.3.6.1.2.1.2.2.1.2.272637963|4|tengigabitethernet1/1/3
1.3.6.1.2.1.2.2.1.2.272637967|4|tengigabitethernet1/1/4
1.3.6.1.2.1.2.2.1.2.272646147|4|gigaethernet1/2/1
1.3.6.1.2.1.2.2.1.2.272646151|4|gigaethernet1/2/2
1.3.6.1.2.1.2.2.1.2.272646155|4|gigaethernet1/2/3
1.3.6.1.2.1.2.2.1.2.272646159|4|gigaethernet1/2/4
1.3.6.1.2.1.2.2.1.2.272646163|4|gigaethernet1/2/5
1.3.6.1.2.1.2.2.1.2.272646167|4|gigaethernet1/2/6
1.3.6.1.2.1.2.2.1.2.272646171|4|gigaethernet1/2/7
1.3.6.1.2.1.2.2.1.2.272646175|4|gigaethernet1/2/8
1.3.6.1.2.1.2.2.1.2.272646179|4|gigaethernet1/2/9
1.3.6.1.2.1.2.2.1.2.272646183|4|gigaethernet1/2/10
1.3.6.1.2.1.2.2.1.2.272646187|4|gigaethernet1/2/11
1.3.6.1.2.1.2.2.1.2.272646191|4|gigaethernet1/2/12
1.3.6.1.2.1.2.2.1.3.268435456|2|6
1.3.6.1.2.1.2.2.1.3.272637955|2|6
1.3.6.1.2.1.2.2.1.3.272637959|2|6
1.3.6.1.2.1.2.2.1.3.272637963|2|6
1.3.6.1.2.1.2.2.1.3.272637967|2|6
1.3.6.1.2.1.2.2.1.3.272646147|2|6
1.3.6.1.2.1.2.2.1.3.272646151|2|6
1.3.6.1.2.1.2.2.1.3.272646155|2|6
1.3.6.1.2.1.2.2.1.3.272646159|2|6
1.3.6.1.2.1.2.2.1.3.272646163|2|6
1.3.6.1.2.1.2.2.1.3.272646167|2|6
1.3.6.1.2.1.2.2.1.3.272646171|2|6
1.3.6.1.2.1.2.2.1.3.272646175|2|6
1.3.6.1.2.1.2.2.1.3.272646179|2|6
1.3.6.1.2.1.2.2.1.3.272646183|2|6
1.3.6.1.2.1.2.2.1.3.272646187|2|6
1.3.6.1.2.1.2.2.1.3.272646191|2|6
1.3.6.1.2.1.2.2.1.4.268435456|2|1500
1.3.6.1.2.1.2.2.1.4.272637955|2|9198
1.3.6.1.2.1.2.2.1.4.272637959|2|9198
1.3.6.1.2.1.2.2.1.5.268435456|66|0
1.3.6.1.2.1.2.2.1.6.268435456|4x|A86D5F0B884D
1.3.6.1.2.1.2.2.1.6.272637955|4x|A86D5F0B884E
1.3.6.1.2.1.2.2.1.6.272637959|4x|A86D5F0B884F
1.3.6.1.2.1.2.2.1.7.268435456|2|1
1.3.6.1.2.1.2.2.1.7.272637955|2|1
1.3.6.1.2.1.2.2.1.7.272637959|2|1
1.3.6.1.2.1.2.2.1.7.272637963|2|1
1.3.6.1.2.1.2.2.1.7.272637967|2|1
1.3.6.1.2.1.2.2.1.7.272646147|2|1
1.3.6.1.2.1.2.2.1.7.272646151|2|1
1.3.6.1.2.1.2.2.1.7.272646155|2|1
1.3.6.1.2.1.2.2.1.7.272646159|2|1
1.3.6.1.2.1.2.2.1.7.272646163|2|1
1.3.6.1.2.1.2.2.1.7.272646167|2|1
1.3.6.1.2.1.2.2.1.7.272646171|2|1
1.3.6.1.2.1.2.2.1.7.272646175|2|1
1.3.6.1.2.1.2.2.1.7.272646179|2|1
1.3.6.1.2.1.2.2.1.7.272646183|2|1
1.3.6.1.2.1.2.2.1.7.272646187|2|1
1.3.6.1.2.1.2.2.1.7.272646191|2|1
1.3.6.1.2.1.2.2.1.8.268435456|2|1
1.3.6.1.2.1.2.2.1.8.272637955|2|1
1.3.6.1.2.1.2.2.1.8.272637959|2|1
1.3.6.1.2.1.2.2.1.8.272637963|2|2
1.3.6.1.2.1.2.2.1.8.272637967|2|2
1.3.6.1.2.1.2.2.1.8.272646147|2|2
1.3.6.1.2.1.2.2.1.8.272646151|2|2
1.3.6.1.2.1.2.2.1.8.272646155|2|2
1.3.6.1.2.1.2.2.1.8.272646159|2|2
1.3.6.1.2.1.2.2.1.8.272646163|2|2
1.3.6.1.2.1.2.2.1.8.272646167|2|2
1.3.6.1.2.1.2.2.1.8.272646171|2|2
1.3.6.1.2.1.2.2.1.8.272646175|2|2
1.3.6.1.2.1.2.2.1.8.272646179|2|2
1.3.6.1.2.1.2.2.1.8.272646183|2|2
1.3.6.1.2.1.2.2.1.8.272646187|2|2
1.3.6.1.2.1.2.2.1.8.272646191|2|2
1.3.6.1.2.1.2.2.1.9.268435456|67|5776
1.3.6.1.2.1.2.2.1.9.272637955|67|5781
1.3.6.1.2.1.2.2.1.9.272637959|67|5783
1.3.6.1.2.1.2.2.1.10.268435456|65|0
1.3.6.1.2.1.2.2.1.11.268435456|65|0
1.3.6.1.2.1.2.2.1.12.268435456|65|0
1.3.6.1.2.1.2.2.1.12.272637955|65|278974
1.3.6.1.2.1.2.2.1.12.272637959|65|278961
1.3.6.1.2.1.2.2.1.13.268435456|65|0
1.3.6.1.2.1.2.2.1.13.272637955|65|1781
1.3.6.1.2.1.2.2.1.13.272637959|65|17
1.3.6.1.2.1.2.2.1.14.268435456|65|0
1.3.6.1.2.1.2.2.1.14.272637955|65|0
1.3.6.1.2.1.2.2.1.14.272637959|65|0
1.3.6.1.2.1.2.2.1.15.268435456|65|0
1.3.6.1.2.1.2.2.1.16.268435456|65|0
1.3.6.1.2.1.2.2.1.17.268435456|65|0
1.3.6.1.2.1.2.2.1.18.268435456|65|0
1.3.6.1.2.1.2.2.1.18.272637955|65|1397318
1.3.6.1.2.1.2.2.1.18.272637959|65|1383326
1.3.6.1.2.1.2.2.1.19.268435456|65|0
1.3.6.1.2.1.2.2.1.19.272637955|65|0
1.3.6.1.2.1.2.2.1.19.272637959|65|0
1.3.6.1.2.1.2.2.1.20.268435456|65|0
1.3.6.1.2.1.2.2.1.20.272637955|65|0
1.3.6.1.2.1.2.2.1.20.272637959|65|0
1.3.6.1.2.1.4.22.1.1.0.1.2.1.10|2|0
1.3.6.1.2.1.4.22.1.2.0.1.2.1.10|4x|004268352DC1
1.3.6.1.2.1.4.22.1.2.0.78.2.1.10|4x|A86D5F009AD0
1.3.6.1.2.1.4.22.1.2.0.120.2.1.10|4x|F48E38C6FE18
1.3.6.1.2.1.4.39.1.2.134217728|2|2
1.3.6.1.2.1.10.166.3.2.1.0|66|49375
1.3.6.1.2.1.11.1.0|65|134026
1.3.6.1.2.1.11.2.0|65|134254
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|12
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|792728
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|85967
1.3.6.1.2.1.11.16.0|65|11644
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|134014
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|1
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.16.1.1.1.1.272637955|2|272637955
1.3.6.1.2.1.17.7.1.1.1.0|2|1
1.3.6.1.2.1.17.7.1.4.2.1.4.0.4095|4x|0100000002000000
1.3.6.1.2.1.17.7.1.4.2.1.5.0.4095|4x|0100000002000000
1.3.6.1.2.1.31.1.1.1.1.268435456|4|fastethernet1/0/1
1.3.6.1.2.1.31.1.1.1.1.272637955|4|tengigabitethernet1/1/1
1.3.6.1.2.1.31.1.1.1.1.272637959|4|tengigabitethernet1/1/2
1.3.6.1.2.1.31.1.1.1.1.272637963|4|tengigabitethernet1/1/3
1.3.6.1.2.1.31.1.1.1.1.272637967|4|tengigabitethernet1/1/4
1.3.6.1.2.1.31.1.1.1.1.272646147|4|gigaethernet1/2/1
1.3.6.1.2.1.31.1.1.1.1.272646151|4|gigaethernet1/2/2
1.3.6.1.2.1.31.1.1.1.1.272646155|4|gigaethernet1/2/3
1.3.6.1.2.1.31.1.1.1.1.272646159|4|gigaethernet1/2/4
1.3.6.1.2.1.31.1.1.1.1.272646163|4|gigaethernet1/2/5
1.3.6.1.2.1.31.1.1.1.1.272646167|4|gigaethernet1/2/6
1.3.6.1.2.1.31.1.1.1.1.272646171|4|gigaethernet1/2/7
1.3.6.1.2.1.31.1.1.1.1.272646175|4|gigaethernet1/2/8
1.3.6.1.2.1.31.1.1.1.1.272646179|4|gigaethernet1/2/9
1.3.6.1.2.1.31.1.1.1.1.272646183|4|gigaethernet1/2/10
1.3.6.1.2.1.31.1.1.1.1.272646187|4|gigaethernet1/2/11
1.3.6.1.2.1.31.1.1.1.1.272646191|4|gigaethernet1/2/12
1.3.6.1.2.1.31.1.1.1.2.272637955|65|278968
1.3.6.1.2.1.31.1.1.1.2.272637959|65|278956
1.3.6.1.2.1.31.1.1.1.3.272637955|65|4
1.3.6.1.2.1.31.1.1.1.3.272637959|65|4
1.3.6.1.2.1.31.1.1.1.4.272637955|65|1395858
1.3.6.1.2.1.31.1.1.1.4.272637959|65|1381895
1.3.6.1.2.1.31.1.1.1.5.272637955|65|1459
1.3.6.1.2.1.31.1.1.1.5.272637959|65|1431
1.3.6.1.2.1.31.1.1.1.6.272637955|70|80691622
1.3.6.1.2.1.31.1.1.1.6.272637959|70|87019979
1.3.6.1.2.1.31.1.1.1.7.272637955|70|451598
1.3.6.1.2.1.31.1.1.1.7.272637959|70|475165
1.3.6.1.2.1.31.1.1.1.8.272637955|70|278968
1.3.6.1.2.1.31.1.1.1.8.272637959|70|278956
1.3.6.1.2.1.31.1.1.1.9.272637955|70|4
1.3.6.1.2.1.31.1.1.1.9.272637959|70|4
1.3.6.1.2.1.31.1.1.1.10.272637955|70|217011747
1.3.6.1.2.1.31.1.1.1.10.272637959|70|218186999
1.3.6.1.2.1.31.1.1.1.11.272637955|70|441485
1.3.6.1.2.1.31.1.1.1.11.272637959|70|457611
1.3.6.1.2.1.31.1.1.1.12.272637955|70|1395859
1.3.6.1.2.1.31.1.1.1.12.272637959|70|1381895
1.3.6.1.2.1.31.1.1.1.13.272637955|70|1459
1.3.6.1.2.1.31.1.1.1.13.272637959|70|1431
1.3.6.1.2.1.31.1.1.1.15.268435456|66|0
1.3.6.1.2.1.31.1.1.1.15.272637955|66|10000
1.3.6.1.2.1.31.1.1.1.15.272637959|66|10000
1.3.6.1.2.1.31.1.1.1.15.272637963|66|0
1.3.6.1.2.1.31.1.1.1.15.272637967|66|0
1.3.6.1.2.1.31.1.1.1.15.272646147|66|0
1.3.6.1.2.1.31.1.1.1.15.272646151|66|0
1.3.6.1.2.1.31.1.1.1.15.272646155|66|0
1.3.6.1.2.1.31.1.1.1.15.272646159|66|0
1.3.6.1.2.1.31.1.1.1.15.272646163|66|0
1.3.6.1.2.1.31.1.1.1.15.272646167|66|0
1.3.6.1.2.1.31.1.1.1.15.272646171|66|0
1.3.6.1.2.1.31.1.1.1.15.272646175|66|0
1.3.6.1.2.1.31.1.1.1.15.272646179|66|0
1.3.6.1.2.1.31.1.1.1.15.272646183|66|0
1.3.6.1.2.1.31.1.1.1.15.272646187|66|0
1.3.6.1.2.1.31.1.1.1.15.272646191|66|0
1.3.6.1.2.1.31.1.1.1.16.272637955|2|2
1.3.6.1.2.1.31.1.1.1.16.272637959|2|2
1.3.6.1.2.1.31.1.1.1.17.272637955|2|2
1.3.6.1.2.1.31.1.1.1.17.272637959|2|2
1.3.6.1.2.1.31.1.1.1.18.268435456|4|Outband MGMT
1.3.6.1.2.1.31.1.1.1.18.272637955|4|to_goe-0-service-rt-a:1/6/10
1.3.6.1.2.1.31.1.1.1.18.272637959|4|to_goe-0-service-rt-b:1/6/10
1.3.6.1.2.1.31.1.1.1.18.272637963|4|
1.3.6.1.2.1.31.1.1.1.18.272637967|4|
1.3.6.1.2.1.31.1.1.1.18.272646147|4|
1.3.6.1.2.1.31.1.1.1.18.272646151|4|
1.3.6.1.2.1.31.1.1.1.18.272646155|4|
1.3.6.1.2.1.31.1.1.1.18.272646159|4|
1.3.6.1.2.1.31.1.1.1.18.272646163|4|
1.3.6.1.2.1.31.1.1.1.18.272646167|4|
1.3.6.1.2.1.31.1.1.1.18.272646171|4|
1.3.6.1.2.1.31.1.1.1.18.272646175|4|
1.3.6.1.2.1.31.1.1.1.18.272646179|4|
1.3.6.1.2.1.31.1.1.1.18.272646183|4|
1.3.6.1.2.1.31.1.1.1.18.272646187|4|
1.3.6.1.2.1.31.1.1.1.18.272646191|4|
1.3.6.1.4.1.8886.1.18.2.2.1.1.2.272637955.3|2|-3316
1.3.6.1.4.1.8886.1.18.2.2.1.1.2.272637955.4|2|-2708
1.3.6.1.4.1.8886.1.18.2.2.1.1.2.272637959.3|2|-2975
1.3.6.1.4.1.8886.1.18.2.2.1.1.2.272637959.4|2|-4401
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.2.1.0|2|0
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.2.2.0|2|0
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.2.3.0|2|0
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.2.4.0|2|0
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.2.5.0|2|0
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.3.1.0|2|31
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.3.2.0|2|25
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.3.3.0|2|21
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.3.4.0|2|18
1.3.6.1.4.1.8886.60.1.1.1.2.1.1.1.3.5.0|2|18
1.3.6.1.4.1.8886.60.1.3.1.1.1.0|2|1033288
1.3.6.1.4.1.8886.60.1.3.1.1.2.0|2|513844
1.3.6.1.4.1.8886.60.2.1.1.1.1.3.0|2|3
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637955.1|2|36125
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637955.2|2|32494
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637955.3|2|-3316
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637955.4|2|-2716
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637955.5|2|3202
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637959.1|2|35875
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637959.2|2|33026
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637959.3|2|-2967
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637959.4|2|-4425
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.2.272637959.5|2|3214
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637955.1|2|75000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637955.2|2|80000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637955.3|2|1522
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637955.4|2|1522
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637955.5|2|3600
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637959.1|2|75000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637959.2|2|80000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637959.3|2|1522
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637959.4|2|1522
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.3.272637959.5|2|3600
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637955.1|2|70000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637955.2|2|70000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637955.3|2|530
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637955.4|2|530
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637955.5|2|3500
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637959.1|2|70000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637959.2|2|70000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637959.3|2|530
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637959.4|2|530
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.4.272637959.5|2|3500
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637955.1|2|-10000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637955.2|2|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637955.3|2|-8996
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637955.4|2|-15986
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637955.5|2|3000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637959.1|2|-10000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637959.2|2|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637959.3|2|-8996
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637959.4|2|-15986
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.5.272637959.5|2|3000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637955.1|2|-5000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637955.2|2|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637955.3|2|-7986
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637955.4|2|-14989
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637955.5|2|3100
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637959.1|2|-5000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637959.2|2|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637959.3|2|-7986
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637959.4|2|-14989
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.6.272637959.5|2|3100
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637955.1|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637955.2|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637955.3|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637955.4|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637955.5|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637959.1|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637959.2|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637959.3|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637959.4|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.7.272637959.5|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637955.1|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637955.2|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637955.3|2|-36989
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637955.4|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637955.5|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637959.1|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637959.2|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637959.3|2|-36989
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637959.4|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.8.272637959.5|2|-1000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637955.1|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637955.2|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637955.3|67|315900
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637955.4|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637955.5|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637959.1|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637959.2|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637959.3|67|315900
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637959.4|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.9.272637959.5|67|0
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637955.1|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637955.2|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637955.3|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637955.4|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637955.5|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637959.1|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637959.2|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637959.3|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637959.4|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.10.272637959.5|66|96
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637955.1|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637955.2|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637955.3|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637955.4|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637955.5|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637959.1|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637959.2|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637959.3|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637959.4|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.11.272637959.5|66|7
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637955.1|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637955.2|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637955.3|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637955.4|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637955.5|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637959.1|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637959.2|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637959.3|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637959.4|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.12.272637959.5|2|1
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.13.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.14.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.15.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.16.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.17.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.18.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637955.1|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637955.2|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637955.3|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637955.4|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637955.5|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637959.1|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637959.2|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637959.3|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637959.4|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.19.272637959.5|4x|C0BDF0FFC0BDF0FFC0BDF0FFC0BDF0FF
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.20.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637955.1|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637955.2|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637955.3|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637955.4|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637955.5|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637959.1|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637959.2|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637959.3|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637959.4|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.21.272637959.5|4x|60000000600000006000000060000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637955.1|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637955.2|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637955.3|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637955.4|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637955.5|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637959.1|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637959.2|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637959.3|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637959.4|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.22.272637959.5|4x|07000000070000000700000007000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637955.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637955.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637955.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637955.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637955.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637959.1|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637959.2|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637959.3|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637959.4|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.18.1.2.2.1.1.23.272637959.5|4x|00000000000000000000000000000000
1.3.6.1.4.1.8886.60.34.1.1.7.0|2|6
1.3.6.1.4.1.8886.60.131.1.1.1.0|4|ROS_6.2.0_20200614
1.3.6.1.4.1.8886.60.131.1.1.4.0|4|103002031910S20907S0003G
1.3.6.1.4.1.8886.60.131.1.1.6.0|4|RAX711-C-R P100R001C00
1.3.6.1.6.3.10.2.1.3.0|2|947306093