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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
-- ====================================================================
-- Copyright (C) 2005 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: Huawei Module information MIB Definition
-- Reference:
-- Version: V1.0
-- History:
-- huruoheng create first version v1.0
-- =====================================================================
HUAWEI-MODULE-INFO-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
DateAndTime, TEXTUAL-CONVENTION
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB;
hwModuleInfo MODULE-IDENTITY
LAST-UPDATED "200506301600Z"
ORGANIZATION
"Huawei Technologies Co., Ltd."
CONTACT-INFO
"R&D BeiJing, Huawei Technologies co.,Ltd.
Huawei Bld.,NO.3 Xinxi Rd.,
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
Zip:100085
Http://www.huawei.com
E-mail:support@huawei.com"
DESCRIPTION
"
The HUAWEI-MODULE-INFO-MIB contains objects to describe
the module information.Such as module BOM description string.
"
::= { hwDatacomm 43 }
hwModuleInfoObjects OBJECT IDENTIFIER ::= { hwModuleInfo 1 }
hwModuleInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwModuleInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the Module Information about slot and subslot."
::= { hwModuleInfoObjects 1 }
hwModuleInfoEntry OBJECT-TYPE
SYNTAX HwModuleInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table."
INDEX { hwModuleIndex, hwSubModuleIndex }
::= { hwModuleInfoTable 1 }
HwModuleInfoEntry ::=
SEQUENCE {
hwModuleIndex
INTEGER,
hwSubModuleIndex
INTEGER,
hwModuleBomId
SnmpAdminString,
hwModuleBomEnDesc
SnmpAdminString,
hwModuleBomLocalDesc
SnmpAdminString,
hwModuleManufacturedDate
DateAndTime,
hwModuleManufactureCode
INTEGER,
hwModuleCLEICode
SnmpAdminString,
hwModuleUpdateLog
SnmpAdminString,
hwModuleArchivesInfoVersion
SnmpAdminString,
hwModuleSerialNum
SnmpAdminString
}
hwModuleIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Object to index the table.It can be integer up from 1.
For example: 3 means the entry is a module from No.3 slot
and it can be slot or subslot.
"
::= { hwModuleInfoEntry 1 }
hwSubModuleIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Sub Object to index the table.It can be integer up from 1.
For example:
hwModuleIndex=1 hwSubModuleIndex=5
That means this entry is the fifth subslot on slot No.1
hwModuleIndex=2 hwSubModuleIndex=0
That means this entry is the second slot,and not a subslot.
"
::= { hwModuleInfoEntry 2 }
hwModuleBomId OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identity of the Bill of Material about this replaceable
unit which coded by vendor. This node is mapping to 'ITEM'
in the information file.
"
::= { hwModuleInfoEntry 3 }
hwModuleBomEnDesc OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The English description of the Bill of Material about this
replaceable unit.
"
::= { hwModuleInfoEntry 4 }
hwModuleBomLocalDesc OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local description of the Bill of Material about this
replaceable unit.
"
::= { hwModuleInfoEntry 5 }
hwModuleManufacturedDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date when this physical entity is Manufactured.
"
::= { hwModuleInfoEntry 6 }
hwModuleManufactureCode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The code of the place where this physical entity is Manufactured.
"
::= { hwModuleInfoEntry 7 }
hwModuleCLEICode OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string code of CLEI which was granted by America.
"
::= { hwModuleInfoEntry 8 }
hwModuleUpdateLog OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maintenance log of this replaceable unit.
"
::= { hwModuleInfoEntry 9 }
hwModuleArchivesInfoVersion OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Version of Archives Information.
"
::= { hwModuleInfoEntry 10 }
hwModuleSerialNum OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Serial number of this replaceable unit.
"
::= { hwModuleInfoEntry 11 }
END
|