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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
|
FOUNDRY-SN-POS-GROUP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,Counter32, Gauge32, Unsigned32,Integer32
FROM SNMPv2-SMI
router
FROM FOUNDRY-SN-ROOT-MIB
ifIndex
FROM IF-MIB
DisplayString,TEXTUAL-CONVENTION
FROM SNMPv2-TC;
snPOS MODULE-IDENTITY
LAST-UPDATED "201006020000Z" -- 04 June 2010
ORGANIZATION "Brocade Communications Systems, Inc."
CONTACT-INFO
"Technical Support Center
130 Holger Way,
San Jose, CA 95134
Email: ipsupport@brocade.com
Phone: 1-800-752-8061
URL: www.brocade.com"
DESCRIPTION
"Copyright 1996-2010 Brocade Communications Systems, Inc.
All rights reserved.
This Brocade Communications Systems SNMP Management Information Base Specification
embodies Brocade Communications Systems' confidential and proprietary
intellectual property. Brocade Communications Systems retains all
title and ownership in the Specification, including any revisions.
This Specification is supplied AS IS, and Brocade Communications Systems makes
no warranty, either express or implied, as to the use,
operation, condition, or performance of the specification, and any unintended
consequence it may on the user environment."
REVISION "201006020000Z" -- 04 June 2010
DESCRIPTION
"Changed the ORGANIZATION, CONTACT-INFO and DESCRIPTION fields."
REVISION "200909300000Z" -- September 30, 2009
DESCRIPTION
""
::= { router 14}
-- textual conventions
POSStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
Status Values
"
SYNTAX INTEGER { disabled(0), enabled(1) }
snPOSInfo OBJECT IDENTIFIER ::= { snPOS 1 }
-- POS Port table information
snPOSInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnPOSInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A specific snPOSInfo group consists of a number of
switch ports. "
::= { snPOSInfo 1 }
snPOSInfoEntry OBJECT-TYPE
SYNTAX SnPOSInfoEntry
MAX-ACCESS not-accessible
STATUS current
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
Integer32,
snPOSIfIndex
Integer32,
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
Counter32,
snPOSStatsOutFrames
Counter32,
snPOSStatsAlignErrors
Counter32,
snPOSStatsFCSErrors
Counter32,
snPOSStatsFrameTooLongs
Counter32,
snPOSStatsFrameTooShorts
Counter32,
snPOSStatsInDiscard
Counter32,
snPOSStatsOutDiscard
Counter32,
snPOSInOctets
OCTET STRING,
snPOSOutOctets
OCTET STRING,
snPOSStatsInBitsPerSec
Gauge32,
snPOSStatsOutBitsPerSec
Gauge32,
snPOSStatsInPktsPerSec
Gauge32,
snPOSStatsOutPktsPerSec
Gauge32,
snPOSStatsInUtilization
INTEGER ,
snPOSStatsOutUtilization
INTEGER ,
snPOSTagType
INTEGER,
snPOSStatsB1
Counter32,
snPOSStatsB2
Counter32,
snPOSStatsB3
Counter32,
snPOSStatsAIS
Counter32,
snPOSStatsRDI
Counter32,
snPOSStatsLOP
Counter32,
snPOSStatsLOF
Counter32,
snPOSStatsLOS
Counter32
}
snPOSInfoPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
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 Integer32
MAX-ACCESS read-only
STATUS current
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
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing the slot/port information
about the interface."
::= { snPOSInfoEntry 3 }
snPOSName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port Name string."
::= { snPOSInfoEntry 4 }
snPOSInfoSpeed OBJECT-TYPE
SYNTAX INTEGER {
s155000(1),
s622000(2),
other(3),
s2488000(4)
}
MAX-ACCESS read-write
STATUS current
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
}
MAX-ACCESS read-write
STATUS current
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
}
MAX-ACCESS read-only
STATUS current
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)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clock default internal"
::= { snPOSInfoEntry 8 }
snPOSInfoLoopBack OBJECT-TYPE
SYNTAX INTEGER {
line(1),
internal(2),
none(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Loop back default none"
::= { snPOSInfoEntry 9 }
snPOSInfoScrambleATM OBJECT-TYPE
SYNTAX POSStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ATM style scrambling default off"
::= { snPOSInfoEntry 10 }
snPOSInfoFraming OBJECT-TYPE
SYNTAX INTEGER {
sonet(1),
sdh(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Framing default SONET"
::= { snPOSInfoEntry 11 }
snPOSInfoCRC OBJECT-TYPE
SYNTAX INTEGER {
crc32bits(1),
crc16bits(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"CRC default 32 bit"
::= { snPOSInfoEntry 12 }
snPOSInfoKeepAlive OBJECT-TYPE
SYNTAX INTEGER (0..32767)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Keep-alive default 10"
::= { snPOSInfoEntry 13 }
snPOSInfoFlagC2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"C2 flag"
::= { snPOSInfoEntry 14 }
snPOSInfoFlagJ0 OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"J0 flag"
::= { snPOSInfoEntry 15 }
snPOSInfoFlagH1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"H1 flag"
::= { snPOSInfoEntry 16 }
snPOSStatsInFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received on the interface."
::= { snPOSInfoEntry 17 }
snPOSStatsOutFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted out of the interface."
::= { snPOSInfoEntry 18 }
snPOSStatsAlignErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" A count of frames received on a particular
interface that below the minimum permitted
frame size."
::= { snPOSInfoEntry 22 }
snPOSStatsInDiscard OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
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 Counter32
MAX-ACCESS read-only
STATUS current
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))
MAX-ACCESS read-only
STATUS current
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))
MAX-ACCESS read-only
STATUS current
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 Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bits per second received on the interface
over a 5 minutes interval."
::= { snPOSInfoEntry 27 }
snPOSStatsOutBitsPerSec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bits per second transmitted out of the interface
over a 5 minutes interval."
::= { snPOSInfoEntry 28 }
snPOSStatsInPktsPerSec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets per second received on the interface
over a 5 minutes interval."
::= { snPOSInfoEntry 29 }
snPOSStatsOutPktsPerSec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
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)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The input network utilization in hundredths of a percent
over a 5 minutes interval."
::= { snPOSInfoEntry 31 }
snPOSStatsOutUtilization OBJECT-TYPE
SYNTAX INTEGER (0..10000)
MAX-ACCESS read-only
STATUS current
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)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For tagged port, we could have multiple VLANs
per port."
::= {snPOSInfoEntry 33}
snPOSStatsB1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Section error monitoring."
::= { snPOSInfoEntry 34 }
snPOSStatsB2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line error monitoring."
::= { snPOSInfoEntry 35 }
snPOSStatsB3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Path error monitoring."
::= { snPOSInfoEntry 36 }
snPOSStatsAIS OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm indication signal."
::= { snPOSInfoEntry 37 }
snPOSStatsRDI OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remote defect indication."
::= { snPOSInfoEntry 38 }
snPOSStatsLOP OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of pointer."
::= { snPOSInfoEntry 39 }
snPOSStatsLOF OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of frame."
::= { snPOSInfoEntry 40 }
snPOSStatsLOS OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of signal."
::= { snPOSInfoEntry 41 }
-- POS Port table information
snPOSInfo2Table OBJECT-TYPE
SYNTAX SEQUENCE OF SnPOSInfo2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An snPOSInfo2Table consists of a number of
SnPOSInfo2Entry entries"
::= { snPOSInfo 2 }
snPOSInfo2Entry OBJECT-TYPE
SYNTAX SnPOSInfo2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the snPOSInfo2Table indicates the
POS configuration on a specified port"
INDEX {
ifIndex
}
::= { snPOSInfo2Table 1 }
SnPOSInfo2Entry ::= SEQUENCE {
snPOSInfo2Clock
INTEGER,
snPOSInfo2ScrambleATM
POSStatus,
snPOSInfo2CRC
INTEGER,
snPOSInfo2KeepAlive
Unsigned32,
snPOSInfo2FlagC2
Unsigned32,
snPOSInfo2SSM
INTEGER,
snPOSInfo2Encapsulation
INTEGER,
snPOSInfo2AlarmMonitoring
INTEGER,
snPOSInfo2OverheadJ0ExpectedMessage
OCTET STRING,
snPOSInfo2OverheadJ0TransmitMessage
OCTET STRING,
snPOSInfo2OverheadJ1ExpectedMessage
OCTET STRING,
snPOSInfo2OverheadJ1MessageLength
INTEGER,
snPOSInfo2OverheadJ1TransmitMessage
OCTET STRING
}
snPOSInfo2Clock OBJECT-TYPE
SYNTAX INTEGER {
internal(1),
line(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clock source for the POS Interface
internal(1) - internal source
line (2) - clocking is derived from line"
DEFVAL { internal }
::= { snPOSInfo2Entry 1 }
snPOSInfo2ScrambleATM OBJECT-TYPE
SYNTAX POSStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ATM style scrambling for the POS interface
disabled(0) - scrambling is disabled
enabled(1) - scrambling is enabled"
DEFVAL { disabled }
::= { snPOSInfo2Entry 2 }
snPOSInfo2CRC OBJECT-TYPE
SYNTAX INTEGER {
crc32bits(1),
crc16bits(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Length of Cyclic Redundnacy Check (CRC) on the
POS interface
crc32bits(1) - 32 bits
crc16bits(2) - 16 buts"
DEFVAL { crc32bits }
::= { snPOSInfo2Entry 3 }
snPOSInfo2KeepAlive OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Keep-alive timer for the POS interface in seconds"
DEFVAL { 10 }
::= { snPOSInfo2Entry 4 }
snPOSInfo2FlagC2 OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"C2 flag"
::= { snPOSInfo2Entry 5 }
snPOSInfo2SSM OBJECT-TYPE
SYNTAX INTEGER {
t1SonetPrimaryReferenceSource(1) ,
t1SonetTraceabilityUnknown(2) ,
t1SonetStratum2Traceable(3) ,
t1SonetTransitNodeClock(4) ,
t1SonetStratum3eTraceable(5) ,
t1SonetStratum3Traceable(6) ,
t1SonetMinClockTraceable(7) ,
t1SonetDus(8) ,
e1SdhTraceabilityUnknown(9) ,
e1SdhSsmTransitNodeClockG812(10) ,
e1SdhDus(11) ,
e1SdhSsmPrimaryReferenceClockG811(12) ,
e1SdhSsmLocalG812(13) ,
e1SdhSsmSyncEquipmentTimingSource(14)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The S(ynchronization) S(tatus) M(essage) is sent over
the SONET/SDH line to tell the other end about the
quality of clock being sent over the line.
t1SonetPrimaryReferenceSource(1) - SONET Primary Reference Source
t1SonetTraceabilityUnknown(2} - SONET Traceability Unknown
t1SonetStratum2Traceable(3) - SONET Stratum 2 Traceable
t1SonetTransitNodeClock(4) - SONET Transit Node Clock
t1SonetStratum3eTraceable(5) - SONET Stratum 3e Traceable
t1SonetStratum3Traceable(6) - SONET Stratum 3 Traceable
t1SonetMinClockTraceable(7) - SONET Minimum Clock Traceable
t1SonetDus(8) - SONET Do not Use for Synchronization
e1SdhTraceabilityUnknown(9) - SDH Traceability Unknown
e1SdhSsmTransitNodeClockG812(10) - SDH Transit Node Clock G812
e1SdhDus(11) - SDH Do not Use for Synchronization
e1SdhSsmPrimaryReferenceClockG811(12) - SDH Primary Reference Clock G811
e1SdhSsmLocalG812(13) - SDH Local G812
e1SdhSsmSyncEquipmentTimingSource(14) - SDH Synchronization Equipment Timing Source"
DEFVAL { t1SonetTraceabilityUnknown }
::= { snPOSInfo2Entry 6 }
snPOSInfo2Encapsulation OBJECT-TYPE
SYNTAX INTEGER {
ppp(1),
hdlc(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Layer 2 encapsulation on the POS interface
ppp(1) - Point to Point Protocol (PPP)
hdlc(2) - Cisco High-level Data Link Control (cHDLC)"
DEFVAL { ppp }
::= { snPOSInfo2Entry 7 }
snPOSInfo2AlarmMonitoring OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Monitoring on POS interface
off(0) - Alarm Monitoring is off
on(1) - Alarm Montioring is on"
DEFVAL { on }
::= { snPOSInfo2Entry 8 }
snPOSInfo2OverheadJ0ExpectedMessage OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Overhead J0 Expected Message"
::= { snPOSInfo2Entry 9 }
snPOSInfo2OverheadJ0TransmitMessage OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Overhead J0 Transmit Message"
::= { snPOSInfo2Entry 10 }
snPOSInfo2OverheadJ1ExpectedMessage OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Overhead J1 Expected Message"
::= { snPOSInfo2Entry 11 }
snPOSInfo2OverheadJ1MessageLength OBJECT-TYPE
SYNTAX INTEGER {
s16 (16),
s64 (64)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Overhead J1 Length of Message
s16(16)...........16 bytes
s64(64)............64 bytes"
DEFVAL { s64 }
::= { snPOSInfo2Entry 12 }
snPOSInfo2OverheadJ1TransmitMessage OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Overhead J1 Transmit Message"
::= { snPOSInfo2Entry 13 }
-- POS PPP Group
-- If the L2 encapsulation is PPP, the following will provide
-- information on the states of various control protocols
snPOSPPPTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnPOSPPPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An snPOSPPPTable consists of a number of
SnPOSPPPEntry entries"
::= { snPOSInfo 3 }
snPOSPPPEntry OBJECT-TYPE
SYNTAX SnPOSPPPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the snPOSPPPTable indicates the
PPP control protocol status on a specified port"
INDEX {
ifIndex
}
::= { snPOSPPPTable 1 }
SnPOSPPPEntry ::= SEQUENCE {
snPosPppLcp
DisplayString,
snPosPppIpCp
DisplayString,
snPosPppIpv6Cp
DisplayString,
snPosPppOsInLcp
DisplayString,
snPosPppMpLscp
DisplayString
}
snPosPppLcp OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PPP Link Control Protocol state"
::= { snPOSPPPEntry 1 }
snPosPppIpCp OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PPP IP Control Protocol state"
::= { snPOSPPPEntry 2 }
snPosPppIpv6Cp OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PPP IPv6 Control Protocol state"
::= { snPOSPPPEntry 3 }
snPosPppOsInLcp OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PPP OSI Network Layer Control Protocol state"
::= { snPOSPPPEntry 4 }
snPosPppMpLscp OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PPP MPLS Control Protocol state"
::= { snPOSPPPEntry 5 }
-- POS cHDLC Group
-- If the L2 encapsulation is cHDLC, the following will provide
-- information various cHDLC paraemters
snPOScHDLCTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnPOScHDLCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An snPOScHDLCTable consists of a number of
SnPOScHDLCEntry entries"
::= { snPOSInfo 4 }
snPOScHDLCEntry OBJECT-TYPE
SYNTAX SnPOScHDLCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in snPOScHDLCEntry shows the
cHDLC information on a specified port"
INDEX {
ifIndex
}
::= { snPOScHDLCTable 1 }
SnPOScHDLCEntry ::= SEQUENCE {
snPOScHDLCLineState
INTEGER,
snPOScHDLCInLoopback
INTEGER,
snPOScHDLCMySeq
Unsigned32,
snPOScHDLCMySeqSeen
Unsigned32,
snPOScHDLCPeerSeqSeen
Unsigned32,
snPOScHDLCUniqueSent
Unsigned32,
snPOScHDLCUniqueReceived
Unsigned32
}
snPOScHDLCLineState OBJECT-TYPE
SYNTAX INTEGER {
down (0),
up (1),
unknown (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cHDLC Line State"
::= { snPOScHDLCEntry 1 }
snPOScHDLCInLoopback OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1),
unknown (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cHDLC in loopback"
::= { snPOScHDLCEntry 2 }
snPOScHDLCMySeq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cHDLC my sequence number"
::= { snPOScHDLCEntry 3 }
snPOScHDLCMySeqSeen OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cHDLC my sequence number seen"
::= { snPOScHDLCEntry 4 }
snPOScHDLCPeerSeqSeen OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cHDLC peer sequence number seen"
::= { snPOScHDLCEntry 5 }
snPOScHDLCUniqueSent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cHDLC unique sent"
::= { snPOScHDLCEntry 6 }
snPOScHDLCUniqueReceived OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cHDLC unique received"
::= { snPOScHDLCEntry 7 }
END
-- *****************************************************************
-- Commited Access Rate MIB file.
-- *****************************************************************
|