-
Notifications
You must be signed in to change notification settings - Fork 57
/
ADTRAN-MIB.mib
163 lines (141 loc) · 5.39 KB
/
ADTRAN-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
ADTRAN-MIB DEFINITIONS ::= BEGIN
-- TITLE: ADTRAN MIB Definitions
-- FILENAME: ADTRAN.MIB
-- AUTHOR: Jeff Wells
-- DATE: 97/06/13
--
-- MODIFICATIONS:
-- 98/04/10 SLS added adShared node for shared function mibs
-- 98/05/05 SLS correct adShared & add adPerform shared function mibs
-- {iso org(3) dod(6) internet(1) private(4) enterprises(1) adtran(664) }
-- The ADTRAN-MIB defines the "adtran" enterprise tree node. This MIB
-- provides the basis for the definition of all other ADTRAN MIBs.
-- The "adProducts" sub-node under "adtran" lists all SNMP manageable
-- products. Product specific MIBs are defined under "adMgmt".
-- Management information common to all ADTRAN products appears under
-- the "adAdmin" sub-node.
IMPORTS
enterprises
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString, PhysAddress
FROM RFC1213-MIB;
--
-- OBJECT IDENTIFIERS
--
adtran OBJECT IDENTIFIER ::= { enterprises 664 }
adProducts OBJECT IDENTIFIER ::= { adtran 1 }
adMgmt OBJECT IDENTIFIER ::= { adtran 2 }
adAdmin OBJECT IDENTIFIER ::= { adtran 3 }
adPerform OBJECT IDENTIFIER ::= { adtran 4 }
adShared OBJECT IDENTIFIER ::= { adtran 5 }
--
-- PRODUCT IDENTIFIER SECTION - adProducts
--
-- The name identifiers for Adtran products that support SNMP
-- management appear in a list under the "adProducts" node.
-- The location of the name within this list defines the MIB-II
-- system group "sysObjectID" value for the product. For example,
-- the T1 channel bank line interface unit, ACTDAXL3, will respond
-- to a request for system object ID with the identifier sequence
-- iso.org.dos.internet.private.enterprises.adtran.adProducts.
-- adACTDAXL3 - 1.3.6.1.4.1.664.1.9
--
--
-- PRODUCT MANAGEMENT SECTION - adMgmt
--
-- The "adMgmt" node contains product specific management information.
-- Each manageable product will have its own sub-node under this node
-- containing the product's management information. For example, the
-- ACTDAXL3 management node is "adACTDAXL3mg" with the numeric
-- identifier sequence - 1.3.6.1.4.1.664.2.9.
--
--
-- ADMINISTRATION SECTION - adAdmin
--
-- The "adAdmin" node contains administrative information
-- for Adtran products. The "adProductInfo" group under this
-- node contains information about the product, such as
-- product name, part number, and revision.
--
--
-- Perfomance SECTION - adPerform
--
-- The "adPerform" node contains frame relay performance statistics
-- for all Adtran "IQ" devices (i.e., TSUIQ & DSUIQ). Currently, the
-- only mib groups under this branch are defined in the fperform mib.
--
--
-- SHARED SECTION - adShared
--
-- The "adShared" node contains management information for a specific
-- function which may be supported by several manageable products.
-- Each functional group will have its own sub-node under this node
-- and be located within an individual MIB. For example, the node
-- adExLan is the first node under the adShared node with the numeric
-- identifier sequence - 1.3.6.1.4.1.664.5.1.
--
--
-- Product Information group
--
-- This group contains information common for most all Adtran
-- products.
--
adProductInfo OBJECT IDENTIFIER ::= { adAdmin 1 }
adProdName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Adtran Product Name"
::= { adProductInfo 1 }
adProdPartNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Adtran Product Part Number"
::= { adProductInfo 2 }
adProdCLEIcode OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Adtran Product CLEI Code"
::= { adProductInfo 3 }
adProdSerialNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Adtran Product Serial Number"
::= { adProductInfo 4 }
adProdRevision OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Adtran Product Revision Number"
::= { adProductInfo 5 }
adProdSwVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Adtran Product Software Version Number"
::= { adProductInfo 6 }
adProdPhysAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This octet string variable contains the Adtran
Physical Address assigned to this product. For
example the octet sequence, 16 02 03 01, specifies
channel bank number 16, digroup number 2, DS0 channel
slot number 3, position 1. This object value is
commonly reported in SNMP Traps to identify the
product's location."
::= { adProductInfo 7 }
END