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
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
|
IBM-BCM-MIB DEFINITIONS ::= BEGIN
-- From file: "ibmlesrv.mi2"
-- Compile options "G A T M"
IMPORTS
Counter32, Integer32
FROM SNMPv2-SMI-v1
OBJECT-TYPE
FROM RFC-1212
RowStatus, MacAddress, TruthValue
FROM SNMPv2-TC-v1
AtmLaneAddress
FROM LAN-EMULATION-CLIENT-MIB
busConfEntry, busConfIndex
FROM LAN-EMULATION-BUS-MIB
mssServerLanE
FROM NWAYSMSS-MIB;
ibmBcmMIB OBJECT IDENTIFIER ::= { mssServerLanE 3 }
-- MODULE-IDENTITY
-- LastUpdated
-- 9701161200Z
-- OrgName
-- IBM Corporation
-- ContactInfo
-- Florian K Kandefer
-- Postal: IBM Corporation
-- 800 Park Offices Drive
-- Research Triangle Park, NC 27709
-- US
-- Tel: +1 919 254 0685
-- Fax: +1 919 254 0391
-- E-mail: kandefer@vnet.ibm.com
-- Descr
--
-- These are proprietary extensions for managing
-- the LAN Emulation Broadcast Manager.
-- RevDate
-- 9701161200Z
-- RevDescr
--
-- 2) Updated MIB import names to match ATM Forum MIB names.
--
-- Updated some of the description fields.
--
-- Removed bcmStaticTargetsProtocol enumerations for
-- ip(1) and netbios(8) since they are not supported in
-- any level of code. Added noStaticProtocolDefined(0).
--
-- Updated the description clause of bcmStaticTargetsRowStatus
-- since the bcmStaticTargetsTable has a unique behavior.
--
-- RevDate
-- 9608281200Z
-- RevDescr
--
-- 1) This is the first version of this MIB
bcmConfGroup OBJECT IDENTIFIER ::= { ibmBcmMIB 1 }
bcmStatGroup OBJECT IDENTIFIER ::= { ibmBcmMIB 2 }
bcmMIBConformance OBJECT IDENTIFIER ::= { ibmBcmMIB 3 }
bcmMIBGroups OBJECT IDENTIFIER ::= { bcmMIBConformance 1 }
bcmMIBCompliances OBJECT IDENTIFIER ::= { bcmMIBConformance 2 }
BcmCacheAge ::= INTEGER(0..255)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The maxmimum number of minutes an address entry is
-- kept without re-verification of its location.
bcmConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains configuration values for the
broadcast management functions of a BUS. It is
an extension to the busConfTable."
::= { bcmConfGroup 1 }
bcmConfEntry OBJECT-TYPE
SYNTAX BcmConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table represents an extension
of a corresponding enty in the busConfTable."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmConfTable 1 }
BcmConfEntry ::= SEQUENCE {
bcmRouteCacheEnabled TruthValue
}
bcmRouteCacheEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When 'true', the BCM will cache routes. When 'false', it will not."
::= { bcmConfEntry 1 }
bcmStaticTargetsNextId OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The next available index in the bcmStaticTargetsTable.
The value of this object can be used as the index by the
network manager to create an entry in the table.
Note: since the bcmStaticTargetsTable is statically defined,
by the MSS agent this object has no meaning. This object
always has a value of 1. The agent statically defines
three rows in this table and sets rowStatus based on initial
configuration."
::= { bcmConfGroup 2 }
bcmStaticTargetsTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmStaticTargetsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains static broadcast target addresses for all
the BCMs at this agent. Each BCM may have multiple
entries. Object bcmStaticTargetsRowStatus is required
during row creation and deletion."
::= { bcmConfGroup 3 }
bcmStaticTargetsEntry OBJECT-TYPE
SYNTAX BcmStaticTargetsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table defines a broadcast target
address for a BCM."
INDEX { bcmStaticTargetsIndex, busConfIndex }
::= { bcmStaticTargetsTable 1 }
BcmStaticTargetsEntry ::= SEQUENCE {
bcmStaticTargetsIndex Integer32,
bcmStaticTargetsAtmAddress AtmLaneAddress,
bcmStaticTargetsMacAddress MacAddress,
bcmStaticTargetsProtocol INTEGER,
bcmStaticTargetsRowStatus RowStatus
}
bcmStaticTargetsIndex OBJECT-TYPE
SYNTAX Integer32
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A value which uniquely identifies a conceptual row
in the bcmStaticTargetsTable."
::= { bcmStaticTargetsEntry 1 }
bcmStaticTargetsAtmAddress OBJECT-TYPE
SYNTAX AtmLaneAddress
-- Rsyntax OCTET STRING(SIZE(0 | 20))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ATM address of the static broadcast target."
::= { bcmStaticTargetsEntry 2 }
bcmStaticTargetsMacAddress OBJECT-TYPE
SYNTAX MacAddress
-- Rsyntax OCTET STRING(SIZE(6))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The MAC address of the static broadcast target.
This object is optional."
::= { bcmStaticTargetsEntry 3 }
bcmStaticTargetsProtocol OBJECT-TYPE
SYNTAX INTEGER {
noStaticProtocolDefined(0),
ipx(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The protocol designation for static broadcast target.
Indicates for which protocol broadcast frames are
forwarded. Currently, only IPX is supported
(i.e., configured static entries only apply to IPX)."
::= { bcmStaticTargetsEntry 4 }
bcmStaticTargetsRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create or
activate and inactivate entries in the bcmStaticTargetsTable.
Note: in order to set RowStatus active
bcmStaticTargetsProtocol and bcmStaticTargetsAtmAddress
must be set to in the same SET bindings. If
the optional object bcmStaticTargetsMacAddress is
desired it must also be SET in the same bindings.
Once the RowStatus is set to active, objects maybe individually
set.
Only values of active(1) and inActive(2) are supported for
this table.
"
REFERENCE
"RFC1903, Textual Conventions
for version 2 of the Simple Network Management
Protocol (SNMPv2)."
::= { bcmStaticTargetsEntry 5 }
bcmIpConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmIpConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains configuration parameters for
the IP protocol for the BCMs at the agent. This
table augments the bcmConfTable."
::= { bcmConfGroup 4 }
bcmIpConfEntry OBJECT-TYPE
SYNTAX BcmIpConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table represents the configuration
for the IP protocol of a single BCM."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmIpConfTable 1 }
BcmIpConfEntry ::= SEQUENCE {
bcmIpConfOperStatus INTEGER,
bcmIpConfAdminStatus INTEGER,
bcmIpConfCacheAge BcmCacheAge
}
bcmIpConfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
up(2),
down(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The operational state of BCM/IP on this entry.
Other defines the transition states between up and down."
::= { bcmIpConfEntry 1 }
bcmIpConfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(2),
down(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The administrative state of the BCM/IP on this entry."
::= { bcmIpConfEntry 2 }
bcmIpConfCacheAge OBJECT-TYPE
SYNTAX BcmCacheAge
-- Rsyntax INTEGER(0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum number of minutes an IP Address entry is
kept without re-verification of its location."
::= { bcmIpConfEntry 3 }
bcmIpxConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmIpxConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains configuration parameters for
the IPX protocol for the BCMs at the agent. This
table augments the bcmConfTable."
::= { bcmConfGroup 5 }
bcmIpxConfEntry OBJECT-TYPE
SYNTAX BcmIpxConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table represents the configuration
for the IPX protocol of a single BCM."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmIpxConfTable 1 }
BcmIpxConfEntry ::= SEQUENCE {
bcmIpxConfOperStatus INTEGER,
bcmIpxConfAdminStatus INTEGER,
bcmIpxConfCacheAge BcmCacheAge
}
bcmIpxConfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
up(2),
down(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The operational state of BCM/IPX on this entry.
Other defines the transition states between up and down."
::= { bcmIpxConfEntry 1 }
bcmIpxConfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(2),
down(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The administrative state of the BCM/IPX on this entry."
::= { bcmIpxConfEntry 2 }
bcmIpxConfCacheAge OBJECT-TYPE
SYNTAX BcmCacheAge
-- Rsyntax INTEGER(0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum number of minutes an IPX Address entry is
kept without re-verification of its location."
::= { bcmIpxConfEntry 3 }
bcmNbConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmNbConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains configuration parameters for
the NetBIOS protocol for the BCMs at the agent. This
table augments the bcmConfTable."
::= { bcmConfGroup 6 }
bcmNbConfEntry OBJECT-TYPE
SYNTAX BcmNbConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table represents the configuration
for the NetBIOS protocol of a single BCM."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmNbConfTable 1 }
BcmNbConfEntry ::= SEQUENCE {
bcmNbConfOperStatus INTEGER,
bcmNbConfAdminStatus INTEGER,
bcmNbConfCacheAge BcmCacheAge
}
bcmNbConfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
up(2),
down(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The operational state of BCM/NetBIOS on this entry.
Other defines the transition states between up and down."
::= { bcmNbConfEntry 1 }
bcmNbConfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(2),
down(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The administrative state of the BCM/NetBIOS on this entry."
::= { bcmNbConfEntry 2 }
bcmNbConfCacheAge OBJECT-TYPE
SYNTAX BcmCacheAge
-- Rsyntax INTEGER(0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum number of minutes an NetBIOS Address entry is
kept without re-verification of its location."
::= { bcmNbConfEntry 3 }
bcmStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains all the counters maintained by
the BCMs within the scope of an agent. This table
augments the bcmConfTable."
::= { bcmStatGroup 1 }
bcmStatEntry OBJECT-TYPE
SYNTAX BcmStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table contains a BCM and its counters.
These counters accumulate totals for all protocols."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmStatTable 1 }
BcmStatEntry ::= SEQUENCE {
bcmFramesReceived Counter32,
bcmOctetsReceived Counter32,
bcmFramesReturned Counter32,
bcmOctetsReturned Counter32,
bcmFramesDiscarded Counter32,
bcmOctetsDiscarded Counter32,
bcmFramesTransmitted Counter32,
bcmOctetsTransmitted Counter32,
bcmTransmitErrorFrames Counter32,
bcmTransmitErrorOctets Counter32,
bcmBroadcastFramesDirectedNoRif Counter32,
bcmBroadcastFramesDirectedAre Counter32,
bcmBroadcastFramesDirectedSte Counter32,
bcmBroadcastFramesDirectedSrf Counter32
}
bcmFramesReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames received by BCM for all protocols."
::= { bcmStatEntry 1 }
bcmOctetsReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of octets received by BCM for all protocols."
::= { bcmStatEntry 2 }
bcmFramesReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames, for all protocols, not managed by BCM and
returned to BUS for transmission."
::= { bcmStatEntry 3 }
bcmOctetsReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of octets, for all protocols, not managed by BCM and
returned to BUS for transmission."
::= { bcmStatEntry 4 }
bcmFramesDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames discarded (filtered) by BCM for all protocols."
::= { bcmStatEntry 5 }
bcmOctetsDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of octets discarded (filtered) by BCM for all protocols."
::= { bcmStatEntry 6 }
bcmFramesTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames transmitted by BCM for all protocols."
::= { bcmStatEntry 7 }
bcmOctetsTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of octets transmitted by BCM for all protocols."
::= { bcmStatEntry 8 }
bcmTransmitErrorFrames OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames, for all protocols, that the BCM could
not sent due to an error."
::= { bcmStatEntry 9 }
bcmTransmitErrorOctets OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of octets, for all protocols, that the BCM could
not sent due to an error."
::= { bcmStatEntry 10 }
bcmBroadcastFramesDirectedNoRif OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames, for all protocols, transmitted by BCM
with no RI Field."
::= { bcmStatEntry 11 }
bcmBroadcastFramesDirectedAre OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames, for all protocols, transmitted by BCM
left as ARE."
::= { bcmStatEntry 12 }
bcmBroadcastFramesDirectedSte OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames, for all protocols, transmitted by BCM
that were converted from ARE or STE to SRF by Source Route
Management, or left as SRF multicast frame (a rare frame type)."
::= { bcmStatEntry 13 }
bcmBroadcastFramesDirectedSrf OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Frames sent on one VCC, changed to SRF."
::= { bcmStatEntry 14 }
bcmIpStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmIpStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table contains the counters for the
IP operation of a BCM. The table augments the bcmStatTable."
::= { bcmStatGroup 2 }
bcmIpStatEntry OBJECT-TYPE
SYNTAX BcmIpStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table contains the counters for the
IP operation of a BCM. The table augments the bcmStatTable."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmIpStatTable 1 }
BcmIpStatEntry ::= SEQUENCE {
bcmIpFramesReceived Counter32,
bcmIpOctetsReceived Counter32,
bcmIpFramesReturned Counter32,
bcmIpOctetsReturned Counter32,
bcmIpFramesDiscarded Counter32,
bcmIpOctetsDiscarded Counter32,
bcmIpFramesTransmitted Counter32,
bcmIpOctetsTransmitted Counter32,
bcmIpTransmitErrorFrames Counter32,
bcmIpTransmitErrorOctets Counter32,
bcmIpBroadcastFramesDirectedNoRif Counter32,
bcmIpBroadcastFramesDirectedAre Counter32,
bcmIpBroadcastFramesDirectedSte Counter32,
bcmIpBroadcastFramesDirectedSrf Counter32
}
bcmIpFramesReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames received by BCM."
::= { bcmIpStatEntry 1 }
bcmIpOctetsReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) octets received by BCM."
::= { bcmIpStatEntry 2 }
bcmIpFramesReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames not managed by BCM and
returned to BUS for transmission."
::= { bcmIpStatEntry 3 }
bcmIpOctetsReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) octets not managed by BCM and
returned to BUS for transmission."
::= { bcmIpStatEntry 4 }
bcmIpFramesDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames discarded (filtered) by BCM."
::= { bcmIpStatEntry 5 }
bcmIpOctetsDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) octets discarded (filtered) by BCM."
::= { bcmIpStatEntry 6 }
bcmIpFramesTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames transmitted by BCM."
::= { bcmIpStatEntry 7 }
bcmIpOctetsTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) octets transmitted by BCM."
::= { bcmIpStatEntry 8 }
bcmIpTransmitErrorFrames OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames that the BCM could not sent due to an error."
::= { bcmIpStatEntry 9 }
bcmIpTransmitErrorOctets OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) octets that the BCM could not sent due to an error."
::= { bcmIpStatEntry 10 }
bcmIpBroadcastFramesDirectedNoRif OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames transmitted by BCM with no RI Field."
::= { bcmIpStatEntry 11 }
bcmIpBroadcastFramesDirectedAre OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames transmitted by BCM left as ARE."
::= { bcmIpStatEntry 12 }
bcmIpBroadcastFramesDirectedSte OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames transmitted by BCM left as STE."
::= { bcmIpStatEntry 13 }
bcmIpBroadcastFramesDirectedSrf OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IP) frames transmitted by BCM that were converted from
ARE or STE to SRF by Source Route Management, or left as SRF
multicast frame (a rare frame type)."
::= { bcmIpStatEntry 14 }
bcmIpxStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmIpxStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table contains the counters for the
IPX operation of a BCM. The table augments the bcmStatTable."
::= { bcmStatGroup 3 }
bcmIpxStatEntry OBJECT-TYPE
SYNTAX BcmIpxStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table contains the counters for the
IPX operation of a BCM. The table augments the bcmStatTable."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmIpxStatTable 1 }
BcmIpxStatEntry ::= SEQUENCE {
bcmIpxFramesReceived Counter32,
bcmIpxOctetsReceived Counter32,
bcmIpxFramesReturned Counter32,
bcmIpxOctetsReturned Counter32,
bcmIpxFramesDiscarded Counter32,
bcmIpxOctetsDiscarded Counter32,
bcmIpxFramesTransmitted Counter32,
bcmIpxOctetsTransmitted Counter32,
bcmIpxTransmitErrorFrames Counter32,
bcmIpxTransmitErrorOctets Counter32,
bcmIpxBroadcastFramesDirectedNoRif Counter32,
bcmIpxBroadcastFramesDirectedAre Counter32,
bcmIpxBroadcastFramesDirectedSte Counter32,
bcmIpxBroadcastFramesDirectedSrf Counter32
}
bcmIpxFramesReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames received by BCM."
::= { bcmIpxStatEntry 1 }
bcmIpxOctetsReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) octets received by BCM."
::= { bcmIpxStatEntry 2 }
bcmIpxFramesReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames not managed by BCM and
returned to BUS for transmission."
::= { bcmIpxStatEntry 3 }
bcmIpxOctetsReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) octets not managed by BCM and
returned to BUS for transmission."
::= { bcmIpxStatEntry 4 }
bcmIpxFramesDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames discarded (filtered) by BCM."
::= { bcmIpxStatEntry 5 }
bcmIpxOctetsDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) octets discarded (filtered) by BCM."
::= { bcmIpxStatEntry 6 }
bcmIpxFramesTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames transmitted by BCM."
::= { bcmIpxStatEntry 7 }
bcmIpxOctetsTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) octets transmitted by BCM."
::= { bcmIpxStatEntry 8 }
bcmIpxTransmitErrorFrames OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames that the BCM could not sent due to an error."
::= { bcmIpxStatEntry 9 }
bcmIpxTransmitErrorOctets OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) octets that the BCM could not sent due to an error."
::= { bcmIpxStatEntry 10 }
bcmIpxBroadcastFramesDirectedNoRif OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Frame sent on one VCC, no RIF in them."
::= { bcmIpxStatEntry 11 }
bcmIpxBroadcastFramesDirectedAre OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames transmitted by BCM left as ARE."
::= { bcmIpxStatEntry 12 }
bcmIpxBroadcastFramesDirectedSte OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames transmitted by BCM left as STE."
::= { bcmIpxStatEntry 13 }
bcmIpxBroadcastFramesDirectedSrf OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (IPX) frames transmitted by BCM that were converted from
ARE or STE to SRF by Source Route Management, or left as SRF
multicast frame (a rare frame type)."
::= { bcmIpxStatEntry 14 }
bcmNbStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF BcmNbStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table contains the counters for the
NetBIOS operation of a BCM. The table augments the bcmStatTable."
::= { bcmStatGroup 4 }
bcmNbStatEntry OBJECT-TYPE
SYNTAX BcmNbStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table contains the counters for the
NetBIOS operation of a BCM. The table augments the bcmStatTable."
INDEX { busConfIndex }
-- Augments busConfEntry FROM LAN-EMULATION-BUS-MIB
::= { bcmNbStatTable 1 }
BcmNbStatEntry ::= SEQUENCE {
bcmNbFramesReceived Counter32,
bcmNbOctetsReceived Counter32,
bcmNbFramesReturned Counter32,
bcmNbOctetsReturned Counter32,
bcmNbFramesDiscarded Counter32,
bcmNbOctetsDiscarded Counter32,
bcmNbFramesTransmitted Counter32,
bcmNbOctetsTransmitted Counter32,
bcmNbTransmitErrorFrames Counter32,
bcmNbTransmitErrorOctets Counter32,
bcmNbBroadcastFramesDirectedNoRif Counter32,
bcmNbBroadcastFramesDirectedAre Counter32,
bcmNbBroadcastFramesDirectedSte Counter32,
bcmNbBroadcastFramesDirectedSrf Counter32
}
bcmNbFramesReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames received by BCM."
::= { bcmNbStatEntry 1 }
bcmNbOctetsReceived OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) octets received by BCM."
::= { bcmNbStatEntry 2 }
bcmNbFramesReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames not managed by BCM and
returned to BUS for transmission."
::= { bcmNbStatEntry 3 }
bcmNbOctetsReturned OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) octets not managed by BCM and
returned to BUS for transmission."
::= { bcmNbStatEntry 4 }
bcmNbFramesDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames discarded (filtered) by BCM."
::= { bcmNbStatEntry 5 }
bcmNbOctetsDiscarded OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) octets discarded (filtered) by BCM."
::= { bcmNbStatEntry 6 }
bcmNbFramesTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames transmitted by BCM."
::= { bcmNbStatEntry 7 }
bcmNbOctetsTransmitted OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) octets transmitted by BCM."
::= { bcmNbStatEntry 8 }
bcmNbTransmitErrorFrames OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames that the BCM could not sent due to an error."
::= { bcmNbStatEntry 9 }
bcmNbTransmitErrorOctets OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) octets that the BCM could not sent due to an error."
::= { bcmNbStatEntry 10 }
bcmNbBroadcastFramesDirectedNoRif OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames transmitted by BCM with no RI Field."
::= { bcmNbStatEntry 11 }
bcmNbBroadcastFramesDirectedAre OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames transmitted by BCM left as ARE."
::= { bcmNbStatEntry 12 }
bcmNbBroadcastFramesDirectedSte OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames transmitted by BCM left as STE."
::= { bcmNbStatEntry 13 }
bcmNbBroadcastFramesDirectedSrf OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of (NetBIOS) frames transmitted by BCM that were converted
from ARE or STE to SRF by Source Route Management, or left as SRF
ulticast frame (a rare frame type)."
::= { bcmNbStatEntry 14 }
bcmCConfGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 1 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing configuration information
-- about the broadcast manager.
-- objects
-- bcmRouteCacheEnabled
bcmCStaticTargetsConfigGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 2 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing configuration information
-- about the static targets.
-- objects
-- bcmStaticTargetsNextId, bcmStaticTargetsIndex,
-- bcmStaticTargetsAtmAddress, bcmStaticTargetsMacAddress,
-- bcmStaticTargetsProtocol, bcmStaticTargetsRowStatus
bcmCIpConfigGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 3 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing configuration information
-- about the IP protocol operation in the BCM.
-- objects
-- bcmIpConfOperStatus, bcmIpConfAdminStatus, bcmIpConfCacheAge
bcmCIpxConfigGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 4 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing configuration information
-- about the IPX protocol operation in the BCM.
-- objects
-- bcmIpxConfOperStatus, bcmIpxConfAdminStatus,
-- bcmIpxConfCacheAge
bcmCNbConfigGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 5 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing configuration information
-- about the NetBIOS protocol operation in the BCM.
-- objects
-- bcmNbConfOperStatus, bcmNbConfAdminStatus, bcmNbConfCacheAge
bcmCStatGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 6 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing statistics
-- about the BCM operation.
-- objects
-- bcmFramesReceived, bcmOctetsReceived, bcmFramesReturned,
-- bcmOctetsReturned, bcmFramesDiscarded, bcmOctetsDiscarded,
-- bcmFramesTransmitted, bcmOctetsTransmitted,
-- bcmTransmitErrorFrames, bcmTransmitErrorOctets,
-- bcmBroadcastFramesDirectedNoRif,
-- bcmBroadcastFramesDirectedAre, bcmBroadcastFramesDirectedSte,
-- bcmBroadcastFramesDirectedSrf
bcmCIpStatGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 7 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing statistics
-- about the BCM operation.
-- objects
-- bcmIpFramesReceived, bcmIpOctetsReceived, bcmIpFramesReturned,
-- bcmIpOctetsReturned, bcmIpFramesDiscarded,
-- bcmIpOctetsDiscarded, bcmIpFramesTransmitted,
-- bcmIpOctetsTransmitted, bcmIpTransmitErrorFrames,
-- bcmIpTransmitErrorOctets, bcmIpBroadcastFramesDirectedNoRif,
-- bcmIpBroadcastFramesDirectedAre,
-- bcmIpBroadcastFramesDirectedSte,
-- bcmIpBroadcastFramesDirectedSrf
bcmCIpxStatGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 8 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing statistics
-- about the BCM operation.
-- objects
-- bcmIpxFramesReceived, bcmIpxOctetsReceived,
-- bcmIpxFramesReturned, bcmIpxOctetsReturned,
-- bcmIpxFramesDiscarded, bcmIpxOctetsDiscarded,
-- bcmIpxFramesTransmitted, bcmIpxOctetsTransmitted,
-- bcmIpxTransmitErrorFrames, bcmIpxTransmitErrorOctets,
-- bcmIpxBroadcastFramesDirectedNoRif,
-- bcmIpxBroadcastFramesDirectedAre,
-- bcmIpxBroadcastFramesDirectedSte,
-- bcmIpxBroadcastFramesDirectedSrf
bcmCNbStatGroup OBJECT IDENTIFIER ::= { bcmMIBGroups 9 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects providing statistics
-- about the BCM operation.
-- objects
-- bcmNbFramesReceived, bcmNbOctetsReceived, bcmNbFramesReturned,
-- bcmNbOctetsReturned, bcmNbFramesDiscarded,
-- bcmNbOctetsDiscarded, bcmNbFramesTransmitted,
-- bcmNbOctetsTransmitted, bcmNbTransmitErrorFrames,
-- bcmNbTransmitErrorOctets, bcmNbBroadcastFramesDirectedNoRif,
-- bcmNbBroadcastFramesDirectedAre,
-- bcmNbBroadcastFramesDirectedSte,
-- bcmNbBroadcastFramesDirectedSrf
bcmMIBCompliance OBJECT IDENTIFIER ::= { bcmMIBCompliances 1 }
-- MODULE-COMPLIANCE
-- Status
-- mandatory
-- Descr
-- The compliance statement for SNMP IBM extensions
-- to for broadcast management in ATM emulated LANS.
-- Module
-- >>current<<
-- OptGroup
-- bcmCConfGroup
-- OptGroup
-- bcmCStaticTargetsConfigGroup
-- OptGroup
-- bcmCIpConfigGroup
-- OptGroup
-- bcmCIpxConfigGroup
-- OptGroup
-- bcmCNbConfigGroup
-- OptGroup
-- bcmCStatGroup
-- OptGroup
-- bcmCIpStatGroup
-- OptGroup
-- bcmCIpxStatGroup
-- OptGroup
-- bcmCNbStatGroup
END
|