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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
|
HP-SN-POS-GROUP-MIB DEFINITIONS ::= BEGIN
-- Foundry POS Group MIB Release 1.0.0
-- Revision 0 10/28/99
-- Copyright 1996-1999 Foundry Networks, Inc.
-- All rights reserved.
-- This Foundry Networks SNMP Management Information Base Specification
-- (Specification) embodies Foundry Networks' confidential and
-- proprietary intellectual property. Foundry Networks retains all
-- title and ownership in the Specification, including any
-- revisions.
-- This Specification is supplied "AS IS," and Foundry Networks makes
-- no warranty, either express or implied, as to the use,
-- operation, condition, or performance of the Specification.
-- SECTION 1: Top Level Definitions
-- Imports
IMPORTS
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
snPOS
FROM HP-SN-ROOT-MIB;
-- textual conventions
-- maximum of ports are 32.
-- Status Values
POSStatus ::= INTEGER { disabled(0), enabled(1) }
DisplayString ::=
OCTET STRING
-- This data type is used to model textual information taken
-- from the NVT ASCII character set. By convention, objects
-- with this syntax are declared as having
--
-- SIZE (0..255)
snPOSInfo OBJECT IDENTIFIER ::= { snPOS 1 }
-- POS Port table information
snPOSInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnPOSInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A specific snPOSInfo group consists of a number of
switch ports. "
::= { snPOSInfo 1 }
snPOSInfoEntry OBJECT-TYPE
SYNTAX SnPOSInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the snPOSInfo table indicates the
configuration on a specified port. A SNMP SET PDU
for a row of the snPOSInfoTable requires the entired
sequence of the MIB Objects in each
snPOSInfoEntry stored in one PDU. Otherwise,
GENERR return-value will be returned."
INDEX {
snPOSInfoPortNum
}
::= { snPOSInfoTable 1 }
SnPOSInfoEntry ::= SEQUENCE {
snPOSInfoPortNum
INTEGER,
snPOSIfIndex
INTEGER,
snPOSDescr
DisplayString,
snPOSName
DisplayString,
snPOSInfoSpeed
INTEGER,
snPOSInfoAdminStatus
INTEGER,
snPOSInfoLinkStatus
INTEGER,
snPOSInfoClock
INTEGER,
snPOSInfoLoopBack
INTEGER,
snPOSInfoScrambleATM
POSStatus,
snPOSInfoFraming
INTEGER,
snPOSInfoCRC
INTEGER,
snPOSInfoKeepAlive
INTEGER,
snPOSInfoFlagC2
INTEGER,
snPOSInfoFlagJ0
INTEGER,
snPOSInfoFlagH1
INTEGER,
snPOSStatsInFrames
Counter,
snPOSStatsOutFrames
Counter,
snPOSStatsAlignErrors
Counter,
snPOSStatsFCSErrors
Counter,
snPOSStatsFrameTooLongs
Counter,
snPOSStatsFrameTooShorts
Counter,
snPOSStatsInDiscard
Counter,
snPOSStatsOutDiscard
Counter,
snPOSInOctets
OCTET STRING,
snPOSOutOctets
OCTET STRING,
snPOSStatsInBitsPerSec
Gauge,
snPOSStatsOutBitsPerSec
Gauge,
snPOSStatsInPktsPerSec
Gauge,
snPOSStatsOutPktsPerSec
Gauge,
snPOSStatsInUtilization
INTEGER (0..10000),
snPOSStatsOutUtilization
INTEGER (0..10000),
snPOSTagType
INTEGER,
snPOSStatsB1
Counter,
snPOSStatsB2
Counter,
snPOSStatsB3
Counter,
snPOSStatsAIS
Counter,
snPOSStatsRDI
Counter,
snPOSStatsLOP
Counter,
snPOSStatsLOF
Counter,
snPOSStatsLOS
Counter
}
snPOSInfoPortNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port index.
The bit 0 to bit 7: port number.
The bit 8 to bit 11: slot number (slot for chassis only)."
::= { snPOSInfoEntry 1 }
snPOSIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"In order to identify a particular interface, this
object shall identify the instance of the ifIndex
object, defined in RFC 1213 and RFC 1573."
::= { snPOSInfoEntry 2 }
snPOSDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual string containing the slot/port information
about the interface."
::= { snPOSInfoEntry 3 }
snPOSName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Port Name string."
::= { snPOSInfoEntry 4 }
snPOSInfoSpeed OBJECT-TYPE
SYNTAX INTEGER {
s155000(1),
s622000(2),
other(3),
s2488000(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The speed configuration for a port. The values are:
155000
622000
2488000
"
::= { snPOSInfoEntry 5 }
snPOSInfoAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired state of all ports. The
testing(3) state indicates that no operational
packets can be passed.
(same as ifAdminStatus in MIB-II)"
::= { snPOSInfoEntry 6 }
snPOSInfoLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current operational state of the interface.
The testing(3) state indicates that no operational
packets can be passed.
(same as ifOperStatus in MIB-II)"
::= { snPOSInfoEntry 7 }
snPOSInfoClock OBJECT-TYPE
SYNTAX INTEGER {
internal(1),
line(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Clock default internal"
::= { snPOSInfoEntry 8 }
snPOSInfoLoopBack OBJECT-TYPE
SYNTAX INTEGER {
line(1),
internal(2),
none(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Loop back default none"
::= { snPOSInfoEntry 9 }
snPOSInfoScrambleATM OBJECT-TYPE
SYNTAX POSStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ATM style scrambling default off"
::= { snPOSInfoEntry 10 }
snPOSInfoFraming OBJECT-TYPE
SYNTAX INTEGER {
sonet(1),
sdh(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Framing default SONET"
::= { snPOSInfoEntry 11 }
snPOSInfoCRC OBJECT-TYPE
SYNTAX INTEGER {
crc32bits(1),
crc16bits(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"CRC default 32 bit"
::= { snPOSInfoEntry 12 }
snPOSInfoKeepAlive OBJECT-TYPE
SYNTAX INTEGER (0..32767)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Keep-alive default 10"
::= { snPOSInfoEntry 13 }
snPOSInfoFlagC2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"C2 flag"
::= { snPOSInfoEntry 14 }
snPOSInfoFlagJ0 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"J0 flag"
::= { snPOSInfoEntry 15 }
snPOSInfoFlagH1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"H1 flag"
::= { snPOSInfoEntry 16 }
snPOSStatsInFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets received on the interface."
::= { snPOSInfoEntry 17 }
snPOSStatsOutFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets transmitted out of the interface."
::= { snPOSInfoEntry 18 }
snPOSStatsAlignErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"dot3StatsAlignmentErrors : A count of frames
received on a particular interface that are
not an integral number of octets in length
and do not pass the FCS check.
The count represented by an instance of this
object is incremented when the alignmentError
status is returned by the MAC service to the
LLC (or other MAC user). Received frames for
which multiple error conditions obtain are,
according to the conventions of IEEE 802.3
Layer Management, counted exclusively according
to the error status presented to the LLC."
::= { snPOSInfoEntry 19 }
snPOSStatsFCSErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"dot3StatsFCSErrors : A count of frames received
on a particular interface that are an integral
number of octets in length but do not pass the
FCS check.
The count represented by an instance of this
object is incremented when the frameCheckError
status is returned by the MAC service to the
LLC (or other MAC user). Received frames for
which multiple error conditions obtain are,
according to the conventions of IEEE 802.3
Layer Management, counted exclusively according
to the error status presented to the LLC."
::= { snPOSInfoEntry 20 }
snPOSStatsFrameTooLongs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"dot3StatsFrameTooLongs : A count of frames
received on a particular interface that
exceed the maximum permitted frame size.
The count represented by an instance of this
object is incremented when the frameTooLong
status is returned by the MAC service to the
LLC (or other MAC user). Received frames for
which multiple error conditions obtain are,
according to the conventions of IEEE 802.3
Layer Management, counted exclusively according
to the error status presented to the LLC."
::= { snPOSInfoEntry 21 }
snPOSStatsFrameTooShorts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
" A count of frames received on a particular
interface that below the minimum permitted
frame size."
::= { snPOSInfoEntry 22 }
snPOSStatsInDiscard OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of inbound packets which were chosen
to be discarded even though no errors had been
detected to prevent their being deliverable to a
higher-layer protocol. One possible reason for
discarding such a packet could be to free up
buffer space."
::= { snPOSInfoEntry 23 }
snPOSStatsOutDiscard OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of outbound packets which were chosen
to be discarded even though no errors had been
detected to prevent their being transmitted. One
possible reason for discarding such a packet could
be to free up buffer space."
::= { snPOSInfoEntry 24 }
snPOSInOctets OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of octets received on the interface,
including framing characters. This object is a 64-bit
counter of the ifInOctets object, defined in RFC 1213.
The octet string is in big-endian byte order."
::= { snPOSInfoEntry 25 }
snPOSOutOctets OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of octets transmitted out of the interface,
including framing characters. This object is a 64-bit
counter of the ifOutOctets object, defined in RFC 1213.
The octet string is in big-endian byte order."
::= { snPOSInfoEntry 26 }
snPOSStatsInBitsPerSec OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bits per second received on the interface
over a 5 minutes interval."
::= { snPOSInfoEntry 27 }
snPOSStatsOutBitsPerSec OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bits per second transmitted out of the interface
over a 5 minutes interval."
::= { snPOSInfoEntry 28 }
snPOSStatsInPktsPerSec OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets per second received on the interface
over a 5 minutes interval."
::= { snPOSInfoEntry 29 }
snPOSStatsOutPktsPerSec OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets per second transmitted out of the interface
over a 5 minutes interval."
::= { snPOSInfoEntry 30 }
snPOSStatsInUtilization OBJECT-TYPE
SYNTAX INTEGER (0..10000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The input network utilization in hundredths of a percent
over a 5 minutes interval."
::= { snPOSInfoEntry 31 }
snPOSStatsOutUtilization OBJECT-TYPE
SYNTAX INTEGER (0..10000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The output network utilization in hundredths of a percent
over a 5 minutes interval."
::= { snPOSInfoEntry 32 }
snPOSTagType OBJECT-TYPE
SYNTAX INTEGER {
tagged(1),
untagged(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"For tagged port, we could have multiple VLANs
per port."
::= {snPOSInfoEntry 33}
snPOSStatsB1 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Section error monitoring."
::= { snPOSInfoEntry 34 }
snPOSStatsB2 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Line error monitoring."
::= { snPOSInfoEntry 35 }
snPOSStatsB3 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Path error monitoring."
::= { snPOSInfoEntry 36 }
snPOSStatsAIS OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Alarm indication signal."
::= { snPOSInfoEntry 37 }
snPOSStatsRDI OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Remote defect indication."
::= { snPOSInfoEntry 38 }
snPOSStatsLOP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Loss of pointer."
::= { snPOSInfoEntry 39 }
snPOSStatsLOF OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Loss of frame."
::= { snPOSInfoEntry 40 }
snPOSStatsLOS OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Loss of signal."
::= { snPOSInfoEntry 41 }
END
|