mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Support new os C-DATA (#10975)
* cdata-logo * cdata definitions * cdata definitions discovery * cdata discovery mempools * cdata polling mempools * cdata polling os * cdata mibs * cdata tests json * cdata tests snmpsim * cdata polling os * cdata mempools fix * cdata mempools fix2 * delete IANAifType-MIB * Delete IF-MIB * Delete SNMPv2-MIB * Delete SNMPv2-SMI * Delete BRIDGE-MIB
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,14 @@
|
||||
os: cdata
|
||||
text: 'cdata'
|
||||
type: network
|
||||
icon: cdata
|
||||
group: cdata
|
||||
mib_dir:
|
||||
- cdata
|
||||
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.17409
|
||||
@@ -0,0 +1,31 @@
|
||||
mib: FD-SYSTEM-MIB:CDATA-EPON-MIB:NSCRTV-FTTX-EPON-MIB:NSCRTV-PON-TREE-EXT-MIB
|
||||
modules:
|
||||
processors:
|
||||
data:
|
||||
-
|
||||
oid: cpuUsage
|
||||
num_oid: '.1.3.6.1.4.1.34592.1.3.100.1.8.1.{{ $index }}'
|
||||
sensors:
|
||||
temperature:
|
||||
data:
|
||||
-
|
||||
oid: temperature
|
||||
num_oid: '.1.3.6.1.4.1.34592.1.3.100.1.8.6.{{ $index }}'
|
||||
divisor: 10
|
||||
descr: 'Temperature {{ $index }}'
|
||||
state:
|
||||
data:
|
||||
-
|
||||
oid: ponCardRunningStatus
|
||||
num_oid: '.1.3.6.1.4.1.34592.1.3.1.5.2.1.1.7.{{ $index }}'
|
||||
descr: 'Pon Card {{ $index }} status'
|
||||
states:
|
||||
- { descr: Normal, graph: 0, value: 0, generic: 0 }
|
||||
- { descr: Abnormal, graph: 0, value: 1, generic: 2 }
|
||||
-
|
||||
oid: sysServices
|
||||
num_oid: '.1.3.6.1.2.1.1.7.0.{{ $index }}'
|
||||
descr: 'System services status'
|
||||
states:
|
||||
- { descr: Normal, graph: 0, value: 0, generic: 0 }
|
||||
- { descr: Abnormal, graph: 0, value: 1, generic: 2 }
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/*
|
||||
* LibreNMS Cdata memory information module
|
||||
*
|
||||
* Copyright (c) 2019 hartred <[email protected]>
|
||||
* 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'] == 'cdata') {
|
||||
echo 'CDATA-MEMORY-POOL: ';
|
||||
|
||||
$total = snmp_get($device, '.1.3.6.1.4.1.34592.1.3.100.1.8.2.0', '-OvQ');
|
||||
$free = snmp_get($device, '.1.3.6.1.4.1.34592.1.3.100.1.8.3.0', '-OvQ');
|
||||
|
||||
if (is_numeric($total) && is_numeric($free)) {
|
||||
discover_mempool($valid_mempool, $device, 0, 'cdata', 'Memory', '1', null, null);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
/*
|
||||
* LibreNMS
|
||||
*
|
||||
* Copyright (c) 2019 hartred <[email protected]>
|
||||
* 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.
|
||||
*/
|
||||
|
||||
$temp_data = snmp_get_multi_oid($device, ['memTotalSize.0', 'memFreeSize.0'], '-OUQs', 'FD-SYSTEM-MIB:CDATA-EPON-MIB:NSCRTV-FTTX-EPON-MIB:NSCRTV-PON-TREE-EXT-MIB');
|
||||
$mempool['total'] = $temp_data['memTotalSize.0'];
|
||||
$mempool['free'] = $temp_data['memFreeSize.0'];
|
||||
$mempool['used'] = $mempool['total'] - $mempool['free'];
|
||||
unset($temp_data);
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/*
|
||||
* LibreNMS
|
||||
*
|
||||
* Copyright (c) 2019 hartred <[email protected]>
|
||||
* 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.
|
||||
*/
|
||||
|
||||
$hardware = trim(snmp_get($device, '.1.3.6.1.4.1.34592.1.3.1.5.2.1.1.4.0', '-OQv'), '"');
|
||||
$version = trim(snmp_get($device, '.1.3.6.1.4.1.34592.1.3.1.5.2.1.1.5.0', '-OQv'), '"');
|
||||
$serial = trim(snmp_get($device, '.1.3.6.1.4.1.17409.2.3.1.1.13.0', '-OQv'), '"');
|
||||
|
||||
if (empty($hardware) && empty($version)) {
|
||||
$hardware = $hardware;
|
||||
$version = $software;
|
||||
$serial = $serial;
|
||||
unset($temp_data);
|
||||
}
|
||||
@@ -0,0 +1,175 @@
|
||||
--
|
||||
-- CDATA-COMMON-SMI.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
|
||||
-- Wednesday, March 02, 2016 at 16:10:01
|
||||
--
|
||||
|
||||
CDATA-COMMON-SMI DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises, MODULE-IDENTITY, OBJECT-IDENTITY
|
||||
FROM SNMPv2-SMI
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
|
||||
-- May 27, 2010 at 10:56 GMT
|
||||
vendor MODULE-IDENTITY
|
||||
LAST-UPDATED "201603021453Z" -- March 02, 2016 at 14:53 GMT
|
||||
ORGANIZATION
|
||||
"vendor"
|
||||
CONTACT-INFO
|
||||
"Contact info"
|
||||
DESCRIPTION
|
||||
"common mib smi"
|
||||
REVISION "201603021447Z" -- March 02, 2016 at 14:47 GMT
|
||||
DESCRIPTION
|
||||
"add gpon node"
|
||||
::= { enterprises 34592 }
|
||||
|
||||
|
||||
--
|
||||
-- Textual conventions
|
||||
--
|
||||
|
||||
DataDirection ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A data channel normally have two direction, up and down"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
upstream(1),
|
||||
downstream(2)
|
||||
}
|
||||
|
||||
DeviceOperation ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This type defines an operate action aggregate"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
reset(2),
|
||||
default(3),
|
||||
saveConfig(4),
|
||||
restore(5),
|
||||
delete(6)
|
||||
}
|
||||
|
||||
DeviceStatus ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device work status type. One device or dummy device may
|
||||
have following five work status:
|
||||
notPresent(1): the device is not present (not installed)
|
||||
offline(2):the device is present,but can not be communicated (or failed to get its info)
|
||||
online(3):the device is present and can be communicated
|
||||
normal(4):the device is online and work well
|
||||
abnormal(5): the device is online but work abnormal for some reason"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
notPresent(1),
|
||||
offline(2),
|
||||
online(3),
|
||||
normal(4),
|
||||
abnormal(5)
|
||||
}
|
||||
|
||||
DeviceType ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device type convention. Define all PBB device type value.
|
||||
|
||||
----------------------------------
|
||||
| family | series | class | type |
|
||||
----------------------------------
|
||||
8b 8b 8b 8b
|
||||
|
||||
refer to document <pducuct type defines>"
|
||||
SYNTAX INTEGER { fd1508gs(67174657) }
|
||||
|
||||
LedStatus ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Led status"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
on(1),
|
||||
off(2),
|
||||
blink(3)
|
||||
}
|
||||
|
||||
-- Textual conventions
|
||||
--
|
||||
OperSwitch ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device function operation switch type"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
enable(1),
|
||||
disable(2)
|
||||
}
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- Node definitions
|
||||
--
|
||||
-- 1.3.6.1.4.1.34592.1
|
||||
-- 1.3.6.1.4.1.34592.1
|
||||
ipProduct OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"ip products line.
|
||||
"
|
||||
::= { vendor 1 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.1
|
||||
-- 1.3.6.1.4.1.34592.1.1
|
||||
mediaConverter OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"supported by media converter line products.
|
||||
"
|
||||
::= { ipProduct 1 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.2
|
||||
-- 1.3.6.1.4.1.34592.1.2
|
||||
switch OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"supported by smartCPE Switch line products.
|
||||
"
|
||||
::= { ipProduct 2 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3
|
||||
-- 1.3.6.1.4.1.34592.1.3
|
||||
epon OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"supported by epon line products."
|
||||
::= { ipProduct 3 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.4
|
||||
-- 1.3.6.1.4.1.34592.1.4
|
||||
eoc OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"supported by eoc line products."
|
||||
::= { ipProduct 4 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5
|
||||
gpon OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"supported by gpon line products."
|
||||
::= { ipProduct 5 }
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- CDATA-COMMON-SMI.my
|
||||
--
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,232 @@
|
||||
--
|
||||
-- EDFA-oa-MIB.mib
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
|
||||
-- Wednesday, November 08, 2017 at 10:55:00
|
||||
--
|
||||
|
||||
EDFA-oa-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
OBJECT-TYPE
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- 1.3.6.1.4.1.34592
|
||||
-- edfa OBJECT IDENTIFIER ::= { enterprises 34592 }
|
||||
eponeoc MODULE-IDENTITY
|
||||
LAST-UPDATED "201005271056Z" -- May 27, 2010 at 10:56 GMT
|
||||
ORGANIZATION
|
||||
"epon eoc factory."
|
||||
CONTACT-INFO
|
||||
" "
|
||||
DESCRIPTION
|
||||
"epon eoc common mib module"
|
||||
::= { enterprises 34592 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1
|
||||
ipProduct OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier containing the definition of ip products line.
|
||||
"
|
||||
::= { eponeoc 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.1
|
||||
mediaConverter OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier for the subtree
|
||||
supported by media converter line products.
|
||||
"
|
||||
::= { ipProduct 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5
|
||||
edfa OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier for the subtree
|
||||
supported by smartCPE Switch line products.
|
||||
"
|
||||
::= { ipProduct 5 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1
|
||||
oaEDFAAlarmRangeTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF OaEDFAAlarmRangeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { edfa 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1
|
||||
oaEDFAAlarmRangeEntry OBJECT-TYPE
|
||||
SYNTAX OaEDFAAlarmRangeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
INDEX { oaEDFAAlarmRangeIndex }
|
||||
::= { oaEDFAAlarmRangeTable 1 }
|
||||
|
||||
|
||||
OaEDFAAlarmRangeEntry ::=
|
||||
SEQUENCE {
|
||||
oaEDFAAlarmRangeIndex
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeDecr
|
||||
OCTET STRING,
|
||||
oaEDFAAlarmRangeHIHItoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeHIHItoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeHItoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeHItoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOtoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOtoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOLOtoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOLOtoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeDDtoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeDDtoLO
|
||||
INTEGER
|
||||
}
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.1
|
||||
oaEDFAAlarmRangeIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..12)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.2
|
||||
oaEDFAAlarmRangeDecr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 2 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.3
|
||||
oaEDFAAlarmRangeHIHItoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 3 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.4
|
||||
oaEDFAAlarmRangeHIHItoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 4 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.5
|
||||
oaEDFAAlarmRangeHItoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 5 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.6
|
||||
oaEDFAAlarmRangeHItoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 6 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.7
|
||||
oaEDFAAlarmRangeLOtoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 7 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.8
|
||||
oaEDFAAlarmRangeLOtoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 8 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.9
|
||||
oaEDFAAlarmRangeLOLOtoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 9 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.10
|
||||
oaEDFAAlarmRangeLOLOtoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 10 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.11
|
||||
oaEDFAAlarmRangeDDtoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 11 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.5.1.1.12
|
||||
oaEDFAAlarmRangeDDtoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 12 }
|
||||
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- EDFA-oa-MIB.mib
|
||||
--
|
||||
@@ -0,0 +1,233 @@
|
||||
--
|
||||
-- EPON-EOC-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
|
||||
-- Wednesday, June 15, 2011 at 18:05:47
|
||||
--
|
||||
|
||||
EPON-EOC-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises, MODULE-IDENTITY, OBJECT-IDENTITY
|
||||
FROM SNMPv2-SMI
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
|
||||
eponeoc MODULE-IDENTITY
|
||||
LAST-UPDATED "201005271056Z" -- May 27, 2010 at 10:56 GMT
|
||||
ORGANIZATION
|
||||
"epon eoc factory."
|
||||
CONTACT-INFO
|
||||
""
|
||||
DESCRIPTION
|
||||
"epon eoc common mib module"
|
||||
::= { enterprises 34592 }
|
||||
|
||||
|
||||
--
|
||||
-- Textual conventions
|
||||
--
|
||||
|
||||
OperSwitch ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device function operation switch type"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
enable(1),
|
||||
disable(2)
|
||||
}
|
||||
|
||||
DeviceStatus ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device work status type. One device or dummy device may
|
||||
have following five work status:
|
||||
notPresent(1): the device is not present (not installed)
|
||||
offline(2):the device is present,but can not be communicated (or failed to get its info)
|
||||
online(3):the device is present and can be communicated
|
||||
normal(4):the device is online and work well
|
||||
abnormal(5): the device is online but work abnormal for some reason"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
notPresent(1),
|
||||
offline(2),
|
||||
online(3),
|
||||
normal(4),
|
||||
abnormal(5)
|
||||
}
|
||||
|
||||
DataDirection ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A data channel normally have two direction, up and down"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
upstream(1),
|
||||
downstream(2)
|
||||
}
|
||||
|
||||
DeviceOperation ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This type defines an operate action aggregate"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
reset(2),
|
||||
default(3),
|
||||
saveConfig(4),
|
||||
restore(5),
|
||||
delete(6)
|
||||
}
|
||||
|
||||
LedStatus ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Led status"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
on(1),
|
||||
off(2),
|
||||
blink(3)
|
||||
}
|
||||
|
||||
DeviceType ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device type convention. Define all PBB device type value.
|
||||
|
||||
----------------------------------
|
||||
| family | series | class | type |
|
||||
----------------------------------
|
||||
8b 8b 8b 8b
|
||||
|
||||
refer to document <pducuct type defines>"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
SYSTEM(16842752),
|
||||
EPON-2U8P(16843009),
|
||||
OLT(16843265),
|
||||
PON(16843521),
|
||||
PON(16909057),
|
||||
|
||||
EPON-1U2P(17105153),
|
||||
OLT(17105409),
|
||||
PON(17105665),
|
||||
|
||||
EPON-1U4P(17236225),
|
||||
OLT(17236481),
|
||||
PON(17236737),
|
||||
PON(17235968),
|
||||
|
||||
EPON-1U8P(17170689),
|
||||
OLT(17170945),
|
||||
PON(17171201),
|
||||
PON(17171202),
|
||||
|
||||
ONU4D-B(16974081),
|
||||
ONU4D-B(16974082),
|
||||
ONU4D-B(16974083),
|
||||
ONU1D-G(16974087),
|
||||
ONU2D-GM(16974095),
|
||||
ONU4D-GM(16974094),
|
||||
ONU4D-P(16974089),
|
||||
ONU3D-M(16974090),
|
||||
ONU2D-M(16974092),
|
||||
ONU4D2P(16974337),
|
||||
ONU4D2P-P(16974338),
|
||||
ONU4D1R-P(16974594),
|
||||
ONU4D2P1R(16974849),
|
||||
ONU4D2P1R(17040129),
|
||||
ONU4D2P1R-P(16974850),
|
||||
ONU24D(17039617),
|
||||
ONU1GE(825307496),
|
||||
ONU2GE(825307757),
|
||||
ONU4GEB(825308258),
|
||||
ONU4GE(825308269),
|
||||
ONU1GE1FE1P(825307464),
|
||||
ONU4FE1RF(858797160),
|
||||
|
||||
ONU1FE(16974086),
|
||||
ONU1FE1GE(16974088),
|
||||
ONU4FE(16974085),
|
||||
ONU4FE(16974091),
|
||||
ONU8FEB(16974084),
|
||||
ONU4FE1TV-WDM(16974593),
|
||||
|
||||
ONU1FEC(825241683),
|
||||
ONU1GEC(825241671),
|
||||
ONU4FEC(875573331),
|
||||
ONU4GEB(875573314),
|
||||
ONU2GEM(842018893),
|
||||
ONU4GEM(875573325),
|
||||
ONU4FEW(875573335),
|
||||
ONU4FE1TVC-WDM(875647827),
|
||||
ONU4FE1TVCA(875643987),
|
||||
ONU4FE1TVW-WDM(875647831),
|
||||
ONU4FE1TVW(875643991),
|
||||
|
||||
ONU4FE2P(1),
|
||||
ONU4FE2PA(16974337),
|
||||
ONU4FE2P1TV(2),
|
||||
ONU24FEB(3),
|
||||
ONU4FE2PW(4),
|
||||
ONU2FE1P(5),
|
||||
ONU1FECA(825241960),
|
||||
ONU1GECA(825307496),
|
||||
ONU4FECA(825242728),
|
||||
ONU1GEM (825241674),
|
||||
ONU16FEB(8),
|
||||
ONU4GE(16974097)
|
||||
}
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1
|
||||
ipProduct OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier containing the definition of ip products line.
|
||||
"
|
||||
::= { eponeoc 1 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.1
|
||||
mediaConverter OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier for the subtree
|
||||
supported by media converter line products.
|
||||
"
|
||||
::= { ipProduct 1 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.2
|
||||
switch OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier for the subtree
|
||||
supported by smartCPE Switch line products.
|
||||
"
|
||||
::= { ipProduct 2 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3
|
||||
epon OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { ipProduct 3 }
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.4
|
||||
eoc OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { ipProduct 4 }
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- EPON-EOC-MIB.my
|
||||
--
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,305 @@
|
||||
--
|
||||
-- FD-TRAP-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
|
||||
-- Wednesday, August 03, 2016 at 14:48:18
|
||||
--
|
||||
|
||||
-- FD-TRAP-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
|
||||
-- Tuesday, July 14, 2015 at 17:44:57
|
||||
--
|
||||
-- FD-TRAP-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
|
||||
-- Friday, May 15, 2015 at 11:41:26
|
||||
--
|
||||
-- FD-TRAP-MIB.txt
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
|
||||
-- Monday, April 27, 2015 at 16:05:50
|
||||
--
|
||||
|
||||
FD-TRAP-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
epon
|
||||
FROM EPON-EOC-MIB
|
||||
linkIdExhaust, onuIdExhaust, linkOnLineStatus
|
||||
FROM FD-OLT-MIB
|
||||
onuOnLineStatus, uniPortLink, uniPortRstpState
|
||||
FROM FD-ONU-MIB
|
||||
swSniPortTrafficChangeVal, oltTrafficChangeVal, onuTrafficChangeVal
|
||||
FROM FD-PERFORMANCE-MIB
|
||||
sfpPlugStauts, swPortLinkState
|
||||
FROM FD-SWITCH-MIB
|
||||
powerStatusBit, fanStatusBit, ponCardRunningStatus, nonAuthOnuMac, userId,
|
||||
userName, userPassword, userPermission, userAccessDeviceMap, loginTimeout,
|
||||
userEntryRowStatus
|
||||
FROM FD-SYSTEM-MIB
|
||||
alarmValue
|
||||
FROM RMON-MIB
|
||||
MODULE-COMPLIANCE, NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
MODULE-IDENTITY, NOTIFICATION-TYPE
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6
|
||||
-- May 27, 2010 at 10:56 GMT
|
||||
-- 1.3.6.1.4.1.34592.1.3.6
|
||||
eponTraps MODULE-IDENTITY
|
||||
LAST-UPDATED "201005271056Z" -- May 27, 2010 at 10:56 GMT
|
||||
ORGANIZATION
|
||||
"epon eoc factory."
|
||||
CONTACT-INFO
|
||||
" "
|
||||
DESCRIPTION
|
||||
"Trap mib module"
|
||||
::= { epon 6 }
|
||||
|
||||
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0
|
||||
eponTrapsPrefix OBJECT IDENTIFIER ::= { eponTraps 0 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.1
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.1
|
||||
sniSFPStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS { sfpPlugStauts }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.2
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.2
|
||||
sniPortLinkChange NOTIFICATION-TYPE
|
||||
OBJECTS { swPortLinkState }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 2 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.3
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.3
|
||||
powerStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS { powerStatusBit }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 3 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.4
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.4
|
||||
fanStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS { fanStatusBit }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 4 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.5
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.5
|
||||
ponRunningStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS { ponCardRunningStatus }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 5 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.6
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.6
|
||||
onuLinkStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS { linkOnLineStatus }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 6 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.7
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.7
|
||||
onuOnlineStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS { onuOnLineStatus }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 7 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.8
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.8
|
||||
onuPortStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS { uniPortLink }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 8 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.9
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.9
|
||||
swSniPortTrafficChange NOTIFICATION-TYPE
|
||||
OBJECTS { swSniPortTrafficChangeVal }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 9 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.10
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.10
|
||||
oltTrafficChange NOTIFICATION-TYPE
|
||||
OBJECTS { oltTrafficChangeVal }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 10 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.11
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.11
|
||||
onuTrafficChange NOTIFICATION-TYPE
|
||||
OBJECTS { onuTrafficChangeVal }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 11 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.12
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.12
|
||||
linkIdResourceExhaust NOTIFICATION-TYPE
|
||||
OBJECTS { linkIdExhaust }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 12 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.13
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.13
|
||||
onuIdResourceExhaust NOTIFICATION-TYPE
|
||||
OBJECTS { onuIdExhaust }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 13 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.14
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.14
|
||||
illegalRegisterAlarm NOTIFICATION-TYPE
|
||||
OBJECTS { nonAuthOnuMac }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 14 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.15
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.15
|
||||
onuPortRstpStateChange NOTIFICATION-TYPE
|
||||
OBJECTS { uniPortRstpState }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 15 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.16
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.16
|
||||
rmonEventThreshold NOTIFICATION-TYPE
|
||||
OBJECTS { alarmValue }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 16 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.17
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.17
|
||||
onuDyingGasp NOTIFICATION-TYPE
|
||||
OBJECTS { onuOnLineStatus }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 17 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.18
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.18
|
||||
onuPortLoopBack NOTIFICATION-TYPE
|
||||
OBJECTS { uniPortLink }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 18 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.0.19
|
||||
oltSystemReboot NOTIFICATION-TYPE
|
||||
OBJECTS { userName }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { eponTrapsPrefix 19 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1
|
||||
fdTrapConformance OBJECT IDENTIFIER ::= { eponTraps 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.1
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.1
|
||||
fdTrapGroups OBJECT IDENTIFIER ::= { fdTrapConformance 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.1.1
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.1.1
|
||||
fdTrapGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS { sniSFPStatusChange, sniPortLinkChange, powerStatusChange, fanStatusChange, ponRunningStatusChange,
|
||||
onuLinkStatusChange, onuOnlineStatusChange, onuPortStatusChange, swSniPortTrafficChange, oltTrafficChange,
|
||||
onuTrafficChange, onuPortRstpStateChange, onuDyingGasp, rmonEventThreshold, onuPortLoopBack,
|
||||
oltSystemReboot, illegalRegisterAlarm, linkIdResourceExhaust, onuIdResourceExhaust }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects providing notification management"
|
||||
::= { fdTrapGroups 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.2
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.2
|
||||
fdTrapCompliances OBJECT IDENTIFIER ::= { fdTrapConformance 2 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.2.1
|
||||
-- this module
|
||||
-- this module
|
||||
-- 1.3.6.1.4.1.34592.1.3.6.1.2.1
|
||||
fdTrapCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement"
|
||||
MODULE -- this module
|
||||
MANDATORY-GROUPS { fdTrapGroup }
|
||||
::= { fdTrapCompliances 1 }
|
||||
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- FD-TRAP-MIB.my
|
||||
--
|
||||
@@ -0,0 +1,89 @@
|
||||
|
||||
|
||||
LTNET-COMMONINFO-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
DisplayString
|
||||
FROM RFC1213-MIB
|
||||
NetworkAddress FROM RFC1155-SMI
|
||||
ltnetRoot
|
||||
FROM LTNET-ROOT
|
||||
;
|
||||
|
||||
|
||||
ltnetCommonInfoGroup OBJECT IDENTIFIER ::= { ltnetRoot 3 }
|
||||
ltnetIpSimpleInfo OBJECT IDENTIFIER ::= { ltnetCommonInfoGroup 1 }
|
||||
ltnetSubJoinedInfo OBJECT IDENTIFIER ::= { ltnetCommonInfoGroup 4 }
|
||||
|
||||
ltnetIpNetAddress OBJECT-TYPE
|
||||
SYNTAX NetworkAddress
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
" "
|
||||
::= { ltnetIpSimpleInfo 1 }
|
||||
|
||||
ltnetIpMask OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..31)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
" "
|
||||
::= { ltnetIpSimpleInfo 2 }
|
||||
|
||||
ltnetIpDefaultGateway OBJECT-TYPE
|
||||
SYNTAX NetworkAddress
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
" "
|
||||
::= { ltnetIpSimpleInfo 3 }
|
||||
|
||||
ltnetIpDns OBJECT-TYPE
|
||||
SYNTAX NetworkAddress
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
" "
|
||||
::= { ltnetIpSimpleInfo 4 }
|
||||
|
||||
ltnetIpPhysicalAddress OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This variable reports the media dependant 'physical' address of
|
||||
the NE. This object was added to support the generation of traps."
|
||||
::= { ltnetIpSimpleInfo 5 }
|
||||
|
||||
-- *
|
||||
|
||||
ltnetCommIdentifyNum OBJECT-TYPE
|
||||
SYNTAX OCTET STRING ( SIZE(6 .. 10) )
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { ltnetSubJoinedInfo 1 }
|
||||
|
||||
ltnetCommonTime OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { ltnetSubJoinedInfo 2 }
|
||||
|
||||
ltnetAlarmDelayTime OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..600 )
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { ltnetSubJoinedInfo 3 }
|
||||
|
||||
|
||||
END
|
||||
@@ -0,0 +1,21 @@
|
||||
LTNET-ROOT DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises
|
||||
FROM RFC1155-SMI
|
||||
;
|
||||
ltnetRoot OBJECT IDENTIFIER ::= { enterprises 33826 }
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
ltnetHFCemsTree OBJECT IDENTIFIER ::= { ltnetRoot 1 }
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
osIdent OBJECT IDENTIFIER ::= { ltnetHFCemsTree 1}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
ltnetSmartDeviceTree OBJECT IDENTIFIER ::= { ltnetRoot 2 }
|
||||
|
||||
END
|
||||
@@ -0,0 +1,24 @@
|
||||
--======================================================================
|
||||
-- ALARM MIB
|
||||
--======================================================================
|
||||
|
||||
-- File Name : ALARM-MIB.mib
|
||||
-- Date : Tue May 16 00:00:00 CEST 2006
|
||||
-- Author : Franck Paris
|
||||
|
||||
NE-ALARM-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
spidcom FROM SPIDCOM-MIB;
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2
|
||||
neMibAlarm OBJECT IDENTIFIER ::= { spidcom 2 }
|
||||
|
||||
|
||||
|
||||
--========================= END OF DOCUMENT ========================
|
||||
|
||||
END
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,94 @@
|
||||
NSCRTV-HFCEMS-ALARMS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
DisplayString
|
||||
FROM RFC1213-MIB
|
||||
commonPhysAddress
|
||||
FROM NSCRTV-HFCEMS-COMMON-MIB
|
||||
commonNELogicalID
|
||||
FROM NSCRTV-HFCEMS-COMMON-MIB
|
||||
nscrtvHFCemsTree
|
||||
FROM NSCRTV-ROOT
|
||||
alarmsIdent
|
||||
FROM NSCRTV-ROOT
|
||||
|
||||
;
|
||||
|
||||
alarmLogNumberOfEntries OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { alarmsIdent 1 }
|
||||
|
||||
alarmLogLastIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { alarmsIdent 2 }
|
||||
|
||||
alarmLogTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AlarmLogEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { alarmsIdent 3 }
|
||||
|
||||
alarmLogEntry OBJECT-TYPE
|
||||
SYNTAX AlarmLogEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
INDEX { alarmLogIndex }
|
||||
::= { alarmLogTable 1 }
|
||||
|
||||
AlarmLogEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
alarmLogIndex
|
||||
INTEGER,
|
||||
alarmLogInformation
|
||||
OCTET STRING
|
||||
}
|
||||
|
||||
alarmLogIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..32767)
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { alarmLogEntry 1 }
|
||||
|
||||
alarmLogInformation OBJECT-TYPE
|
||||
SYNTAX OCTET STRING ( SIZE ( 17..255 ) )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { alarmLogEntry 2 }
|
||||
|
||||
alarmText OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { alarmsIdent 4 }
|
||||
|
||||
hfcAlarmEvent TRAP-TYPE
|
||||
ENTERPRISE nscrtvHFCemsTree
|
||||
VARIABLES { commonPhysAddress, commonNELogicalID, alarmLogInformation, alarmText }
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= 1
|
||||
|
||||
END
|
||||
@@ -0,0 +1,759 @@
|
||||
NSCRTV-HFCEMS-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
IMPORTS
|
||||
OBJECT-TYPE FROM RFC-1212
|
||||
TRAP-TYPE FROM RFC-1215
|
||||
Counter FROM RFC1155-SMI
|
||||
NetworkAddress FROM RFC1155-SMI
|
||||
IpAddress FROM RFC1155-SMI
|
||||
DisplayString FROM RFC1213-MIB
|
||||
nscrtvHFCemsTree FROM NSCRTV-ROOT
|
||||
commonIdent FROM NSCRTV-ROOT
|
||||
;
|
||||
|
||||
commonAdminGroup OBJECT IDENTIFIER ::= { commonIdent 1 }
|
||||
commonAdminUseRf OBJECT IDENTIFIER ::= { commonIdent 2 }
|
||||
commonAdminUseEthernet OBJECT IDENTIFIER ::= { commonIdent 3 }
|
||||
|
||||
commonMACGroup OBJECT IDENTIFIER ::= { commonAdminUseRf 1 }
|
||||
commonRfGroup OBJECT IDENTIFIER ::= { commonAdminUseRf 2 }
|
||||
|
||||
commonMacAddress OBJECT IDENTIFIER ::= { commonMACGroup 1 }
|
||||
commonBackoffParams OBJECT IDENTIFIER ::= { commonMACGroup 2 }
|
||||
commonMacStats OBJECT IDENTIFIER ::= { commonMACGroup 3 }
|
||||
|
||||
commonAgentGroup OBJECT IDENTIFIER ::= { commonAdminUseEthernet 1 }
|
||||
commonDeviceGroup OBJECT IDENTIFIER ::= { commonAdminUseEthernet 2 }
|
||||
|
||||
|
||||
commonNELogicalID OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(0..40))
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 1 }
|
||||
|
||||
commonNEVendor OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 2 }
|
||||
|
||||
commonNEModelNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 3 }
|
||||
|
||||
commonNESerialNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 4 }
|
||||
|
||||
commonNEVendorInfo OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 5 }
|
||||
|
||||
commonNEStatus OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(1))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
-- Bit 0: CHNLRQST
|
||||
-- Bit 1: CNTNRM
|
||||
-- Bit 2: CNTCUR
|
||||
-- Bit 3: MAJOR ALARMS
|
||||
-- Bit 4: MINOR ALARMS
|
||||
-- Bit 5: RSVD1
|
||||
-- Bit 6: RSVD2
|
||||
-- Bit 7: RSVD3"
|
||||
::= { commonAdminGroup 6 }
|
||||
|
||||
commonReset OBJECT-TYPE
|
||||
SYNTAX INTEGER { reset (1)}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { commonAdminGroup 7 }
|
||||
|
||||
commonAlarmDetectionControl OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
detectionDisabled (1),
|
||||
detectionEnabled (2),
|
||||
detectionEnabledAndRegenerate (3)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 8 }
|
||||
|
||||
commonNetworkAddress OBJECT-TYPE
|
||||
SYNTAX NetworkAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 9 }
|
||||
|
||||
|
||||
commonCheckCode OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 10 }
|
||||
|
||||
commonTrapCommunityString OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(0..64))
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 11 }
|
||||
|
||||
commonTamperStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER { intact (1), compromised (2) }
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 12 }
|
||||
|
||||
commonInternalTemperature OBJECT-TYPE
|
||||
SYNTAX INTEGER (-128..127)
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 13 }
|
||||
|
||||
commonTime OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 14 }
|
||||
|
||||
commonVarBindings OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 15 }
|
||||
|
||||
commonResetCause OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
other (1),
|
||||
powerup (2),
|
||||
command (3),
|
||||
watchdog (4),
|
||||
craft (5)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 16 }
|
||||
|
||||
commonCraftStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
disconnected (1),
|
||||
connected (2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 17 }
|
||||
|
||||
commonDeviceOID OBJECT-TYPE
|
||||
SYNTAX OBJECT IDENTIFIER
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 18 }
|
||||
|
||||
commonDeviceId OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(32))
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAdminGroup 19 }
|
||||
|
||||
commonPhysAddress OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacAddress 1 }
|
||||
|
||||
commonMaxMulticastAddresses OBJECT-TYPE
|
||||
SYNTAX INTEGER (4..255)
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacAddress 2 }
|
||||
|
||||
commonMulticastAddressTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF CommonMulticastAddressEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacAddress 3 }
|
||||
|
||||
commonMulticastAddressEntry OBJECT-TYPE
|
||||
SYNTAX CommonMulticastAddressEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
INDEX { commonMulticastAddressIndex }
|
||||
::= { commonMulticastAddressTable 1 }
|
||||
|
||||
CommonMulticastAddressEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
commonMulticastAddressIndex
|
||||
INTEGER,
|
||||
commonMulticastAddressNumber
|
||||
OCTET STRING
|
||||
}
|
||||
|
||||
commonMulticastAddressIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..255)
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMulticastAddressEntry 1 }
|
||||
|
||||
commonMulticastAddressNumber OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(6))
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMulticastAddressEntry 2 }
|
||||
|
||||
|
||||
commonBackoffPeriod OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..16383)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonBackoffParams 1 }
|
||||
|
||||
commonACKTimeoutWindow OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..255)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonBackoffParams 2 }
|
||||
|
||||
commonMaximumMACLayerRetries OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..255)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonBackoffParams 3 }
|
||||
|
||||
commonMaxPayloadSize OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonBackoffParams 4 }
|
||||
|
||||
commonBackoffMinimumExponent OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..15)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonBackoffParams 5 }
|
||||
|
||||
commonBackoffMaximumExponent OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..15)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonBackoffParams 6 }
|
||||
|
||||
|
||||
commonForwardPathLOSEvents OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacStats 1 }
|
||||
|
||||
commonForwardPathFramingErrors OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacStats 2 }
|
||||
|
||||
commonForwardPathCRCErrors OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacStats 3 }
|
||||
|
||||
commonInvalidMacCmds OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacStats 4 }
|
||||
|
||||
commonBackwardPathCollisionTimes OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonMacStats 5 }
|
||||
|
||||
commonReturnPathFrequency OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..1000000000)
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonRfGroup 1 }
|
||||
|
||||
commonForwardPathFrequency OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..1000000000)
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonRfGroup 2 }
|
||||
|
||||
commonProvisionedReturnPowerLevel OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..127)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonRfGroup 3 }
|
||||
|
||||
commonForwardPathReceiveLevel OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..127)
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonRfGroup 4 }
|
||||
|
||||
commonMaxReturnPower OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..127)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonRfGroup 5 }
|
||||
|
||||
commonAgentBootWay OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
bootDefault (1),
|
||||
bootBOOTP (2),
|
||||
bootTFTP (3)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentGroup 1 }
|
||||
|
||||
commonAgentReset OBJECT-TYPE
|
||||
SYNTAX INTEGER { reset(1) }
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentGroup 2 }
|
||||
|
||||
commonAgentMaxTraps OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentGroup 3 }
|
||||
|
||||
commonAgentTrapMinInterval OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentGroup 4 }
|
||||
|
||||
commonAgentTrapMaxInterval OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentGroup 5 }
|
||||
|
||||
commonTrapAck OBJECT-TYPE
|
||||
SYNTAX OCTET STRING ( SIZE ( 17..255 ) )
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentGroup 6 }
|
||||
|
||||
commonAgentTrapTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF CommonAgentTrapEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentGroup 7 }
|
||||
|
||||
commonAgentTrapEntry OBJECT-TYPE
|
||||
SYNTAX CommonAgentTrapEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
INDEX { commonAgentTrapIndex }
|
||||
::= { commonAgentTrapTable 1 }
|
||||
|
||||
CommonAgentTrapEntry ::= SEQUENCE {
|
||||
commonAgentTrapIndex
|
||||
INTEGER,
|
||||
commonAgentTrapIP
|
||||
IpAddress,
|
||||
commonAgentTrapCommunity
|
||||
DisplayString,
|
||||
commonAgentTrapStatus
|
||||
INTEGER
|
||||
}
|
||||
|
||||
commonAgentTrapIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentTrapEntry 1 }
|
||||
|
||||
commonAgentTrapIP OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentTrapEntry 2 }
|
||||
|
||||
commonAgentTrapCommunity OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..64))
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentTrapEntry 3 }
|
||||
|
||||
commonAgentTrapStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
commonAgentTrapEnable (1),
|
||||
commonAgentTrapDisable (2)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonAgentTrapEntry 4 }
|
||||
|
||||
|
||||
commonDeviceNum OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceGroup 1 }
|
||||
|
||||
commonDeviceInfoTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF CommonDeviceInfoEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceGroup 2 }
|
||||
|
||||
commonDeviceInfoEntry OBJECT-TYPE
|
||||
SYNTAX CommonDeviceInfoEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
INDEX { commonDeviceSlot }
|
||||
::= { commonDeviceInfoTable 1 }
|
||||
|
||||
CommonDeviceInfoEntry ::= SEQUENCE {
|
||||
commonDeviceSlot
|
||||
INTEGER,
|
||||
commonDevicesID
|
||||
OCTET STRING,
|
||||
commonDeviceVendor
|
||||
DisplayString,
|
||||
commonDeviceModelNumber
|
||||
DisplayString,
|
||||
commonDeviceSerialNumber
|
||||
DisplayString,
|
||||
commonDeviceVendorInfo
|
||||
DisplayString,
|
||||
commonDeviceStatus
|
||||
OCTET STRING,
|
||||
commonDeviceReset
|
||||
INTEGER,
|
||||
commonDeviceAlarmDetectionControl
|
||||
INTEGER,
|
||||
commonDeviceMACAddress
|
||||
NetworkAddress,
|
||||
commonDeviceTamperStatus
|
||||
INTEGER,
|
||||
commonDeviceInternalTemperature
|
||||
INTEGER,
|
||||
commonDeviceResetCause
|
||||
INTEGER,
|
||||
commonDeviceCraftStatus
|
||||
INTEGER,
|
||||
commonDevicesOID
|
||||
OBJECT IDENTIFIER,
|
||||
commonDeviceAcct
|
||||
Counter,
|
||||
commonDeviceName
|
||||
DisplayString,
|
||||
commonDeviceMFD
|
||||
DisplayString,
|
||||
commonDeviceFW
|
||||
DisplayString
|
||||
}
|
||||
|
||||
commonDeviceSlot OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 1 }
|
||||
|
||||
commonDevicesID OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(0..40))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 2 }
|
||||
|
||||
commonDeviceVendor OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 3 }
|
||||
|
||||
commonDeviceModelNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 4 }
|
||||
|
||||
commonDeviceSerialNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 5 }
|
||||
|
||||
commonDeviceVendorInfo OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 6 }
|
||||
|
||||
commonDeviceStatus OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(1))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
-- Bit 0: RSVD0
|
||||
-- Bit 1: RSVD1
|
||||
-- Bit 2: RSVD2
|
||||
-- Bit 3: MAJOR ALARMS
|
||||
-- Bit 4: MINOR ALARMS
|
||||
-- Bit 5: RSVD5
|
||||
-- Bit 6: RSVD6
|
||||
-- Bit 7: RSVD7"
|
||||
::= { commonDeviceInfoEntry 7 }
|
||||
|
||||
commonDeviceReset OBJECT-TYPE
|
||||
SYNTAX INTEGER { reset (1) }
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 8 }
|
||||
|
||||
commonDeviceAlarmDetectionControl OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
detectionDisabled (1),
|
||||
detectionEnabled (2),
|
||||
detectionEnabledAndRegenerate (3)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 9 }
|
||||
|
||||
commonDeviceMACAddress OBJECT-TYPE
|
||||
SYNTAX NetworkAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 10 }
|
||||
|
||||
commonDeviceTamperStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER { intact (1), compromised (2) }
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 11 }
|
||||
|
||||
commonDeviceInternalTemperature OBJECT-TYPE
|
||||
SYNTAX INTEGER (-128..127)
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 12 }
|
||||
|
||||
commonDeviceResetCause OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
other (1),
|
||||
powerup (2),
|
||||
command (3),
|
||||
watchdog (4),
|
||||
craft (5)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 13 }
|
||||
|
||||
commonDeviceCraftStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
disconnected (1),
|
||||
connected (2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 14 }
|
||||
|
||||
commonDevicesOID OBJECT-TYPE
|
||||
SYNTAX OBJECT IDENTIFIER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 15 }
|
||||
|
||||
commonDeviceAcct OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 16 }
|
||||
|
||||
commonDeviceName OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 17 }
|
||||
|
||||
commonDeviceMFD OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(10))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 18 }
|
||||
|
||||
commonDeviceFW OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { commonDeviceInfoEntry 19 }
|
||||
|
||||
|
||||
hfcColdStart TRAP-TYPE
|
||||
ENTERPRISE nscrtvHFCemsTree
|
||||
VARIABLES { commonPhysAddress, commonNELogicalID}
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= 0
|
||||
|
||||
hfcWarmStart TRAP-TYPE
|
||||
ENTERPRISE nscrtvHFCemsTree
|
||||
VARIABLES { commonPhysAddress, commonNELogicalID }
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= 2
|
||||
|
||||
END
|
||||
@@ -0,0 +1,442 @@
|
||||
NSCRTV-HFCEMS-OPTICALAMPLIFIER-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
DisplayString
|
||||
FROM RFC1213-MIB
|
||||
oaIdent
|
||||
FROM NSCRTV-ROOT
|
||||
;
|
||||
|
||||
oaVendorOID OBJECT-TYPE
|
||||
SYNTAX OBJECT IDENTIFIER
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaIdent 1 }
|
||||
|
||||
|
||||
oaOutputOpticalPower OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..65535 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaIdent 2 }
|
||||
|
||||
oaInputOpticalPower OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -128..127 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaIdent 3 }
|
||||
|
||||
oaPumpTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF OaPumpEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaIdent 4 }
|
||||
|
||||
oaPumpEntry OBJECT-TYPE
|
||||
SYNTAX OaPumpEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
INDEX { oaPumpIndex }
|
||||
::= { oaPumpTable 1 }
|
||||
|
||||
OaPumpEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
oaPumpIndex
|
||||
INTEGER,
|
||||
oaPumpBIAS
|
||||
INTEGER,
|
||||
oaPumpTEC
|
||||
INTEGER,
|
||||
oaPumpTemp
|
||||
INTEGER
|
||||
}
|
||||
|
||||
oaPumpIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaPumpEntry 1 }
|
||||
|
||||
oaPumpBIAS OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..65535 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaPumpEntry 2 }
|
||||
|
||||
oaPumpTEC OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaPumpEntry 3 }
|
||||
|
||||
oaPumpTemp OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..32768 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaPumpEntry 4 }
|
||||
|
||||
|
||||
oaNumberDCPowerSupply OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..16 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaIdent 5 }
|
||||
|
||||
oaDCPowerSupplyMode OBJECT-TYPE
|
||||
SYNTAX INTEGER { loadsharing(1), switchedRedundant(2),aloneSupply(3) }
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION " "
|
||||
::= { oaIdent 6 }
|
||||
|
||||
oaDCPowerTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF OaDCPowerEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaIdent 7 }
|
||||
|
||||
oaDCPowerEntry OBJECT-TYPE
|
||||
SYNTAX OaDCPowerEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
INDEX { oaDCPowerIndex }
|
||||
::= { oaDCPowerTable 1 }
|
||||
|
||||
OaDCPowerEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
oaDCPowerIndex
|
||||
INTEGER,
|
||||
oaDCPowerVoltage
|
||||
INTEGER,
|
||||
oaDCPowerCurrent
|
||||
INTEGER,
|
||||
oaDCPowerName
|
||||
DisplayString
|
||||
}
|
||||
|
||||
oaDCPowerIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaDCPowerEntry 1 }
|
||||
|
||||
oaDCPowerVoltage OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaDCPowerEntry 2 }
|
||||
|
||||
oaDCPowerCurrent OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..65535 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaDCPowerEntry 3 }
|
||||
|
||||
oaDCPowerName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaDCPowerEntry 4 }
|
||||
|
||||
oaVendorExtend OBJECT IDENTIFIER ::= { oaIdent 8 }
|
||||
|
||||
AdminEDFAIP OBJECT IDENTIFIER ::= { oaVendorExtend 13 }
|
||||
|
||||
edfaIPNetTabNum OBJECT IDENTIFIER ::= { AdminEDFAIP 1 }
|
||||
edfaIPTable OBJECT IDENTIFIER ::= { AdminEDFAIP 2 }
|
||||
|
||||
|
||||
oaPumpNumber OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 1 }
|
||||
|
||||
oaOutputPowerSet OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..4000 )
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 2 }
|
||||
|
||||
oaOutputPowerSetValueMax OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..4000 )
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 3 }
|
||||
|
||||
oaOutputPowerSetValueMin OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..4000 )
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 4 }
|
||||
|
||||
oaFansState OBJECT-TYPE
|
||||
SYNTAX INTEGER { on(1), off(2)}
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 5 }
|
||||
|
||||
oaFansControl OBJECT-TYPE
|
||||
SYNTAX INTEGER { on(1), off(2), auto(3) }
|
||||
ACCESS read-write
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 6 }
|
||||
|
||||
oaInputOpticalPower2 OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -2000..2000 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 7 }
|
||||
|
||||
oaOpticalOutputNum OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -128..127 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 8 }
|
||||
|
||||
oaABControl OBJECT-TYPE
|
||||
SYNTAX INTEGER { Auto(1), M(2)}
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 9 }
|
||||
|
||||
oaDSControl OBJECT-TYPE
|
||||
SYNTAX INTEGER { CH(1), CH(2)}
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 10 }
|
||||
|
||||
oaABState OBJECT-TYPE
|
||||
SYNTAX INTEGER { CH(1), CH(2)}
|
||||
ACCESS read-only
|
||||
STATUS optional
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 11 }
|
||||
|
||||
oaEDFAAlarmRangeTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF OaEDFAAlarmRangeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
::= { oaVendorExtend 12 }
|
||||
|
||||
oaEDFAAlarmRangeEntry OBJECT-TYPE
|
||||
SYNTAX OaEDFAAlarmRangeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
INDEX { oaEDFAAlarmRangeIndex }
|
||||
::= { oaEDFAAlarmRangeTable 1 }
|
||||
|
||||
|
||||
OaEDFAAlarmRangeEntry ::=
|
||||
SEQUENCE {
|
||||
oaEDFAAlarmRangeIndex
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeDecr
|
||||
OCTET STRING,
|
||||
oaEDFAAlarmRangeHIHItoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeHIHItoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeHItoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeHItoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOtoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOtoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOLOtoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeLOLOtoLO
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeDDtoHI
|
||||
INTEGER,
|
||||
oaEDFAAlarmRangeDDtoLO
|
||||
INTEGER
|
||||
}
|
||||
|
||||
oaEDFAAlarmRangeIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..12)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 1 }
|
||||
|
||||
oaEDFAAlarmRangeDecr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 2 }
|
||||
|
||||
oaEDFAAlarmRangeHIHItoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 3 }
|
||||
|
||||
oaEDFAAlarmRangeHIHItoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 4 }
|
||||
|
||||
oaEDFAAlarmRangeHItoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 5 }
|
||||
|
||||
oaEDFAAlarmRangeHItoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 6 }
|
||||
|
||||
oaEDFAAlarmRangeLOtoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 7 }
|
||||
|
||||
oaEDFAAlarmRangeLOtoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 8 }
|
||||
|
||||
oaEDFAAlarmRangeLOLOtoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 9 }
|
||||
|
||||
oaEDFAAlarmRangeLOLOtoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 10 }
|
||||
|
||||
oaEDFAAlarmRangeDDtoHI OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 11 }
|
||||
|
||||
oaEDFAAlarmRangeDDtoLO OBJECT-TYPE
|
||||
SYNTAX INTEGER ( -32768..32767 )
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
::= { oaEDFAAlarmRangeEntry 12 }
|
||||
|
||||
edfaIPNetTabNum OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { AdminEDFAIP 1 }
|
||||
|
||||
edfaIPTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF EdfaNetIPEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { AdminEDFAIP 2 }
|
||||
|
||||
EdfaNetIPEntry OBJECT-TYPE
|
||||
SYNTAX EdfaNetIPEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
INDEX { MachineNetIpIndex }
|
||||
::= { edfaIPTable 1 }
|
||||
|
||||
EdfaNetIPEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
MachineNetIpIndex
|
||||
INTEGER,
|
||||
MachineNetIpDecr
|
||||
DisplayString,
|
||||
MachineNetIpMessg
|
||||
IpAddress
|
||||
}
|
||||
|
||||
MachineNetIpIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER ( 0..10 )
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { EdfaNetIPEntry 1 }
|
||||
|
||||
MachineNetIpDecr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { EdfaNetIPEntry 2 }
|
||||
|
||||
MachineNetIpMessg OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION ""
|
||||
::= { EdfaNetIPEntry 3 }
|
||||
|
||||
|
||||
END
|
||||
@@ -0,0 +1,246 @@
|
||||
NSCRTV-HFCEMS-PROPERTY-MIB DEFINITIONS ::= BEGIN
|
||||
IMPORTS
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
propertyIdent
|
||||
FROM NSCRTV-ROOT
|
||||
;
|
||||
|
||||
analogPropertyTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AnalogPropertyEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { propertyIdent 1 }
|
||||
|
||||
analogPropertyEntry OBJECT-TYPE
|
||||
SYNTAX AnalogPropertyEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
INDEX { analogParameterOID }
|
||||
::= { analogPropertyTable 1 }
|
||||
|
||||
AnalogPropertyEntry ::= SEQUENCE {
|
||||
analogParameterOID
|
||||
OBJECT IDENTIFIER,
|
||||
alarmEnable
|
||||
OCTET STRING,
|
||||
analogAlarmState
|
||||
INTEGER,
|
||||
analogAlarmHIHI
|
||||
INTEGER,
|
||||
analogAlarmHI
|
||||
INTEGER,
|
||||
analogAlarmLO
|
||||
INTEGER,
|
||||
analogAlarmLOLO
|
||||
INTEGER,
|
||||
analogAlarmDeadband
|
||||
INTEGER
|
||||
}
|
||||
|
||||
analogParameterOID OBJECT-TYPE
|
||||
SYNTAX OBJECT IDENTIFIER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
--
|
||||
::= { analogPropertyEntry 1 }
|
||||
|
||||
alarmEnable OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(1))
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { analogPropertyEntry 2 }
|
||||
|
||||
analogAlarmState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
aasNominal (1),
|
||||
aasHIHI (2),
|
||||
aasHI (3),
|
||||
aasLO (4),
|
||||
aasLOLO (5)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { analogPropertyEntry 3 }
|
||||
|
||||
analogAlarmHIHI OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { analogPropertyEntry 4 }
|
||||
|
||||
analogAlarmHI OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { analogPropertyEntry 5 }
|
||||
|
||||
analogAlarmLO OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { analogPropertyEntry 6 }
|
||||
|
||||
analogAlarmLOLO OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { analogPropertyEntry 7 }
|
||||
|
||||
analogAlarmDeadband OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { analogPropertyEntry 8 }
|
||||
|
||||
|
||||
discretePropertyTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DiscretePropertyEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { propertyIdent 2 }
|
||||
|
||||
discretePropertyEntry OBJECT-TYPE
|
||||
SYNTAX DiscretePropertyEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
INDEX { discreteParameterOID, discreteAlarmValue }
|
||||
::= { discretePropertyTable 1 }
|
||||
|
||||
DiscretePropertyEntry ::= SEQUENCE {
|
||||
discreteParameterOID
|
||||
OBJECT IDENTIFIER,
|
||||
discreteAlarmValue
|
||||
INTEGER,
|
||||
discreteAlarmEnable
|
||||
INTEGER,
|
||||
discreteAlarmState
|
||||
INTEGER
|
||||
}
|
||||
|
||||
discreteParameterOID OBJECT-TYPE
|
||||
SYNTAX OBJECT IDENTIFIER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { discretePropertyEntry 1 }
|
||||
|
||||
discreteAlarmValue OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { discretePropertyEntry 2 }
|
||||
|
||||
|
||||
discreteAlarmEnable OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
disable (1),
|
||||
enableMajor (2),
|
||||
enableMinor (3)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { discretePropertyEntry 3 }
|
||||
|
||||
discreteAlarmState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
dasNominal(1),
|
||||
dasDiscreteMajor(6),
|
||||
dasDiscreteMinor(7)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { discretePropertyEntry 4 }
|
||||
|
||||
|
||||
currentAlarmTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF CurrentAlarmEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { propertyIdent 3 }
|
||||
|
||||
currentAlarmEntry OBJECT-TYPE
|
||||
SYNTAX CurrentAlarmEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
INDEX { currentAlarmOID }
|
||||
::= { currentAlarmTable 1 }
|
||||
|
||||
CurrentAlarmEntry ::= SEQUENCE {
|
||||
currentAlarmOID
|
||||
OBJECT IDENTIFIER,
|
||||
currentAlarmState
|
||||
INTEGER,
|
||||
currentAlarmValue
|
||||
INTEGER
|
||||
|
||||
}
|
||||
|
||||
currentAlarmOID OBJECT-TYPE
|
||||
SYNTAX OBJECT IDENTIFIER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { currentAlarmEntry 1 }
|
||||
|
||||
currentAlarmState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
caasHIHI (2),
|
||||
caasHI (3),
|
||||
caasLO (4),
|
||||
caasLOLO (5),
|
||||
caasDiscreteMajor (6),
|
||||
caasDiscreteMinor (7)
|
||||
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { currentAlarmEntry 2 }
|
||||
|
||||
currentAlarmValue OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Replaced By LiGang"
|
||||
::= { currentAlarmEntry 3 }
|
||||
|
||||
END
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,73 @@
|
||||
NSCRTV-ROOT DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises
|
||||
FROM RFC1155-SMI
|
||||
;
|
||||
nscrtvRoot OBJECT IDENTIFIER ::= { enterprises 17409 }
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
nscrtvHFCemsTree OBJECT IDENTIFIER ::= { nscrtvRoot 1 }
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
propertyIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 1}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
alarmsIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 2}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
commonIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 3}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
tvmodIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 4}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
qammodIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 5}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
otdIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 6}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
otxIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 7}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
uporIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 8}
|
||||
|
||||
|
||||
|
||||
dorIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 9}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
fnIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 10}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
oaIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 11}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
addIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 12}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
cacIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 13}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
lineIdent OBJECT IDENTIFIER ::= { nscrtvHFCemsTree 14}
|
||||
|
||||
-- DESCRIPTION
|
||||
|
||||
|
||||
END
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
+2896
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,455 @@
|
||||
--
|
||||
-- ALARM-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 4.0 Build 349
|
||||
-- Friday, November 21, 2003 at 15:00:38
|
||||
--
|
||||
|
||||
SPIDCOM-ALARM-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
neMibAlarm
|
||||
FROM NE-ALARM-MIB
|
||||
OBJECT-GROUP, NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
Integer32, Unsigned32, Counter32, TimeTicks, IpAddress, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, DateAndTime, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1
|
||||
neAlarm MODULE-IDENTITY
|
||||
LAST-UPDATED "200207151330Z" -- July 15, 2002 at 13:30 GMT
|
||||
ORGANIZATION
|
||||
"SPiDCOM"
|
||||
|
||||
CONTACT-INFO
|
||||
" TO BE SPECIFIED BY SPiDCOM
|
||||
"
|
||||
DESCRIPTION
|
||||
"Definition of the MIB tree structure
|
||||
to manage the Alarm Monitoring."
|
||||
::= { neMibAlarm 1 }
|
||||
|
||||
|
||||
|
||||
--
|
||||
-- Textual conventions
|
||||
--
|
||||
|
||||
ItuAlarmProbableCause ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"ItuAlarmProbableCause is the probable cause according the ITU X.733."
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
other(1),
|
||||
adapterError(2),
|
||||
applicationSubsystemFailure(3),
|
||||
bandwidthReduced(4),
|
||||
callEstablishmentError(5),
|
||||
communicationsProtocolError(6),
|
||||
communicationsSubsystemFailure(7),
|
||||
configurationOrCustomizationError(8),
|
||||
congestion(9),
|
||||
corruptData(10),
|
||||
cpuCyclesLimitExceeded(11),
|
||||
dataSetOrModemError(12),
|
||||
degradedSignal(13),
|
||||
dteDceInterfaceError(14),
|
||||
enclosureDoorOpen(15),
|
||||
equipmentMalfunction(16),
|
||||
excessiveVibration(17),
|
||||
fileError(18),
|
||||
fireDetected(19),
|
||||
floodDetected(20),
|
||||
framingError(21),
|
||||
heatingVentCoolingSystemProblem(22),
|
||||
humidityUnacceptable(23),
|
||||
inputOutputDeviceError(24),
|
||||
inputDeviceError(25),
|
||||
lanError(26),
|
||||
leakDetected(27),
|
||||
localNodeTransmissionError(28),
|
||||
lossOfFrame(29),
|
||||
lossOfSignal(30),
|
||||
materialSupplyExhausted(31),
|
||||
multiplexerProblem(32),
|
||||
outOfMemory(33),
|
||||
ouputDeviceError(34),
|
||||
performanceDegraded(35),
|
||||
powerProblem(36),
|
||||
pressureUnacceptable(37),
|
||||
processorProblem(38),
|
||||
pumpFailure(39),
|
||||
queueSizeExceeded(40),
|
||||
receiveFailure(41),
|
||||
receiverFailure(42),
|
||||
remoteNodeTransmissionError(43),
|
||||
resourceAtOrNearingCapacity(44),
|
||||
responseTimeExecessive(45),
|
||||
retransmissionRateExcessive(46),
|
||||
softwareError(47),
|
||||
softwareProgramAbnormallyTerminated(48),
|
||||
softwareProgramError(49),
|
||||
storageCapacityProblem(50),
|
||||
temperatureUnacceptable(51),
|
||||
thresholdCrossed(52),
|
||||
timingProblem(53),
|
||||
toxicLeakDetected(54),
|
||||
transmitFailure(55),
|
||||
transmitterFailure(56),
|
||||
underlyingResourceUnavailable(57),
|
||||
versionMismatch(58),
|
||||
authenticationFailure(59),
|
||||
breachOfConfidentiality(60),
|
||||
cableTamper(61),
|
||||
delayedInformation(62),
|
||||
denialOfService(63),
|
||||
duplicateInformation(64),
|
||||
informationMissing(65),
|
||||
informationModificationDetected(66),
|
||||
informationOutOfSequence(67),
|
||||
intrusionDetection(68),
|
||||
keyExpired(69),
|
||||
nonRepudiationFailure(70),
|
||||
outOfHoursActivity(71),
|
||||
outOfService(72),
|
||||
proceduralError(73),
|
||||
unauthorizedAccessAttempt(74),
|
||||
unexpectedInformation(75)
|
||||
}
|
||||
|
||||
ItuAlarmType ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"ItuAlarmType is the alarm type according the ITU X.733."
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
other(1),
|
||||
communicationsAlarm(2),
|
||||
qualityOfServiceAlarm(3),
|
||||
processingErrorAlarm(4),
|
||||
equipmentAlarm(5),
|
||||
environmentalAlarm(6),
|
||||
integrityViolation(7),
|
||||
operationalViolation(8),
|
||||
physicalViolation(9),
|
||||
securityServiceOrMechanismViolation(10),
|
||||
timeDomainViolation(11)
|
||||
}
|
||||
|
||||
NeAlarmPhoto ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Description."
|
||||
SYNTAX INTEGER { takePhoto(1) }
|
||||
|
||||
|
||||
|
||||
NeTrapFilter ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Filtertype used for control of traps by manager.
|
||||
If trapFilterOn, the agent sends non traps."
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
trapFilterOff(0),
|
||||
trapFilterOn(1)
|
||||
}
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1
|
||||
neAlarmTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF NeAlarmEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmTable represents all the possible alarms on the NE,
|
||||
stating the probable cause, the alarm type and the perceived
|
||||
severity as per [X.733].
|
||||
Note that each entry is significant until neAlarmIsApplicable
|
||||
is applicable(1).
|
||||
Entries should never be removed unless the NE they refer to
|
||||
disconnected NEs.
|
||||
To invalidate an entry the Agent sets neAlarmIsApplicable to
|
||||
notApplicable(0). before invalidating the entry, the agent
|
||||
sets the neAlarmPerceivedSeverity to cleared."
|
||||
::= { neAlarm 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1
|
||||
neAlarmEntry OBJECT-TYPE
|
||||
SYNTAX NeAlarmEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmMibEntry: an entry in neAlarmMibTable.
|
||||
"
|
||||
INDEX { neAlarmIndex }
|
||||
::= { neAlarmTable 1 }
|
||||
|
||||
|
||||
NeAlarmEntry ::=
|
||||
SEQUENCE {
|
||||
neAlarmIndex
|
||||
Unsigned32,
|
||||
neAlarmAdditionalText
|
||||
DisplayString,
|
||||
neAlarmProbableCause
|
||||
ItuAlarmProbableCause,
|
||||
neAlarmDescription
|
||||
DisplayString,
|
||||
neAlarmType
|
||||
ItuAlarmType,
|
||||
neAlarmManagedObject
|
||||
DisplayString,
|
||||
neAlarmStatus
|
||||
INTEGER,
|
||||
neAlarmAlreadyPresent
|
||||
INTEGER,
|
||||
neAlarmTimeStamp
|
||||
TimeTicks
|
||||
}
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.1
|
||||
neAlarmIndex OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmIndex is a unique identifier for an alarm on a given type of NE.
|
||||
The association between the alarmIndex and the alarm for the type of NE
|
||||
is described in the NE MIB.
|
||||
For example for the SRA L it is in the NETVIEWER SRAL 16X2 MIB.
|
||||
"
|
||||
::= { neAlarmEntry 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.2
|
||||
neAlarmAdditionalText OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmDescription is a brief description of a given alarm.
|
||||
E.g. Tributary 1 Card Fail."
|
||||
::= { neAlarmEntry 2 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.3
|
||||
neAlarmProbableCause OBJECT-TYPE
|
||||
SYNTAX ItuAlarmProbableCause
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmProbablecause represents the probable cause values for
|
||||
the alarms as per [X.733].
|
||||
"
|
||||
::= { neAlarmEntry 3 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.4
|
||||
neAlarmDescription OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmDescription represents a description of the Alarm, as per [X.733]
|
||||
"
|
||||
::= { neAlarmEntry 4 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.5
|
||||
neAlarmType OBJECT-TYPE
|
||||
SYNTAX ItuAlarmType
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmType represents the event type values for
|
||||
the alarms as per [X.733].
|
||||
"
|
||||
::= { neAlarmEntry 5 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.6
|
||||
neAlarmManagedObject OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"neAlarmManagedObject represents the managed Object
|
||||
values for the alarms.
|
||||
"
|
||||
::= { neAlarmEntry 6 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.7
|
||||
neAlarmStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
active(1),
|
||||
inactive(2),
|
||||
terminate(3)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"If neAlarmStatus is active(1) the current alarm is active
|
||||
for the NE.
|
||||
If neAlarmStatus is inactive(2), the current alarm is inactive
|
||||
(normality) for the NE.
|
||||
If neAlarmStatus is notAffected(3), the current alarm is not
|
||||
significant for the NE."
|
||||
::= { neAlarmEntry 7 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.8
|
||||
neAlarmAlreadyPresent OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
false(0),
|
||||
true(1)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This field could be use to know if alarm already there.
|
||||
"
|
||||
::= { neAlarmEntry 8 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.1.1.9
|
||||
neAlarmTimeStamp OBJECT-TYPE
|
||||
SYNTAX TimeTicks
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The alarm timestamp."
|
||||
::= { neAlarmEntry 9 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.2
|
||||
neAlarmActiveLastTrapIndex OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This is the Alarm Index sent for which the last trap was sent
|
||||
"
|
||||
::= { neAlarm 2 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.3
|
||||
neClearTerminatedAlarms OBJECT-TYPE
|
||||
SYNTAX Integer32 (1)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"When the manager sets this object, the agent deletes
|
||||
its alarms which status is terminated
|
||||
"
|
||||
::= { neAlarm 3 }
|
||||
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.4
|
||||
neAlarmActivePhoto OBJECT-TYPE
|
||||
SYNTAX Integer32 (1)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"When the manager sets this object, the agent sends all
|
||||
the active alarms from neAlarmtable to the manager.
|
||||
"
|
||||
::= { neAlarm 4 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.10
|
||||
neAlarmTrap OBJECT IDENTIFIER ::= { neAlarm 10 }
|
||||
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.10.2
|
||||
neAlarmTrapCounter OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object counts only the traps sent under node
|
||||
neAlarmTrap."
|
||||
::= { neAlarmTrap 2 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.10.3
|
||||
neAlarmTrapFilter OBJECT-TYPE
|
||||
SYNTAX NeTrapFilter
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"If trapFilterOn, the agent sends no traps under
|
||||
node neAlarmTrap. "
|
||||
::= { neAlarmTrap 3 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.10.4
|
||||
neAlarmTrapDestiIp OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The @IP where traps are sent"
|
||||
::= { neAlarmTrap 4 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.10.5
|
||||
neAlarmTrapDestiPort OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The UDP port where traps are sent"
|
||||
::= { neAlarmTrap 5 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.11
|
||||
neAlarmGroup OBJECT-GROUP
|
||||
OBJECTS { neAlarmIndex, neAlarmAdditionalText, neAlarmProbableCause, neAlarmDescription, neAlarmType,
|
||||
neAlarmManagedObject, neAlarmAlreadyPresent, neAlarmTimeStamp, neAlarmStatus
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The objects you can find in this MIB."
|
||||
::= { neAlarm 11 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.12
|
||||
--neAlarmMibNotificationGroup NOTIFICATION-GROUP
|
||||
-- NOTIFICATIONS { neAlarmChangeNotification }
|
||||
-- STATUS current
|
||||
-- DESCRIPTION
|
||||
-- "Description."
|
||||
-- ::= { neAlarm 12 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.2.1.13
|
||||
neAlarmActiveGroup OBJECT-GROUP
|
||||
OBJECTS { neAlarmActiveLastTrapIndex, neAlarmActivePhoto, neAlarmTrapFilter, neAlarmTrapDestiIp,
|
||||
neAlarmTrapDestiPort, neAlarmTrapCounter, neClearTerminatedAlarms
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The object regarding active alarms"
|
||||
::= { neAlarm 13 }
|
||||
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- SPIDCOM-ALARM-MIB.my
|
||||
--
|
||||
@@ -0,0 +1,20 @@
|
||||
--======================================================================
|
||||
-- SPIDCOM MIB
|
||||
--======================================================================
|
||||
|
||||
-- File Name : SPIDCOM-MIB.txt
|
||||
-- Date : Tue Jul 22 00:00:00 CEST 2004
|
||||
-- Author : Gilles Dupont
|
||||
|
||||
SPIDCOM-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises FROM SNMPv2-SMI;
|
||||
|
||||
spidcom OBJECT IDENTIFIER ::= { enterprises 22764 }
|
||||
|
||||
--========================= END OF DOCUMENT ========================
|
||||
|
||||
END
|
||||
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
--
|
||||
-- ALARM-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 4.0 Build 349
|
||||
-- Friday, November 21, 2003 at 15:00:38
|
||||
--
|
||||
|
||||
SPIDCOM-NOTIFICATION-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
spidcom FROM SPIDCOM-MIB;
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4
|
||||
specificSpidcomTrap OBJECT IDENTIFIER ::= { spidcom 4 }
|
||||
|
||||
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- SPIDCOM-NOTIFICATION-MIB.my
|
||||
--
|
||||
@@ -0,0 +1,113 @@
|
||||
--
|
||||
-- ALARM-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 4.0 Build 349
|
||||
-- Friday, November 21, 2003 at 15:00:38
|
||||
--
|
||||
|
||||
|
||||
|
||||
SPIDCOM-TRAPS DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
OBJECT-GROUP, NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
Integer32, Unsigned32, Counter32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
specificSpidcomTrap
|
||||
FROM SPIDCOM-NOTIFICATION-MIB
|
||||
ItuAlarmProbableCause,ItuAlarmType, neAlarmActivePhoto
|
||||
FROM SPIDCOM-ALARM-MIB
|
||||
plcBasePortIndex
|
||||
FROM SPC200
|
||||
DisplayString, DateAndTime, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1
|
||||
trapsDefinition MODULE-IDENTITY
|
||||
LAST-UPDATED "200207151330Z" -- July 15, 2002 at 13:30 GMT
|
||||
ORGANIZATION
|
||||
"SPiDCOM"
|
||||
|
||||
CONTACT-INFO
|
||||
" TO BE SPECIFIED BY SPiDCOM
|
||||
"
|
||||
DESCRIPTION
|
||||
"Definition of the MIB tree structure
|
||||
to manage the Alarm Monitoring."
|
||||
::= { specificSpidcomTrap 1 }
|
||||
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1.1
|
||||
deviceDown NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This trap is sent when a the connection with a distant node is down"
|
||||
::= { trapsDefinition 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1.2
|
||||
deviceUp NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This trap is sent when a the connection with a distant node is down"
|
||||
::= { trapsDefinition 2 }
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1.3
|
||||
maxAttenuation NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This trap is sent when some value is reached for attenuation"
|
||||
::= { trapsDefinition 3 }
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1.4
|
||||
maxNoise NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This trap is sent when some value is reached for noise"
|
||||
::= { trapsDefinition 4 }
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1.11
|
||||
linkUpDownNotificationsGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS {
|
||||
deviceUp,
|
||||
deviceDown }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The notifications which indicates connection with a distant node is up/down"
|
||||
::= { trapsDefinition 11 }
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1.12
|
||||
maxAttenuationNotificationsGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS {
|
||||
maxAttenuation }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The notification which indicates attenuation change"
|
||||
::= { trapsDefinition 12 }
|
||||
|
||||
-- 1.3.6.1.4.1.22764.4.1.13
|
||||
maxNoiseNotificationsGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS {
|
||||
maxNoise }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The notification which indicates noise change"
|
||||
::= { trapsDefinition 13 }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- SPIDCOM-NOTIFICATION-MIB.my
|
||||
--
|
||||
@@ -0,0 +1,200 @@
|
||||
--
|
||||
-- VENDOR-COMMON-MIB.my
|
||||
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
|
||||
-- Tuesday, Dec 25, 2017 at 15:03:49
|
||||
--
|
||||
|
||||
VENDOR-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises, MODULE-IDENTITY, OBJECT-IDENTITY
|
||||
FROM SNMPv2-SMI
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592
|
||||
vendor MODULE-IDENTITY
|
||||
LAST-UPDATED "201005271056Z" -- May 27, 2010 at 10:56 GMT
|
||||
ORGANIZATION
|
||||
"vendor."
|
||||
CONTACT-INFO
|
||||
" "
|
||||
DESCRIPTION
|
||||
"vendor common mib module"
|
||||
::= { enterprises 34592 }
|
||||
|
||||
|
||||
|
||||
--
|
||||
-- Textual conventions
|
||||
--
|
||||
|
||||
-- Textual conventions
|
||||
--
|
||||
-- Textual conventions
|
||||
--
|
||||
OperSwitch ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device function operation switch type"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
enable(1),
|
||||
disable(2)
|
||||
}
|
||||
|
||||
DeviceStatus ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device work status type. One device or dummy device may
|
||||
have following five work status:
|
||||
notPresent(1): the device is not present (not installed)
|
||||
offline(2):the device is present,but can not be communicated (or failed to get its info)
|
||||
online(3):the device is present and can be communicated
|
||||
normal(4):the device is online and work well
|
||||
abnormal(5): the device is online but work abnormal for some reason"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
notPresent(1),
|
||||
offline(2),
|
||||
online(3),
|
||||
normal(4),
|
||||
abnormal(5)
|
||||
}
|
||||
|
||||
DataDirection ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A data channel normally have two direction, up and down"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
upstream(1),
|
||||
downstream(2)
|
||||
}
|
||||
|
||||
DeviceOperation ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This type defines an operate action aggregate"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
reset(2),
|
||||
default(3),
|
||||
saveConfig(4),
|
||||
restore(5),
|
||||
delete(6)
|
||||
}
|
||||
|
||||
LedStatus ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Led status"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
on(1),
|
||||
off(2),
|
||||
blink(3)
|
||||
}
|
||||
|
||||
DeviceType ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Device type convention. Define all PBB device type value.
|
||||
|
||||
----------------------------------
|
||||
| family | series | class | type |
|
||||
----------------------------------
|
||||
8b 8b 8b 8b
|
||||
|
||||
refer to document <pducuct type defines>"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
epon(16842752),
|
||||
chassis(16843009),
|
||||
olt(16843265),
|
||||
pon(16843521),
|
||||
pon1(16909057),
|
||||
epon1u(17105153),
|
||||
olt1(17105409),
|
||||
pon2(17105665),
|
||||
onu4db(16974081),
|
||||
onu4db1(16974082),
|
||||
onu4db2(16974083),
|
||||
onu8db(16974084),
|
||||
onu4d(16974085),
|
||||
onu1d(16974086),
|
||||
onu1dg(16974087),
|
||||
onu2dg(16974088),
|
||||
onu2dgm(16974095),
|
||||
onu4dgm(16974094),
|
||||
onu4dp(16974089),
|
||||
onu3dm(16974090),
|
||||
onu4d1(16974091),
|
||||
onu2dm(16974092),
|
||||
onu4d2p(16974337),
|
||||
onu4d2pp(16974338),
|
||||
onu4d1r(16974593),
|
||||
onu4d1rp(16974594),
|
||||
onu4d2p1r(16974849),
|
||||
onu4d2p1r1(17040129),
|
||||
onu4d2p1rp(16974850),
|
||||
onu24d(17039617)
|
||||
}
|
||||
|
||||
|
||||
--
|
||||
-- Node definitions
|
||||
--
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1
|
||||
ipProduct OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier containing the definition of ip products line.
|
||||
"
|
||||
::= { vendor 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.1
|
||||
mediaConverter OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier for the subtree
|
||||
supported by media converter line products.
|
||||
"
|
||||
::= { ipProduct 1 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.2
|
||||
switch OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the base identifier for the subtree
|
||||
supported by smartCPE Switch line products.
|
||||
"
|
||||
::= { ipProduct 2 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.3
|
||||
pon OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" "
|
||||
::= { ipProduct 3 }
|
||||
|
||||
|
||||
-- 1.3.6.1.4.1.34592.1.4
|
||||
eoc OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" "
|
||||
::= { ipProduct 4 }
|
||||
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- EPON-EOC-MIB.my
|
||||
--
|
||||
+1027
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,617 @@
|
||||
1.3.6.1.2.1.1.1.0|4|zaporojskoe-olt
|
||||
1.3.6.1.2.1.1.2.0|6|.1.3.6.1.4.1.17409
|
||||
1.3.6.1.2.1.1.3.0|67|60468
|
||||
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.1.7.0|2|6
|
||||
1.3.6.1.2.1.2.2.1.2.16777472|4|ge0/0/1
|
||||
1.3.6.1.2.1.2.2.1.2.16777728|4|ge0/0/2
|
||||
1.3.6.1.2.1.2.2.1.2.16777984|4|ge0/0/3
|
||||
1.3.6.1.2.1.2.2.1.2.16778240|4|ge0/0/4
|
||||
1.3.6.1.2.1.2.2.1.2.16778496|4|ge0/0/5-uplink
|
||||
1.3.6.1.2.1.2.2.1.2.16778752|4|ge0/0/6
|
||||
1.3.6.1.2.1.2.2.1.2.16779008|4|ge0/0/7
|
||||
1.3.6.1.2.1.2.2.1.2.16779264|4|ge0/0/8
|
||||
1.3.6.1.2.1.2.2.1.2.16779520|4|xge0/0/1
|
||||
1.3.6.1.2.1.2.2.1.2.16779776|4|xge0/0/2
|
||||
1.3.6.1.2.1.2.2.1.2.16780032|4|xge0/0/3
|
||||
1.3.6.1.2.1.2.2.1.2.16780288|4|xge0/0/4
|
||||
1.3.6.1.2.1.2.2.1.2.16780544|4|pon0/0/1
|
||||
1.3.6.1.2.1.2.2.1.2.16780800|4|pon0/0/2
|
||||
1.3.6.1.2.1.2.2.1.2.16781056|4|pon0/0/3
|
||||
1.3.6.1.2.1.2.2.1.2.16781312|4|pon0/0/4
|
||||
1.3.6.1.2.1.2.2.1.2.16781568|4|pon0/0/5
|
||||
1.3.6.1.2.1.2.2.1.2.16781824|4|pon0/0/6
|
||||
1.3.6.1.2.1.2.2.1.2.16782080|4|pon0/0/7
|
||||
1.3.6.1.2.1.2.2.1.2.16782336|4|pon0/0/8
|
||||
1.3.6.1.2.1.2.2.1.3.16777472|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16777728|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16777984|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16778240|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16778496|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16778752|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16779008|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16779264|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16779520|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16779776|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16780032|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16780288|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16780544|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16780800|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16781056|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16781312|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16781568|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16781824|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16782080|2|117
|
||||
1.3.6.1.2.1.2.2.1.3.16782336|2|117
|
||||
1.3.6.1.2.1.2.2.1.4.16777472|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16777728|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16777984|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16778240|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16778496|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16778752|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16779008|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16779264|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16779520|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16779776|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16780032|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16780288|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16780544|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16780800|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16781056|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16781312|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16781568|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16781824|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16782080|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.16782336|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.16777472|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16777728|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16777984|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16778240|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16778496|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16778752|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16779008|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16779264|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16779520|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16779776|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16780032|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16780288|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16780544|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16780800|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16781056|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16781312|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16781568|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16781824|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16782080|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16782336|4|
|
||||
1.3.6.1.2.1.2.2.1.7.16777472|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16777728|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16777984|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16778240|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16778496|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16778752|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16779008|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16779264|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16779520|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16779776|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16780032|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16780288|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16780544|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16780800|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16781056|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16781312|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16781568|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16781824|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16782080|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.16782336|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.16777472|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16777728|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16777984|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16778240|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16778496|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.16778752|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16779008|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16779264|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16779520|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16779776|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16780032|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16780288|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16780544|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16780800|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16781056|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16781312|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16781568|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16781824|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16782080|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16782336|2|2
|
||||
1.3.6.1.2.1.2.2.1.9.16777472|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16777728|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16777984|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16778240|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16778496|67|566
|
||||
1.3.6.1.2.1.2.2.1.9.16778752|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16779008|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16779264|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16779520|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16779776|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16780032|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16780288|67|578
|
||||
1.3.6.1.2.1.2.2.1.9.16780544|67|569
|
||||
1.3.6.1.2.1.2.2.1.9.16780800|67|569
|
||||
1.3.6.1.2.1.2.2.1.9.16781056|67|569
|
||||
1.3.6.1.2.1.2.2.1.9.16781312|67|569
|
||||
1.3.6.1.2.1.2.2.1.9.16781568|67|569
|
||||
1.3.6.1.2.1.2.2.1.9.16781824|67|569
|
||||
1.3.6.1.2.1.2.2.1.9.16782080|67|569
|
||||
1.3.6.1.2.1.2.2.1.9.16782336|67|569
|
||||
1.3.6.1.2.1.2.2.1.13.16777472|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16777728|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16777984|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16778240|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16778496|65|48
|
||||
1.3.6.1.2.1.2.2.1.13.16778752|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16779008|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16779264|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16779520|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16779776|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16780032|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16780288|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16780544|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16780800|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16781056|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16781312|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16781568|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16781824|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16782080|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.16782336|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16777472|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16777728|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16777984|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16778240|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16778496|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16778752|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16779008|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16779264|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16779520|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16779776|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16780032|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16780288|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16780544|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16780800|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16781056|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16781312|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16781568|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16781824|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16782080|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.16782336|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16777472|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16777728|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16777984|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16778240|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16778496|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16778752|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16779008|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16779264|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16779520|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16779776|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16780032|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16780288|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16780544|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16780800|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16781056|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16781312|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16781568|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16781824|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16782080|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.16782336|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16777472|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16777728|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16777984|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16778240|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16778496|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16778752|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16779008|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16779264|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16779520|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16779776|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16780032|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16780288|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16780544|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16780800|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16781056|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16781312|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16781568|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16781824|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16782080|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.16782336|65|0
|
||||
1.3.6.1.2.1.16.1.1.1.1.16777472|2|16777472
|
||||
1.3.6.1.2.1.31.1.1.1.1.16777472|4|ge0/0/1
|
||||
1.3.6.1.2.1.31.1.1.1.1.16777728|4|ge0/0/2
|
||||
1.3.6.1.2.1.31.1.1.1.1.16777984|4|ge0/0/3
|
||||
1.3.6.1.2.1.31.1.1.1.1.16778240|4|ge0/0/4
|
||||
1.3.6.1.2.1.31.1.1.1.1.16778496|4|ge0/0/5-uplink
|
||||
1.3.6.1.2.1.31.1.1.1.1.16778752|4|ge0/0/6
|
||||
1.3.6.1.2.1.31.1.1.1.1.16779008|4|ge0/0/7
|
||||
1.3.6.1.2.1.31.1.1.1.1.16779264|4|ge0/0/8
|
||||
1.3.6.1.2.1.31.1.1.1.1.16779520|4|xge0/0/1
|
||||
1.3.6.1.2.1.31.1.1.1.1.16779776|4|xge0/0/2
|
||||
1.3.6.1.2.1.31.1.1.1.1.16780032|4|xge0/0/3
|
||||
1.3.6.1.2.1.31.1.1.1.1.16780288|4|xge0/0/4
|
||||
1.3.6.1.2.1.31.1.1.1.1.16780544|4|pon0/0/1
|
||||
1.3.6.1.2.1.31.1.1.1.1.16780800|4|pon0/0/2
|
||||
1.3.6.1.2.1.31.1.1.1.1.16781056|4|pon0/0/3
|
||||
1.3.6.1.2.1.31.1.1.1.1.16781312|4|pon0/0/4
|
||||
1.3.6.1.2.1.31.1.1.1.1.16781568|4|pon0/0/5
|
||||
1.3.6.1.2.1.31.1.1.1.1.16781824|4|pon0/0/6
|
||||
1.3.6.1.2.1.31.1.1.1.1.16782080|4|pon0/0/7
|
||||
1.3.6.1.2.1.31.1.1.1.1.16782336|4|pon0/0/8
|
||||
1.3.6.1.2.1.31.1.1.1.2.16777472|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16777728|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16777984|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16778240|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16778496|65|326
|
||||
1.3.6.1.2.1.31.1.1.1.2.16778752|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16779008|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16779264|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16779520|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16779776|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16780032|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16780288|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16780544|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16780800|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16781056|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16781312|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16781568|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16781824|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16782080|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.16782336|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16777472|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16777728|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16777984|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16778240|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16778496|65|23
|
||||
1.3.6.1.2.1.31.1.1.1.3.16778752|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16779008|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16779264|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16779520|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16779776|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16780032|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16780288|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16780544|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16780800|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16781056|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16781312|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16781568|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16781824|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16782080|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.16782336|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16777472|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16777728|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16777984|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16778240|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16778496|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16778752|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16779008|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16779264|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16779520|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16779776|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16780032|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16780288|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16780544|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16780800|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16781056|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16781312|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16781568|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16781824|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16782080|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.16782336|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16777472|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16777728|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16777984|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16778240|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16778496|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16778752|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16779008|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16779264|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16779520|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16779776|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16780032|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16780288|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16780544|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16780800|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16781056|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16781312|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16781568|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16781824|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16782080|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.16782336|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16778496|70|27100
|
||||
1.3.6.1.2.1.31.1.1.1.6.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16778496|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16778496|70|326
|
||||
1.3.6.1.2.1.31.1.1.1.8.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16778496|70|23
|
||||
1.3.6.1.2.1.31.1.1.1.9.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16778496|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16778496|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16778496|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16777472|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16777728|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16777984|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16778240|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16778496|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16778752|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16779008|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16779264|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16779520|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16779776|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16780032|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16780288|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16780544|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16780800|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16781056|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16781312|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16781568|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16781824|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16782080|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.16782336|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.14.16777472|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16777728|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16777984|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16778240|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16778496|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16778752|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16779008|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16779264|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16779520|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16779776|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16780032|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16780288|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16780544|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16780800|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16781056|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16781312|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16781568|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16781824|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16782080|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.16782336|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.15.16777472|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16777728|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16777984|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16778240|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16778496|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16778752|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16779008|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16779264|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16779520|66|10000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16779776|66|10000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16780032|66|10000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16780288|66|10000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16780544|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16780800|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16781056|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16781312|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16781568|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16781824|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16782080|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.16782336|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.16.16777472|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16777728|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16777984|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16778240|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16778496|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16778752|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16779008|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16779264|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16779520|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16779776|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16780032|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16780288|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16780544|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16780800|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16781056|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16781312|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16781568|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16781824|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16782080|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.16782336|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.16777472|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16777728|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16777984|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16778240|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16778496|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.16778752|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16779008|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16779264|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16779520|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16779776|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16780032|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16780288|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16780544|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16780800|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16781056|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16781312|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16781568|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16781824|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16782080|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.16782336|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.18.16777472|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16777728|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16777984|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16778240|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16778496|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16778752|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16779008|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16779264|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16779520|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16779776|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16780032|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16780288|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16780544|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16780800|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16781056|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16781312|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16781568|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16781824|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16782080|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16782336|4|
|
||||
1.3.6.1.2.1.31.1.1.1.19.16777472|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16777728|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16777984|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16778240|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16778496|67|565
|
||||
1.3.6.1.2.1.31.1.1.1.19.16778752|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16779008|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16779264|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16779520|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16779776|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16780032|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16780288|67|577
|
||||
1.3.6.1.2.1.31.1.1.1.19.16780544|67|568
|
||||
1.3.6.1.2.1.31.1.1.1.19.16780800|67|568
|
||||
1.3.6.1.2.1.31.1.1.1.19.16781056|67|568
|
||||
1.3.6.1.2.1.31.1.1.1.19.16781312|67|568
|
||||
1.3.6.1.2.1.31.1.1.1.19.16781568|67|568
|
||||
1.3.6.1.2.1.31.1.1.1.19.16781824|67|569
|
||||
1.3.6.1.2.1.31.1.1.1.19.16782080|67|569
|
||||
1.3.6.1.2.1.31.1.1.1.19.16782336|67|569
|
||||
1.3.6.1.4.1.17409.2.3.1.1.13.0|4|AF2101-1901000029
|
||||
1.3.6.1.4.1.34592.1.3.1.5.2.1.1.4.0|4|V4.0
|
||||
1.3.6.1.4.1.34592.1.3.1.5.2.1.1.5.0|4|4.2.7.58
|
||||
1.3.6.1.4.1.34592.1.3.1.5.2.1.1.7.0|2|4
|
||||
1.3.6.1.4.1.34592.1.3.100.1.8.1.0|2|19
|
||||
1.3.6.1.4.1.34592.1.3.100.1.8.2.0|2|242
|
||||
1.3.6.1.4.1.34592.1.3.100.1.8.3.0|2|86
|
||||
1.3.6.1.4.1.34592.1.3.100.1.8.6.0|2|305
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|554
|
||||
Reference in New Issue
Block a user