-
Notifications
You must be signed in to change notification settings - Fork 0
/
atmf.mib
2634 lines (1094 loc) · 40.6 KB
/
atmf.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
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
ATM-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, Counter, IpAddress
FROM RFC1155-SMI
-- NsapAddress --
-- FROM SNMPv2-SMI --
TRAP-TYPE
FROM RFC-1215
DisplayString
FROM RFC1213-MIB
OBJECT-TYPE
FROM RFC-1212;
atmForum OBJECT IDENTIFIER ::= { enterprises 353 }
-- a subtree for defining administrative
-- object identifiers
atmForumAdmin OBJECT IDENTIFIER ::= { atmForum 1 }
-- a subtree for defining UNI MIB object types
atmForumUni OBJECT IDENTIFIER ::= { atmForum 2 }
-- Textual Conventions
-- All representations of ATM addresses in this MIB Module use
-- the data type:
-- AtmAddress ::= OCTET STRING (SIZE (0 .. 32))
AtmAddress ::= OCTET STRING (SIZE (8 | 20) )
-- AtmAddress ::= OCTET STRING (SIZE (20) )
-- Note this data type is used only by the deprecated object
-- atmfPortAddress. Another definition (a refined one) is
-- specified in the separate MIB for Address Registration.
-- Object Identifier definitions
-- The following values are defined for use as possible values
-- of the atmfPortTransmissionType object.
atmfTransmissionTypes OBJECT IDENTIFIER ::= { atmForumAdmin 2 }
-- unknown transmission type
atmfUnknownType OBJECT IDENTIFIER ::= { atmfTransmissionTypes 1}
-- Sonet STS-3c physical layer at 155.52 Mbps
atmfSonetSTS3c OBJECT IDENTIFIER ::= { atmfTransmissionTypes 2 }
-- DS3 physical layer at 44.736 Mbps
atmfDs3 OBJECT IDENTIFIER ::= { atmfTransmissionTypes 3 }
-- 4B/5B encoding physical layer at 100 Mbps
atmf4B5B OBJECT IDENTIFIER ::= { atmfTransmissionTypes 4 }
-- 8B/10B encoding physical layer at 155.52 Mbps
atmf8B10B OBJECT IDENTIFIER ::= { atmfTransmissionTypes 5 }
-- The following values are defined for use as possible values
-- of the atmfPortMediaType object.
atmfMediaTypes OBJECT IDENTIFIER ::= { atmForumAdmin 3 }
-- unknown media type
atmfMediaUnknownType OBJECT IDENTIFIER ::= { atmfMediaTypes 1 }
-- Coaxial cable
atmfMediaCoaxCable OBJECT IDENTIFIER ::= { atmfMediaTypes 2 }
-- Single Mode fiber
atmfMediaSingleMode OBJECT IDENTIFIER ::= { atmfMediaTypes 3 }
-- Multi Mode fiber
atmfMediaMultiMode OBJECT IDENTIFIER ::= { atmfMediaTypes 4 }
-- Shielded Twisted Pair
atmfMediaStp OBJECT IDENTIFIER ::= { atmfMediaTypes 5 }
-- Unshielded Twisted Pair
atmfMediaUtp OBJECT IDENTIFIER ::= { atmfMediaTypes 6 }
-- The following values are defined for use as possible values
-- of the atmfVpcTransmitTrafficDescriptorType,
-- atmfVpcReceiveTrafficDescriptorType,
-- atmfVccTransmitTrafficDescriptorType and
-- atmfVccReceiveTrafficDescriptorType objects.
atmfTrafficDescrTypes OBJECT IDENTIFIER ::= { atmForumAdmin 4 }
-- The "None" Traffic Descriptor Type
atmfNoDescriptor OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 1 }
--
atmfPeakRate OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 2 }
-- This type is no longer used
--
-- The No CLP/No SCR Type
atmfNoClpNoScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 3 }
-- The use of the parameter vector for this type:
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
-- Parameters #2, #3, #4 and #5 are unused
--
-- The CLP without Tagging/No SCR Type
atmfClpNoTaggingNoScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 4 }
-- The use of the parameter vector for this type:
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
-- Parameter #2 - peak cell rate in cells/second for CLP=0 traffic
-- Parameters #3, #4 and #5 are unused
--
-- The CLP with Tagging/No SCR Type
atmfClpTaggingNoScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 5 }
-- The use of the parameter vector for this type:
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
-- Parameter #2 - peak cell rate in cells/second for
-- CLP=0 traffic, excess tagged as CLP=1
-- Parameters #3, #4 and #5 are unused
--
-- The SCR/No CLP Type
atmfNoClpScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 6 }
-- The use of the parameter vector for this type:
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
-- Parameter #2 - sustainable cell rate in cells/second for CLP=0+1 traffic
-- Parameter #3 - maximum burst size in cells
-- Parameters #4 and #5 are unused
--
-- The CLP without Tagging/SCR Type
atmfClpNoTaggingScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 7 }
-- The use of the parameter vector for this type:
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
-- Parameter #2 - sustainable cell rate in cells/second for CLP=0 traffic
-- Parameter #3 - maximum burst size in cells
-- Parameters #4 and #5 are unused
--
-- The CLP with Tagging/SCR Type
atmfClpTaggingScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 8 }
-- The use of the parameter vector for this type:
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
-- Parameter #2 - sustainable cell rate in cells/second for CLP=0
-- traffic, excess tagged as CLP=1
-- Parameter #3 - maximum burst size in cells
-- Parameters #4 and #5 are unused
-- The MIB groups
atmfPhysicalGroup OBJECT IDENTIFIER ::= { atmForumUni 1 }
atmfAtmLayerGroup OBJECT IDENTIFIER ::= { atmForumUni 2 }
atmfAtmStatsGroup OBJECT IDENTIFIER ::= { atmForumUni 3 }
atmfVpcGroup OBJECT IDENTIFIER ::= { atmForumUni 4 }
atmfVccGroup OBJECT IDENTIFIER ::= { atmForumUni 5 }
-- The Physical Port Group
-- This group is mandatory for all UNI devices.
--
-- The Physical Port Table
atmfPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmfPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of physical layer status and parameter information
for the UNI's physical interface."
::= { atmfPhysicalGroup 1 }
atmfPortEntry OBJECT-TYPE
SYNTAX AtmfPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing information about the
physical layer of a UNI interface."
INDEX { atmfPortIndex }
::= { atmfPortTable 1 }
AtmfPortEntry ::=
SEQUENCE {
atmfPortIndex INTEGER,
atmfPortAddress AtmAddress,
atmfPortTransmissionType OBJECT IDENTIFIER,
atmfPortMediaType OBJECT IDENTIFIER,
atmfPortOperStatus INTEGER,
atmfPortSpecific OBJECT IDENTIFIER,
atmfPortMyIfName DisplayString }
atmfPortIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value which identifies this port. The value of 0
has the special meaning of identifying the local UNI."
::= { atmfPortEntry 1 }
atmfPortAddress OBJECT-TYPE
SYNTAX AtmAddress
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object should not be implemented except as required
for backward compatibility with version 2.0 of the UNI
specification. The Address Group, defined as part of the
separate Address Registration MIB should be used instead."
::= { atmfPortEntry 2 }
atmfPortTransmissionType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The transmission type of this port. For example, for a port
using the Sonet STS-3c physical layer at 155.52 Mbs, this
object would have the Object Identifier value: atmfSonetSTS3c."
::= { atmfPortEntry 3 }
atmfPortMediaType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of media being used on this port. For example, for
a port using coaxial cable, this object would have the Object
Identifier value: atmfMediaCoaxCable."
::= { atmfPortEntry 4 }
atmfPortOperStatus OBJECT-TYPE
SYNTAX INTEGER { other(1), inService(2), outOfService(3), loopBack(4) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The operational (i.e., actual) state of this port. The ILMI
should not alarm on a physical interface for when the value
of this object is outOfService(3). This capability is useful
if equipment is to be disconnected, or for troubleshooting
purposes. A value of loopBack(4) indicates that a local
loopback is in place. "
::= { atmfPortEntry 5 }
atmfPortSpecific OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object `points' to additional transmission and/or media
specific information relating to this port. In particular,
this object's value is the name of a specific instance of the
first columnar object of a MIB table with such additional
information, where the specific instance is the one which
corresponds to this port. For example, for a DS3 interface,
this object would contain the value, as defined in RFC 1407:
dsx3LineIndex.i where i would be the integer value uniquely
identifying the DS3 interface corresponding to this port.
If no additional transmission and/or media specific
information is available, this object has the value { 0 0 }."
::= { atmfPortEntry 6 }
atmfPortMyIfName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual name of this interface. If this system is
manageable through SNMP, and supports the object ifName,
the value of this object must be identical with that of
ifName for the ifEntry of the lowest level physical interface
for this port. This interface must be uniquely named on this
system to distinguish parallel links with a neighboring
system. If this interface does not have a textual name, the
value of this object is a zero length string."
::= { atmfPortEntry 7 }
-- Note: Typical UME will support only one of the following two objects
atmfMyIpNmAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An IP Address to which a Network Management Station can send
Network Management protocol, e.g. SNMP messages to UDP port
161, in order to access network management information
concerning the operation of the ATM device local to this UME."
::= { atmfPhysicalGroup 2 }
atmfMyOsiNmNsapAddress OBJECT-TYPE
SYNTAX NsapAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An NSAP Address to which a Network Management Station can
send Network Management protocol messages in order to access
network management information concerning the operation of
the ATM device local to this UME."
::= { atmfPhysicalGroup 3 }
-- The ATM Layer Group
-- This group is mandatory for all UNI devices.
--
-- ATM-layer specific information for the UNI interface
atmfAtmLayerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmfAtmLayerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of ATM layer status and parameter information for
the UNI's physical interface."
::= { atmfAtmLayerGroup 1 }
atmfAtmLayerEntry OBJECT-TYPE
SYNTAX AtmfAtmLayerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing information about the ATM
layer of a UNI interface."
INDEX { atmfAtmLayerIndex }
::= { atmfAtmLayerTable 1 }
AtmfAtmLayerEntry ::=
SEQUENCE {
atmfAtmLayerIndex INTEGER,
atmfAtmLayerMaxVPCs INTEGER,
atmfAtmLayerMaxVCCs INTEGER,
atmfAtmLayerConfiguredVPCs INTEGER,
atmfAtmLayerConfiguredVCCs INTEGER,
atmfAtmLayerMaxVpiBits INTEGER,
atmfAtmLayerMaxVciBits INTEGER,
atmfAtmLayerUniType INTEGER,
atmfAtmLayerUniVersion INTEGER }
atmfAtmLayerIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique value which identifies the UNI port. The value of
0 has the special meaning of identifying the local UNI."
::= { atmfAtmLayerEntry 1 }
atmfAtmLayerMaxVPCs OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of switched and permanent VPCs supported
on this UNI."
::= { atmfAtmLayerEntry 2 }
atmfAtmLayerMaxVCCs OBJECT-TYPE
SYNTAX INTEGER (0..16777215)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of switched and permanent VCCs supported
on this UNI."
::= { atmfAtmLayerEntry 3 }
atmfAtmLayerConfiguredVPCs OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of permanent VPCs configured for use on this UNI."
::= { atmfAtmLayerEntry 4 }
atmfAtmLayerConfiguredVCCs OBJECT-TYPE
SYNTAX INTEGER (0..16777215)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of permanent VCCs configured for use on this UNI."
::= { atmfAtmLayerEntry 5 }
atmfAtmLayerMaxVpiBits OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of active VPI bits on this interface."
::= {atmfAtmLayerEntry 6 }
atmfAtmLayerMaxVciBits OBJECT-TYPE
SYNTAX INTEGER (0..16)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of active VCI bits on this interface."
::= {atmfAtmLayerEntry 7 }
atmfAtmLayerUniType OBJECT-TYPE
SYNTAX INTEGER {public(1), private(2)}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the ATM UNI, either public or private."
::= { atmfAtmLayerEntry 8 }
atmfAtmLayerUniVersion OBJECT-TYPE
SYNTAX INTEGER {version2point0(1), version3point0(2), version3point1(3) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of the latest version of the ATM Forum UNI
Specification that is supported on this UNI. If this value is
not present, a version of the UNI earlier than 3.1 is
supported. If a value greater than version3point1 is present,
then UNI 3.1 communication should be attempted. If the peer
UME's value of this object is the same as, or later than the
local UME's value, then the version corresponding to the local
UME's value should be attempted. Otherwise, if the peer UME's
value of this object is earlier, and supported locally, then
the local UME should attempt the version corresponding to the
peer UME's value. Otherwise, compatability of the two UMEs
cannot be assumed."
::= { atmfAtmLayerEntry 9 }
-- The ATM Statistics Group
-- This group is optional. However, if any objects in this group
-- are supported, then all objects in the group must be supported.
--
-- ATM-layer statistics for the UNI interface
atmfAtmStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmfAtmStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of ATM layer statistics information for the UNI's
physical interface."
::= { atmfAtmStatsGroup 1 }
atmfAtmStatsEntry OBJECT-TYPE
SYNTAX AtmfAtmStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing statistics for the ATM
layer of a UNI interface."
INDEX { atmfAtmStatsIndex }
::= { atmfAtmStatsTable 1 }
AtmfAtmStatsEntry ::=
SEQUENCE {
atmfAtmStatsIndex INTEGER,
atmfAtmStatsReceivedCells Counter,
atmfAtmStatsDroppedReceivedCells Counter,
atmfAtmStatsTransmittedCells Counter }
atmfAtmStatsIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique value which identifies the UNI port. The value of
0 has the special meaning of identifying the local UNI."
::= { atmfAtmStatsEntry 1 }
atmfAtmStatsReceivedCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The accumulated number of ATM cells received on this UNI
which were assigned and not dropped."
::= { atmfAtmStatsEntry 2 }
atmfAtmStatsDroppedReceivedCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The accumulated number of ATM cells which were dropped for
the reasons defined in section 4.4.4.2."
::= { atmfAtmStatsEntry 3 }
atmfAtmStatsTransmittedCells OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The accumulated number of assigned ATM cells which were
transmitted across this interface."
::= { atmfAtmStatsEntry 4 }