-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpicfOobm.mib
343 lines (296 loc) · 11.5 KB
/
hpicfOobm.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
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
HP-ICF-OOBM-MIB DEFINITIONS ::= BEGIN
IMPORTS
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB
OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION, TruthValue
FROM SNMPv2-TC
hpSwitch
FROM HP-ICF-OID
snmpTargetAddrEntry
FROM SNMP-TARGET-MIB
ifIndex
FROM IF-MIB;
hpicfOobmMIB MODULE-IDENTITY
LAST-UPDATED "201003260000Z" -- Mar 26, 2010
ORGANIZATION "HP Networking"
CONTACT-INFO
"Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "The MIB module is for representing Oobm entity"
REVISION "201003260000Z" -- Mar 26, 2010
DESCRIPTION "Added oobm member tables"
REVISION "200902130000Z" -- Feb 13, 2009
DESCRIPTION "Initial Revision"
::= { hpSwitch 58 }
-- *********************************************************************
-- hpicfOobmMIB - the main groups
-- *********************************************************************
hpicfOobmNotifications OBJECT IDENTIFIER
::= { hpicfOobmMIB 0 }
hpicfOobmObjects OBJECT IDENTIFIER
::= { hpicfOobmMIB 1 }
hpicfOobmConformance OBJECT IDENTIFIER
::= { hpicfOobmMIB 3 }
-- *********************************************************************
-- OOBM Textual Conventions
-- *********************************************************************
HpicfOobmServerIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "An enumerated value that indications the Server
application type. Server application type is index
for this table."
SYNTAX INTEGER {
telnet(1),
ssh(2),
tftp(3),
http(4),
snmp(5)
}
HpicfOobmServerState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "An enumerated value which provides an indication of
the Application server's presence. Default value is
oobm only. Application server can be run for oobm
only, data only, or for both."
SYNTAX INTEGER {
oobm(1),
data(2),
both(3)
}
-- *********************************************************************
-- OOBM Scalars
-- *********************************************************************
hpicfOobmScalars OBJECT IDENTIFIER ::= { hpicfOobmObjects 1 }
hpicfOobmStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Global Oobm (Out Of Band Management) status. By default
oobm is globally enabled. On the stackable device, when
stacking is enabled, this enables oobm on all the
member switches."
DEFVAL { enable }
::= { hpicfOobmScalars 1 }
-- ********************************************************************
-- Oobm server applications entry
-- ********************************************************************
hpicfOobmServers OBJECT IDENTIFIER ::= { hpicfOobmObjects 2 }
hpicfOobmServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOobmServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains one row for every server
application in the switch entity. On a
stackable device, when stacking is enabled,
the server entry is created on all the
member switches."
::= { hpicfOobmServers 1 }
hpicfOobmServerEntry OBJECT-TYPE
SYNTAX HpicfOobmServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about Server Application table."
INDEX { hpicfOobmServerType }
::= { hpicfOobmServerTable 1 }
HpicfOobmServerEntry ::= SEQUENCE {
hpicfOobmServerType HpicfOobmServerIndex,
hpicfOobmServerListenMode HpicfOobmServerState
}
hpicfOobmServerType OBJECT-TYPE
SYNTAX HpicfOobmServerIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index that is used to access the switch server
application table."
::= { hpicfOobmServerEntry 1 }
hpicfOobmServerListenMode OBJECT-TYPE
SYNTAX HpicfOobmServerState
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The current state of the server application. Default
value is Oobm. Depending on the interface on which
server application is running, incoming queries will
be listened by the switch."
::= { hpicfOobmServerEntry 2 }
hpicfOobmSnmpTargetAddrIsOobm OBJECT IDENTIFIER ::= { hpicfOobmObjects 3 }
hpicfSnmpTargetAddrIsOobmTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfSnmpTargetAddrIsOobmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Adds an HpicfSnmpTargetAddrIsOobmEntry to
snmpTargetAddrTable."
::= { hpicfOobmSnmpTargetAddrIsOobm 1}
hpicfSnmpTargetAddrIsOobmEntry OBJECT-TYPE
SYNTAX HpicfSnmpTargetAddrIsOobmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Adds an HpicfSnmpTargetAddrIsOobmEntry to
snmpTargetAddrTable."
AUGMENTS { snmpTargetAddrEntry }
::= { hpicfSnmpTargetAddrIsOobmTable 1 }
HpicfSnmpTargetAddrIsOobmEntry ::= SEQUENCE {
hpicfSnmpTargetAddrIsOobm TruthValue
}
hpicfSnmpTargetAddrIsOobm OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates if the target is reachable
over OOBM (Out OF Band Management) interface or
not. This mib object will be applicable only if
there is a physical OOBM port on the device."
DEFVAL { false } -- SNMP traps only
::= { hpicfSnmpTargetAddrIsOobmEntry 1 }
-- ********************************************************************
-- Oobm Default Gateway entry
-- ********************************************************************
hpicfOobmDefGateway OBJECT IDENTIFIER ::= { hpicfOobmObjects 4 }
hpicfOobmDefGatewayTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOobmDefGatewayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains one row for every default
gateway configured for OOBM Interface."
::= { hpicfOobmDefGateway 1 }
hpicfOobmDefGatewayEntry OBJECT-TYPE
SYNTAX HpicfOobmDefGatewayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about Default Gateway table."
INDEX { hpicfOobmDefGatewayType }
::= { hpicfOobmDefGatewayTable 1 }
HpicfOobmDefGatewayEntry ::= SEQUENCE {
hpicfOobmDefGatewayType InetAddressType,
hpicfOobmDefGatewayAddr InetAddress
}
hpicfOobmDefGatewayType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Address type of default gateway configured
for OOBM Interface."
::= { hpicfOobmDefGatewayEntry 1 }
hpicfOobmDefGatewayAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP Address of the default gateway
configured for OOBM interface."
::= { hpicfOobmDefGatewayEntry 2 }
hpicfOobmStackMembers OBJECT IDENTIFIER ::= { hpicfOobmObjects 5 }
-- ********************************************************************
-- Oobm Member Table
-- ********************************************************************
hpicfOobmMemberDefGatewayTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOobmMemberDefGatewayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains one row for every default
gateway configured for OOBM Interface and
for each member of the stack."
::= { hpicfOobmStackMembers 3 }
hpicfOobmMemberDefGatewayEntry OBJECT-TYPE
SYNTAX HpicfOobmMemberDefGatewayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about Default Gateway table."
INDEX { ifIndex,
hpicfOobmMemberDefGatewayType }
::= { hpicfOobmMemberDefGatewayTable 1 }
HpicfOobmMemberDefGatewayEntry ::= SEQUENCE {
hpicfOobmMemberDefGatewayType InetAddressType,
hpicfOobmMemberDefGatewayAddr InetAddress
}
hpicfOobmMemberDefGatewayType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Address type of default gateway configured
for OOBM Interface."
::= { hpicfOobmMemberDefGatewayEntry 1 }
hpicfOobmMemberDefGatewayAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP Address of the default gateway
configured for OOBM interface."
::= { hpicfOobmMemberDefGatewayEntry 2 }
-- ********************************************************************
-- Oobm Conformance
--********************************************************************
hpicfOobmCompliance OBJECT IDENTIFIER ::= { hpicfOobmConformance 1 }
hpicfOobmGroups OBJECT IDENTIFIER ::= { hpicfOobmConformance 2 }
-- ********************************************************************
-- OOBM Application Servers Complicance
-- ********************************************************************
hpicfOobmMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for entries which implement
the Oobm application servers MIB."
MODULE -- This module
MANDATORY-GROUPS
{
hpicfOobmScalarsGroup,
hpicfOobmServersGroup,
hpicfSnmpTargetAddrIsOobmGroup,
hpicfOobmDefGatewayGroup,
hpicfOobmMemberGroup
}
GROUP hpicfOobmGroups
DESCRIPTION "Objects associated with switch Oobm configuration
entity."
::= { hpicfOobmCompliance 1 }
--
-- Oobm Application Servers Groups
--
hpicfOobmScalarsGroup OBJECT-GROUP
OBJECTS
{
hpicfOobmStatus
}
STATUS current
DESCRIPTION "Basic Scalars required in Oobm MIB implementation."
::= { hpicfOobmGroups 1 }
hpicfOobmServersGroup OBJECT-GROUP
OBJECTS
{
hpicfOobmServerListenMode
}
STATUS current
DESCRIPTION "Oobm Server MIB parameters."
::= { hpicfOobmGroups 2 }
hpicfSnmpTargetAddrIsOobmGroup OBJECT-GROUP
OBJECTS
{
hpicfSnmpTargetAddrIsOobm
}
STATUS current
DESCRIPTION "A group of objects to add an
HpicfSnmpTargetAddrIsOobmEntry to
snmpTargetAddrTable."
::= { hpicfOobmGroups 3 }
hpicfOobmDefGatewayGroup OBJECT-GROUP
OBJECTS
{
hpicfOobmDefGatewayAddr
}
STATUS current
DESCRIPTION "OOBM Default Gateway MIB parameters"
::= { hpicfOobmGroups 4 }
hpicfOobmMemberGroup OBJECT-GROUP
OBJECTS
{
hpicfOobmMemberDefGatewayAddr
}
STATUS current
DESCRIPTION "OOBM stack member parameters"
::= { hpicfOobmGroups 5 }
END