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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
|
-- MIB created 11/13/98 22:12:30, by
-- SMIC (the next generation) version 1.6.29, November 22, 1994.
IBMESCON-MIB DEFINITIONS ::= BEGIN
-- From file: "ibmescon.mi2"
-- Compile options "G A T M"
IMPORTS
enterprises, Counter32, Integer32, IpAddress
FROM SNMPv2-SMI-v1
OBJECT-TYPE
FROM RFC-1212
MacAddress
FROM SNMPv2-TC-v1
ifIndex
FROM RFC1213-MIB;
ibmESCON OBJECT IDENTIFIER ::= { ibmArchitecture 17 }
-- MODULE-IDENTITY
-- LastUpdated
-- 9702241200Z
-- OrgName
-- IBM
-- ContactInfo
-- Bob Moore (remoore @ ralvm6)
-- IBM Corporation
-- 800 Park Offices Drive
-- CNMA/664
-- P.O. Box 12195
-- Research Triangle Park, NC 27709, USA
-- Tel: 1 919 254 4436
-- E-mail: remoore@ralvm6.vnet.ibm.com
--
-- John Rooney (rooney @ yktvmv)
--
-- Valerie Zoccola (zoccolav @ lgeprofs)
-- Descr
-- MIB for managing activity on an ESCON channel from its
-- secondary end.
--
-- 'ESCON' is a trademark of the IBM Corporation.
ibm OBJECT IDENTIFIER ::= { enterprises 2 }
ibmArchitecture OBJECT IDENTIFIER ::= { ibm 5 }
esconPortData OBJECT IDENTIFIER ::= { ibmESCON 1 }
esconLinkData OBJECT IDENTIFIER ::= { ibmESCON 2 }
esconStationData OBJECT IDENTIFIER ::= { ibmESCON 3 }
esconConformance OBJECT IDENTIFIER ::= { ibmESCON 4 }
esconMibCompliances OBJECT IDENTIFIER ::= { esconConformance 1 }
esconMibGroups OBJECT IDENTIFIER ::= { esconConformance 2 }
esconPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsconPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of objects that describe an ESCON channel port."
::= { esconPortData 1 }
esconPortEntry OBJECT-TYPE
SYNTAX EsconPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of objects that describe an ESCON channel port. This
table is indexed by ifIndex from MIB-II."
INDEX { ifIndex }
::= { esconPortTable 1 }
EsconPortEntry ::= SEQUENCE {
esconPortControlUnitLinkAddress OCTET STRING,
esconPortInFiberStatus INTEGER,
esconPortOutFiberStatus INTEGER
}
esconPortControlUnitLinkAddress OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This address identifies the ESCON Director port to which the
optical fiber from the ESCON device is attached."
::= { esconPortEntry 1 }
esconPortInFiberStatus OBJECT-TYPE
SYNTAX INTEGER {
inLoff(1),
inOls(2),
inIdle(3),
inUnknown(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the fiber into this device from the host:
inLoff = the light is off on the fiber into
this device from the host
inOls = the fiber into this device from the
host is in an intermediate state between
light-off and light-on
inIdle = the fiber into this device from the
host is in the light-on state, and is
ready to transfer data from the host to
this device
inUnknown = the agent cannot determine the status of
the fiber into this device from the host"
::= { esconPortEntry 2 }
esconPortOutFiberStatus OBJECT-TYPE
SYNTAX INTEGER {
outDisableReq(1),
outDisableForced(2),
outLoffForced(3),
outOls(4),
outOlsForced(5),
outEnable(6),
outError(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the fiber out of this device to the host:
outDisableReq = out disable obtained; the fiber
out of this device into the host
is not in the light-on state
outDisableForced = out ESCON emits OLS; the fiber
out of this device into the host
is not in the light-on state
outLoffForced = out ESCON forced light-off; the fiber
out of this device into the host
is not in the light-on state
outOls = the fiber out of this device into the
host is in an intermediate state
between light-off and light-on
outOlsforced = out ESCON forced OLS; the fiber
out of this device into the host
is not in the light-on state
outEnable = the fiber out of this device into the
host is in the light-on state, and is
ready to transfer data from this
device to the host
outError = the status of the fiber out of this
device to the host is none of those
listed above. This is a state that
should not occur"
::= { esconPortEntry 3 }
esconLinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsconLinkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of objects that describe an ESCON channel link."
::= { esconLinkData 1 }
esconLinkEntry OBJECT-TYPE
SYNTAX EsconLinkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of objects that describe an ESCON channel link. This
table is indexed by ifIndex from MIB-II, by host link address,
and by (host) partition number."
INDEX { ifIndex, esconLinkHostLinkAddress, esconLinkPartitionNumber }
::= { esconLinkTable 1 }
EsconLinkEntry ::= SEQUENCE {
esconLinkHostLinkAddress OCTET STRING,
esconLinkPartitionNumber OCTET STRING,
esconLinkStatus INTEGER
}
esconLinkHostLinkAddress OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This address identifies the ESCON Director port to which the
optical fiber between the ESCON Director and the host is
attached."
::= { esconLinkEntry 1 }
esconLinkPartitionNumber OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A number identifying a logical host within an actual host."
::= { esconLinkEntry 2 }
esconLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
hlpNotEstab(1),
hlpEstab(2),
hlpError(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Gives the status of the link:
hlpNotEstab = Host Logical Path not established
hlpEstab = Host Logical Path established
hlpError = Host Logical Path error"
::= { esconLinkEntry 3 }
esconStationTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsconStationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of objects that describe an ESCON channel station."
::= { esconStationData 1 }
esconStationEntry OBJECT-TYPE
SYNTAX EsconStationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of objects that describe an ESCON channel station. This
table is indexed by ifIndex from MIB-II, by host link address,
by (host) partition number, and by ESCON device address."
INDEX { ifIndex, esconStationHostLinkAddress, esconStationPartitionNumber, esconStationDeviceAddress }
::= { esconStationTable 1 }
EsconStationEntry ::= SEQUENCE {
esconStationHostLinkAddress OCTET STRING,
esconStationPartitionNumber OCTET STRING,
esconStationDeviceAddress OCTET STRING,
esconStationState INTEGER,
esconStationAttentionDelay INTEGER,
esconStationAttentionTimeOut INTEGER,
esconStationMaxBfru INTEGER,
esconStationUnitSize INTEGER,
esconStationMaxMsgSizeReceived INTEGER,
esconStationMaxMsgSizeSent INTEGER,
esconStationDataPacketsOkReceived Counter32,
esconStationDataPacketsKoReceived Counter32,
esconStationDataPacketsSent Counter32,
esconStationTotalFramesSent Counter32,
esconStationDataPacketsRetransmitted Counter32,
esconStationPositiveAckDataPackets Counter32,
esconStationSecondChanceAttentions Counter32,
esconStationCommandsRetried Counter32
}
esconStationHostLinkAddress OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This address identifies the ESCON Director port to which the
optical fiber between the ESCON Director and the host is
attached."
::= { esconStationEntry 1 }
esconStationPartitionNumber OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A number identifying a logical host within an actual host."
::= { esconStationEntry 2 }
esconStationDeviceAddress OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A unique hexadecimal number allocated to each station on the
same host link."
::= { esconStationEntry 3 }
esconStationState OBJECT-TYPE
SYNTAX INTEGER {
idle(1),
cpDefined(2),
cpReset(3),
cpActive(4),
cpDelete(5),
cpAbend(6),
cldpWait(7),
cldpDefinedl(8),
cldpError(9),
cldpLoad(10),
cldpDump(11),
deletePending(12),
deleted(13),
cpXidExpected(14)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current state of the station."
::= { esconStationEntry 4 }
esconStationAttentionDelay OBJECT-TYPE
SYNTAX INTEGER(0..420)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the amount of time in seconds that elapses
from the receipt of a packet at an ESCON station (when
no other packets are queued) before that station sends
buffered data to the Host.
An update to this object takes effect the next time the station
establishes communications with the host."
::= { esconStationEntry 5 }
esconStationAttentionTimeOut OBJECT-TYPE
SYNTAX INTEGER(10..840)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the amount of time in seconds that the station is to
wait for a response to an attention signal it sent to the host
before initiating channel disconnect.
An update to this object takes effect the next time the station
establishes communications with the host."
::= { esconStationEntry 6 }
esconStationMaxBfru OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of buffers in the host buffer pool for receiving data
from this station."
::= { esconStationEntry 7 }
esconStationUnitSize OBJECT-TYPE
SYNTAX INTEGER(64..4000)
-- Units
-- bytes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum size of a buffer, in bytes, that the host can receive
from this station."
::= { esconStationEntry 8 }
esconStationMaxMsgSizeReceived OBJECT-TYPE
SYNTAX INTEGER(0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum length of a message that can be received on this
station.
An update to this object takes effect the next time the station
establishes communications with the host."
::= { esconStationEntry 9 }
esconStationMaxMsgSizeSent OBJECT-TYPE
SYNTAX INTEGER(0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum length of a message that can be sent from this
station to the host.
An update to this object takes effect the next time the station
establishes communications with the host."
::= { esconStationEntry 10 }
esconStationDataPacketsOkReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data packets received from the host by this
station without Data Check."
::= { esconStationEntry 11 }
esconStationDataPacketsKoReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data packets received from the host by this station
with Data Check."
::= { esconStationEntry 12 }
esconStationDataPacketsSent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data packets sent to the host by this station."
::= { esconStationEntry 13 }
esconStationTotalFramesSent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data packets and control packets sent to the host
by this station."
::= { esconStationEntry 14 }
esconStationDataPacketsRetransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data packets retransmitted by this station"
::= { esconStationEntry 15 }
esconStationPositiveAckDataPackets OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data packets sent by this station to the host that
the host has positively acknowledged. When the host sends a
positive acknowledgement for a group of n data packets, this
counter is incremented by n."
::= { esconStationEntry 16 }
esconStationSecondChanceAttentions OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this station has sent a Second Chance
Attention signal to the host."
::= { esconStationEntry 17 }
esconStationCommandsRetried OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times a command has been retried on this
station"
::= { esconStationEntry 18 }
esconPortGroup OBJECT IDENTIFIER ::= { esconMibGroups 1 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Objects that describe an ESCON channel port.
-- objects
-- esconPortControlUnitLinkAddress, esconPortInFiberStatus,
-- esconPortOutFiberStatus
esconLinkGroup OBJECT IDENTIFIER ::= { esconMibGroups 2 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Objects that describe an ESCON channel link.
-- objects
-- esconLinkStatus
esconStationGroup OBJECT IDENTIFIER ::= { esconMibGroups 3 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Objects that describe an ESCON channel station.
-- objects
-- esconStationState, esconStationAttentionDelay,
-- esconStationAttentionTimeOut, esconStationMaxBfru,
-- esconStationUnitSize, esconStationMaxMsgSizeReceived,
-- esconStationMaxMsgSizeSent, esconStationDataPacketsOkReceived,
-- esconStationDataPacketsKoReceived,
-- esconStationDataPacketsSent, esconStationTotalFramesSent,
-- esconStationDataPacketsRetransmitted,
-- esconStationPositiveAckDataPackets,
-- esconStationSecondChanceAttentions,
-- esconStationCommandsRetried
esconMibCompliance OBJECT IDENTIFIER ::= { esconMibCompliances 1 }
-- MODULE-COMPLIANCE
-- Status
-- mandatory
-- Descr
-- The compliance statement for the SNMPv2 entities that
-- implement the IBM ESCON MIB.
-- Module
-- >>current<<
-- MandGroup
-- esconPortGroup
-- MandGroup
-- esconLinkGroup
-- MandGroup
-- esconStationGroup
-- ObjVar
-- esconStationAttentionDelay
-- ObjVar
-- esconStationAttentionTimeOut
-- ObjVar
-- esconStationMaxMsgSizeReceived
-- ObjVar
-- esconStationMaxMsgSizeSent
END
|