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
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
|
F3-BRIDGE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, Counter64
FROM SNMPv2-SMI
TruthValue, MacAddress, VariablePointer, TEXTUAL-CONVENTION,
StorageType, RowStatus, DisplayString
FROM SNMPv2-TC
fsp150cm
FROM ADVA-MIB
PerfCounter64
FROM CM-COMMON-MIB
neIndex, shelfIndex, slotIndex, networkElementEntry
FROM CM-ENTITY-MIB
cmFlowEntry, cmEthernetAccPortIndex,
cmFlowIndex, cmMPFlowIndex, cmFlowPointEntry
FROM CM-FACILITY-MIB
cmFlowStatsEntry, cmFlowHistoryEntry
FROM CM-PERFORMANCE-MIB;
f3BridgeMIB MODULE-IDENTITY
LAST-UPDATED "201905220000Z"
ORGANIZATION "ADVA Optical Networking SE"
CONTACT-INFO
"Web URL: http://adva.com/
E-mail: support@adva.com
Postal: ADVA Optical Networking SE
Campus Martinsried
Fraunhoferstrasse 9a
82152 Martinsried/Munich
Germany
Phone: +49 089 89 06 65 0
Fax: +49 089 89 06 65 199 "
DESCRIPTION
"This module defines the Bridge MIB definitions
used by the F3 (FSP150CM/CC) product lines.
Copyright (C) ADVA."
REVISION "201905220000Z"
DESCRIPTION
"
Notes from release 201905220000Z,
(1) Added f3EncapFlowPointLearningConfigTable
Notes from release 201606070000Z,
(1) Added f3FlowPointLearningConfigTable
Notes from release 201210090000Z,
(1)MIB version ready for release FSP150CC 5.6CC."
::= {fsp150cm 26}
--
-- Textual Conventions
--
LearningControl ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Learning Control:
none - The forwarding function of the Flow does not dynamically learn.
macbased - The forwarding function of the Flow dynamically learns based
on MAC address.
flowbased - The forwarding function of the Flow dynamically learns based on
EVC Membership."
SYNTAX INTEGER {
none (1),
macbased (2),
flowbased (3)
}
ProtectLearningControl ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Protect Learning Control:
none - Learned entries for a Flow with the parent Port
as a destination can be updated to a different Port.
discard - Learned entries for a Flow with the parent Port
as a destination cannot be updated to a different Port.
Frames received that would update the learned entry are discarded.
block - Learned entries for a Flow with the parent Port
as a destination cannot be updated to a different Port.
After receiving a frame that would update a learned entry,
that frame is discarded, the Flow adds a secondary
state of BLOCKD, and all subsequent frames received on that
port that match the Flow membership shall be discarded until
the secondary state of BLCKD is cleared."
SYNTAX INTEGER {
none (1),
discard (2),
block (3)
}
LearningAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Learning Action:
block - a frame with a matching destination MAC address is not forwarded
forward - a frame with a matching desintation MAC address is forwarded
to the destination Port
"
SYNTAX INTEGER {
block (1),
forward (2)
}
LearningEntryType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Learning Entry Type"
SYNTAX INTEGER {
static (1),
dynamic (2)
}
FlowLearningConfigAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Learning Action:
noAction - No Action
flushFwdTable - Removes all dynamic entries from the Forwarding table
of a Flow.
clearBlock - removes the secondary state of BLCKD and transitions
the flow to a state where frames are not blocked
resetAgingTimer - reset the aging timer
"
SYNTAX INTEGER {
noAction (1),
flushFwdTable (2),
clearBlock (3),
resetAgingTimer(4)
}
RetrieveMacAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Retrieve Mac Address Action"
SYNTAX INTEGER {
notApllicable (0),
retrieveMac (1)
}
--
-- OID definitions
--
f3BridgeConfigObjects OBJECT IDENTIFIER ::= {f3BridgeMIB 1}
f3BridgeStatsObjects OBJECT IDENTIFIER ::= {f3BridgeMIB 2}
f3BridgeConformance OBJECT IDENTIFIER ::= {f3BridgeMIB 3}
--
-- Flow table extension for Learning Control configuration
--
f3FlowLearningConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3FlowLearningConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table extends cmFlowTable to provide parameters for MAC Table control
configuration."
::= { f3BridgeConfigObjects 1 }
f3FlowLearningConfigEntry OBJECT-TYPE
SYNTAX F3FlowLearningConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3FlowLearningConfigTable."
AUGMENTS { cmFlowEntry }
::= { f3FlowLearningConfigTable 1 }
F3FlowLearningConfigEntry ::= SEQUENCE {
f3FlowLearningConfigAccIfLearningCtrl LearningControl,
f3FlowLearningConfigNetIfLearningCtrl LearningControl,
f3FlowLearningConfigAccMaxFwdEntries Integer32,
f3FlowLearningConfigNetMaxFwdEntries Integer32,
f3FlowLearningConfigAccIfProtectLearningCtrl ProtectLearningControl,
f3FlowLearningConfigNetIfProtectLearningCtrl ProtectLearningControl,
f3FlowLearningConfigAgingTimer Integer32,
f3FlowLearningConfigTableFullAction LearningAction,
f3FlowLearningConfigAction FlowLearningConfigAction
}
f3FlowLearningConfigAccIfLearningCtrl OBJECT-TYPE
SYNTAX LearningControl
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on Access Interface of
this Flow."
::= { f3FlowLearningConfigEntry 1 }
f3FlowLearningConfigNetIfLearningCtrl OBJECT-TYPE
SYNTAX LearningControl
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on Network Interface of
this Flow."
::= { f3FlowLearningConfigEntry 2 }
f3FlowLearningConfigAccMaxFwdEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring the maximum number of Forwarding Entires in
for the Access Interface Forwarding Table of this Flow."
::= { f3FlowLearningConfigEntry 3 }
f3FlowLearningConfigNetMaxFwdEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring the maximum number of Forwarding Entires in
for the Network Interface Forwarding Table of this Flow."
::= { f3FlowLearningConfigEntry 4 }
f3FlowLearningConfigAccIfProtectLearningCtrl OBJECT-TYPE
SYNTAX ProtectLearningControl
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on Access Interface of
this Flow."
::= { f3FlowLearningConfigEntry 5 }
f3FlowLearningConfigNetIfProtectLearningCtrl OBJECT-TYPE
SYNTAX ProtectLearningControl
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on Network Interface of
this Flow."
::= { f3FlowLearningConfigEntry 6 }
f3FlowLearningConfigAgingTimer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuration of the Aging Timer of this Flow in seconds.
Forwarding Entry will be removed from the forwarding table after
an inactivity time represented by this entry.
Setting the value of 0 disables aging."
::= { f3FlowLearningConfigEntry 7 }
f3FlowLearningConfigTableFullAction OBJECT-TYPE
SYNTAX LearningAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuration of Action on ingress frames when the number
of forwarding table entires has reached the maximum Fowarding Table size.
block - A frame with a Source MAC address not in the MAC Table
will be discarded.
forward - A frame with a Source MAC address not in the MAC table
will not be learned and will be forwarded based on
Destination MAC address of the frame.
Only applicable when f3FlowLearningConfigAccIfLearningCtrl is set to 'macbased'
or when =f3FlowLearningConfigNetIfLearningCtrl is set to 'macbased'."
::= { f3FlowLearningConfigEntry 8 }
f3FlowLearningConfigAction OBJECT-TYPE
SYNTAX FlowLearningConfigAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This objects allows performing user action on Flow Learning Table."
::= { f3FlowLearningConfigEntry 9 }
--
-- Static Forwading Table
--
f3FlowStaticFwdEntTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3FlowStaticFwdEntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table allows configuration of Static Forwarding Entries in the
Forwarding Table of a Flow."
::= { f3BridgeConfigObjects 2 }
f3FlowStaticFwdEntEntry OBJECT-TYPE
SYNTAX F3FlowStaticFwdEntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3FlowStaticFwdEntTable."
INDEX { neIndex,
shelfIndex,
slotIndex,
cmEthernetAccPortIndex,
cmFlowIndex,
IMPLIED f3FlowStaticFwdEntDestMac}
::= { f3FlowStaticFwdEntTable 1 }
F3FlowStaticFwdEntEntry ::= SEQUENCE {
f3FlowStaticFwdEntDestMac MacAddress,
f3FlowStaticFwdEntDestPort VariablePointer,
f3FlowStaticFwdEntAction LearningAction,
f3FlowStaticFwdEntStorageType StorageType,
f3FlowStaticFwdEntRowStatus RowStatus,
f3FlowStaticFwdValid TruthValue
}
f3FlowStaticFwdEntDestMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address for matching a frame destination MAC address."
::= { f3FlowStaticFwdEntEntry 1 }
f3FlowStaticFwdEntDestPort OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows configuring the destination port for a frame
with a matching destination MAC address as specified in f3FlowStaticFwdEntDestMac."
::= { f3FlowStaticFwdEntEntry 2 }
f3FlowStaticFwdEntAction OBJECT-TYPE
SYNTAX LearningAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows configuring the action for this Forwarding Entry."
::= { f3FlowStaticFwdEntEntry 3 }
f3FlowStaticFwdEntStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row."
::= { f3FlowStaticFwdEntEntry 4 }
f3FlowStaticFwdEntRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. An entry MUST NOT exist in the
active state unless all objects in the entry have an
appropriate value, as described
in the description clause for each writable object.
The values of f3FlowStaticFwdEntRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3StaticFwdRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3StaticFwdRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3FlowStaticFwdEntEntry 5 }
f3FlowStaticFwdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents Static FDB entry valid flag."
::= { f3FlowStaticFwdEntEntry 6 }
--
-- Forwading Table
--
f3FlowFdbTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3FlowFdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table allows viewing Forwarding Table of a Flow."
::= { f3BridgeConfigObjects 3 }
f3FlowFdbEntry OBJECT-TYPE
SYNTAX F3FlowFdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3FlowFdbTable."
INDEX { neIndex,
shelfIndex,
slotIndex,
cmEthernetAccPortIndex,
cmFlowIndex,
IMPLIED f3FlowFdbDestMac}
::= { f3FlowFdbTable 1 }
F3FlowFdbEntry ::= SEQUENCE {
f3FlowFdbDestMac MacAddress,
f3FlowFdbDestPort VariablePointer,
f3FlowFdbAction LearningAction,
f3FlowFdbEntryType LearningEntryType
}
f3FlowFdbDestMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address for matching a frame destination MAC address."
::= { f3FlowFdbEntry 1 }
f3FlowFdbDestPort OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the destination port for a frame
with a matching destination MAC address as specified in f3FlowFdbDestMac."
::= { f3FlowFdbEntry 2 }
f3FlowFdbAction OBJECT-TYPE
SYNTAX LearningAction
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the action for this Forwarding Entry."
::= { f3FlowFdbEntry 3 }
f3FlowFdbEntryType OBJECT-TYPE
SYNTAX LearningEntryType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the FDB entry type."
::= { f3FlowFdbEntry 4 }
f3MPFlowStaticFwdTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3MPFlowStaticFwdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to Fwd."
::= { f3BridgeConfigObjects 4 }
f3MPFlowStaticFwdEntry OBJECT-TYPE
SYNTAX F3MPFlowStaticFwdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3MPFlowFwdTable."
INDEX { neIndex, cmMPFlowIndex, f3MPFlowStaticFwdMacAddress }
::= { f3MPFlowStaticFwdTable 1 }
F3MPFlowStaticFwdEntry ::= SEQUENCE {
f3MPFlowStaticFwdMacAddress MacAddress,
f3MPFlowStaticFwdFP VariablePointer,
f3MPFlowStaticFwdControlAction LearningAction,
f3MPFlowStaticFwdValid TruthValue,
f3MPFlowStaticFwdStorageType StorageType,
f3MPFlowStaticFwdRowStatus RowStatus
}
f3MPFlowStaticFwdMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assigned/learned MAC address."
::= { f3MPFlowStaticFwdEntry 1 }
f3MPFlowStaticFwdFP OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Assigned/learned MAC address related to."
::= { f3MPFlowStaticFwdEntry 2 }
f3MPFlowStaticFwdControlAction OBJECT-TYPE
SYNTAX LearningAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows configuring the action for this Forwarding Entry."
::= { f3MPFlowStaticFwdEntry 3 }
f3MPFlowStaticFwdValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This Object describe it whether valid."
::= { f3MPFlowStaticFwdEntry 4 }
f3MPFlowStaticFwdStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row."
::= { f3MPFlowStaticFwdEntry 5 }
f3MPFlowStaticFwdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row.
An entry MUST NOT exist in the active state unless all
objects in the entry have an appropriate value, as described
in the description clause for each writable object.
The values of f3MPFlowFwdRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
cmFlowRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3MPFlowFwdRowStatus object may be modified if
the associated instance of this object is equal to active(1).
Note that flow creation and deletion is only supported
with access port in connection-oriented evpl mode."
::= { f3MPFlowStaticFwdEntry 6 }
f3MPFlowFDBTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3MPFlowFDBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to FDB."
::= { f3BridgeConfigObjects 5 }
f3MPFlowFDBEntry OBJECT-TYPE
SYNTAX F3MPFlowFDBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3MPFlowFwdTable."
INDEX { neIndex, cmMPFlowIndex, f3MPFlowFDBMacAddress }
::= { f3MPFlowFDBTable 1 }
F3MPFlowFDBEntry ::= SEQUENCE {
f3MPFlowFDBMacAddress MacAddress,
f3MPFlowFDBFP VariablePointer,
f3MPFlowFDBType LearningEntryType,
f3MPFlowFDBControlAction LearningAction
}
f3MPFlowFDBMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assigned/learned MAC address."
::= { f3MPFlowFDBEntry 1 }
f3MPFlowFDBFP OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Assigned/learned MAC address related to."
::= { f3MPFlowFDBEntry 2 }
f3MPFlowFDBType OBJECT-TYPE
SYNTAX LearningEntryType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the static or dynamic type for the relate mac."
::= { f3MPFlowFDBEntry 3 }
f3MPFlowFDBControlAction OBJECT-TYPE
SYNTAX LearningAction
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The action is read only as Forward that means the MAC
address is always forwarded."
::= { f3MPFlowFDBEntry 4 }
--
-- f3FwdTSizeProfile Table
--
f3FwdTSizeProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3FwdTSizeProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to FwdTSizeProfile."
::= { f3BridgeConfigObjects 6 }
f3FwdTSizeProfileEntry OBJECT-TYPE
SYNTAX F3FwdTSizeProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3FwdTSizeProfileTable."
INDEX { f3FwdTSizeProfileIndex }
::= { f3FwdTSizeProfileTable 1 }
F3FwdTSizeProfileEntry ::= SEQUENCE {
f3FwdTSizeProfileIndex Integer32,
f3FwdTSizeProfileName DisplayString,
f3FwdTSizeProfileTableSize Integer32
}
f3FwdTSizeProfileIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index value used to uniquely identify this f3FwdTSizeProfileEntry."
::= { f3FwdTSizeProfileEntry 1 }
f3FwdTSizeProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"his object allows SNMP management entities to provide a
name identifier with the f3FwdTSizeProfileEntry."
::= { f3FwdTSizeProfileEntry 2 }
f3FwdTSizeProfileTableSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object descpribes Maximum number of MAC Table Entries for the profile."
::= { f3FwdTSizeProfileEntry 3 }
--
-- MultiGroupRegistration Table
--
f3MultiGroupRegistrationTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3MultiGroupRegistrationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to MultiGroupRegistration."
::= { f3BridgeConfigObjects 7 }
f3MultiGroupRegistrationEntry OBJECT-TYPE
SYNTAX F3MultiGroupRegistrationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3MultiGroupRegistrationTable."
INDEX { neIndex, cmMPFlowIndex, f3MGRMulticastAddress }
::= { f3MultiGroupRegistrationTable 1 }
F3MultiGroupRegistrationEntry ::= SEQUENCE {
f3MGRMulticastAddress MacAddress,
f3MGRFPList DisplayString,
f3MGRGroupAction LearningAction,
f3MGRGroupType LearningEntryType,
f3MGRGroupValid TruthValue,
f3MGRGroupStorageType StorageType,
f3MGRGroupRowStatus RowStatus
}
f3MGRMulticastAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes MG Group MAC address."
::= { f3MultiGroupRegistrationEntry 1 }
f3MGRFPList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes the fplist."
::= { f3MultiGroupRegistrationEntry 2 }
f3MGRGroupAction OBJECT-TYPE
SYNTAX LearningAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"it is only be forward for egx7.1."
::= { f3MultiGroupRegistrationEntry 3 }
f3MGRGroupType OBJECT-TYPE
SYNTAX LearningEntryType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the group type is static or dynamic."
::= { f3MultiGroupRegistrationEntry 4 }
f3MGRGroupValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For GroupType as STATIC, if it is in Petra B, it is true;
Otherwise it is false."
::= { f3MultiGroupRegistrationEntry 5 }
f3MGRGroupStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is a conceptual row."
::= { f3MultiGroupRegistrationEntry 6 }
f3MGRGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row.
An entry MUST NOT exist in the active state unless all
objects in the entry have an appropriate value, as described
in the description clause for each writable object.
The values of f3MGRGroupRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
cmFlowRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3MGRGroupRowStatus object may be modified if
the associated instance of this object is equal to active(1).
Note that flow creation and deletion is only supported
with access port in connection-oriented evpl mode."
::= { f3MultiGroupRegistrationEntry 7 }
--
-- MGR Flow Pointer Member Table
--
f3MGRFPMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3MGRFPMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to MGRFPMember."
::= { f3BridgeConfigObjects 8 }
f3MGRFPMemberEntry OBJECT-TYPE
SYNTAX F3MGRFPMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3MGRFPMemberTable."
INDEX { neIndex, cmMPFlowIndex, f3MGRMulticastAddress, f3MGRFPIndex }
::= { f3MGRFPMemberTable 1 }
F3MGRFPMemberEntry ::= SEQUENCE {
f3MGRFPIndex VariablePointer,
f3MGRFPIndexRowStatus RowStatus
}
f3MGRFPIndex OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the relate Flow point."
::= { f3MGRFPMemberEntry 1 }
f3MGRFPIndexRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row.
An entry MUST NOT exist in the active state unless all
objects in the entry have an appropriate value, as described
in the description clause for each writable object.
The values of f3MGRFPIndexRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
cmFlowRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3MGRFPIndexRowStatus object may be modified if
the associated instance of this object is equal to active(1).
Note that flow creation and deletion is only supported
with access port in connection-oriented evpl mode."
::= { f3MGRFPMemberEntry 2 }
networkElementBridgeParamsTable OBJECT-TYPE
SYNTAX SEQUENCE OF NetworkElementBridgeParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries may be auto discovered, or can be explicitly created by
SNMP Manager. Each remotely discovered shelf is represented as
a row in this table."
::= { f3BridgeConfigObjects 9 }
networkElementBridgeParamsEntry OBJECT-TYPE
SYNTAX NetworkElementBridgeParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the networkElementBridgeParamsTable."
AUGMENTS { networkElementEntry }
::= { networkElementBridgeParamsTable 1 }
NetworkElementBridgeParamsEntry ::= SEQUENCE {
neBridgeParamsRtrvMacAction RetrieveMacAction
}
neBridgeParamsRtrvMacAction OBJECT-TYPE
SYNTAX RetrieveMacAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Before reading infomation from f3MPFlowFDBTable, neBridgeParamsRtrvMacAction should be operate firstly.
This object can help enhance the effciency for reading f3MPFlowFDBTable."
::= { networkElementBridgeParamsEntry 1 }
--
-- Flow table extension for Learning Performance current data
--
f3FlowLearningStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3FlowLearningStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table extends cmFlowStatsTable to provide parameters for Learninig
control configuration."
::= { f3BridgeStatsObjects 1 }
f3FlowLearningStatsEntry OBJECT-TYPE
SYNTAX F3FlowLearningStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3FlowLearningStatsTable."
AUGMENTS { cmFlowStatsEntry }
::= { f3FlowLearningStatsTable 1 }
F3FlowLearningStatsEntry ::= SEQUENCE {
f3FlowLearningStatsMacTableFlushes PerfCounter64,
f3FlowLearningStatsFDStaticBlock PerfCounter64,
f3FlowLearningStatsFDHairPin PerfCounter64,
f3FlowLearningStatsFDNoDest PerfCounter64,
f3FlowLearningStatsMacTableDiscards PerfCounter64
}
f3FlowLearningStatsMacTableFlushes OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current counter for number of times the MAC Table has been
flushed of Dynacmic entries."
::= { f3FlowLearningStatsEntry 1 }
f3FlowLearningStatsFDStaticBlock OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current counter for number of frames discarded due to a
static entry in Mac Table."
::= { f3FlowLearningStatsEntry 2 }
f3FlowLearningStatsFDHairPin OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current counter for number of frames discarded because
destination Port is the ingress flowpoint or destination Port is in the
same Split Horizon Group."
::= { f3FlowLearningStatsEntry 3 }
f3FlowLearningStatsFDNoDest OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current counter for number of frames discarded because no
destination Port is available due to
secondaryStates of BLCK.
The counter is currently not supported and will return 0 value."
::= { f3FlowLearningStatsEntry 4 }
f3FlowLearningStatsMacTableDiscards OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies current counter for total number of MAC Table entries that have
been or would have been learned, but have been failed due to a lack of
storage space in the Filtering Database."
::= { f3FlowLearningStatsEntry 5 }
--
-- Flow table extension for Learning Performance history data
--
f3FlowLearningHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3FlowLearningHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table extends cmFlowHistoryTable to provide parameters for Learninig
control configuration."
::= { f3BridgeStatsObjects 2 }
f3FlowLearningHistoryEntry OBJECT-TYPE
SYNTAX F3FlowLearningHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3FlowLearningHistoryTable."
AUGMENTS { cmFlowHistoryEntry }
::= { f3FlowLearningHistoryTable 1 }
F3FlowLearningHistoryEntry ::= SEQUENCE {
f3FlowLearningHistoryMacTableFlushes PerfCounter64,
f3FlowLearningHistoryFDStaticBlock PerfCounter64,
f3FlowLearningHistoryFDHairPin PerfCounter64,
f3FlowLearningHistoryFDNoDest PerfCounter64,
f3FlowLearningHistoryMacTableDiscards PerfCounter64
}
f3FlowLearningHistoryMacTableFlushes OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies history bin for number of times the MAC Table has been
flushed of Dynacmic entries."
::= { f3FlowLearningHistoryEntry 1 }
f3FlowLearningHistoryFDStaticBlock OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies history bin for number of frames discarded due to a
static entry in Mac Table."
::= { f3FlowLearningHistoryEntry 2 }
f3FlowLearningHistoryFDHairPin OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies history bin for number of frames discarded because
destination Port is the ingress flowpoint or destination Port is in the
same Split Horizon Group."
::= { f3FlowLearningHistoryEntry 3 }
f3FlowLearningHistoryFDNoDest OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies history bin for number of frames discarded because no
destination Port is available due to
secondaryStates of BLCK.
The counter is currently not supported and will return 0 value."
::= { f3FlowLearningHistoryEntry 4 }
f3FlowLearningHistoryMacTableDiscards OBJECT-TYPE
SYNTAX PerfCounter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies history bin for total number of MAC Table entries that have
been or would have been learned, but have been failed due to a lack of
storage space in the Filtering Database."
::= { f3FlowLearningHistoryEntry 5 }
--
-- Flowpoint table extension for Learning Control configuration
--
f3FlowPointLearningConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3FlowPointLearningConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table extends f3FlowPointTable to provide parameters for MAC Table control
configuration."
::= { f3BridgeConfigObjects 10 }
f3FlowPointLearningConfigEntry OBJECT-TYPE
SYNTAX F3FlowPointLearningConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3FlowPointLearningConfigTable."
AUGMENTS { cmFlowPointEntry }
::= { f3FlowPointLearningConfigTable 1 }
F3FlowPointLearningConfigEntry ::= SEQUENCE {
f3FlowPointLearningConfigLearningEnabled TruthValue,
f3FlowPointLearningConfigMaxFwdEntries Integer32,
f3FlowPointLearningConfigProtectLearningCtrl ProtectLearningControl,
f3FlowPointLearningConfigAction FlowLearningConfigAction
}
f3FlowPointLearningConfigLearningEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on this Flowpoint."
::= { f3FlowPointLearningConfigEntry 1 }
f3FlowPointLearningConfigMaxFwdEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring the maximum number of Forwarding Entries
on this Flowpoint."
::= { f3FlowPointLearningConfigEntry 2 }
f3FlowPointLearningConfigProtectLearningCtrl OBJECT-TYPE
SYNTAX ProtectLearningControl
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on this Flowpoint."
::= { f3FlowPointLearningConfigEntry 3 }
f3FlowPointLearningConfigAction OBJECT-TYPE
SYNTAX FlowLearningConfigAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This objects allows performing user action on Flow Learning Table."
::= { f3FlowPointLearningConfigEntry 4 }
--
-- Encap Flowpoint table extension for Learning Control configuration
--
f3EncapFlowPointLearningConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3EncapFlowPointLearningConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table extends f3EncapFlowPointTable to provide parameters for MAC Table control
configuration."
::= { f3BridgeConfigObjects 11 }
f3EncapFlowPointLearningConfigEntry OBJECT-TYPE
SYNTAX F3EncapFlowPointLearningConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3EncapFlowPointLearningConfigTable."
AUGMENTS { cmEncapFlowPointEntry }
::= { f3EncapFlowPointLearningConfigTable 1 }
F3EncapFlowPointLearningConfigEntry ::= SEQUENCE {
f3EncapFlowPointLearningConfigLearningEnabled TruthValue,
f3EncapFlowPointLearningConfigMaxFwdEntries Integer32,
f3EncapFlowPointLearningConfigProtectLearningCtrl ProtectLearningControl,
f3EncapFlowPointLearningConfigAction FlowLearningConfigAction
}
f3EncapFlowPointLearningConfigLearningEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on this Encap Flowpoint."
::= { f3EncapFlowPointLearningConfigEntry 1 }
f3EncapFlowPointLearningConfigMaxFwdEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring the maximum number of Forwarding Entries
on this Flowpoint."
::= { f3EncapFlowPointLearningConfigEntry 2 }
f3EncapFlowPointLearningConfigProtectLearningCtrl OBJECT-TYPE
SYNTAX ProtectLearningControl
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuring Learning Control on this Encap Flowpoint."
::= { f3EncapFlowPointLearningConfigEntry 3 }
f3EncapFlowPointLearningConfigAction OBJECT-TYPE
SYNTAX FlowLearningConfigAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This objects allows performing user action on Flow Learning Table."
::= { f3EncapFlowPointLearningConfigEntry 4 }
--
-- Conformance
--
f3BridgeCompliances OBJECT IDENTIFIER ::= {f3BridgeConformance 1}
f3BridgeGroups OBJECT IDENTIFIER ::= {f3BridgeConformance 2}
f3BridgeCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the requirements for conformance to the F3-BRIDGE-MIB compliance."
MODULE -- this module
MANDATORY-GROUPS {
f3FlowLearningConfigGroup,
f3FlowStaticFwdEntGroup,
f3FlowLearningStatsGroup,
f3FlowLearningHistoryGroup,
f3FlowFdbGroup,
f3MPFlowStaticFwdGroup,
f3MPFlowFDBGroup,
f3FwdTSizeProfileGroup,
f3MGGroupFPGroup,
f3NetworkElementBridgeParamsGroup
}
::= { f3BridgeCompliances 1 }
f3FlowLearningConfigGroup OBJECT-GROUP
OBJECTS {
f3FlowLearningConfigAccIfLearningCtrl,
f3FlowLearningConfigNetIfLearningCtrl,
f3FlowLearningConfigAccMaxFwdEntries,
f3FlowLearningConfigNetMaxFwdEntries,
f3FlowLearningConfigAccIfProtectLearningCtrl,
f3FlowLearningConfigNetIfProtectLearningCtrl,
f3FlowLearningConfigAgingTimer,
f3FlowLearningConfigTableFullAction,
f3FlowLearningConfigAction
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Flow Learning Config group."
::= { f3BridgeGroups 1 }
f3FlowStaticFwdEntGroup OBJECT-GROUP
OBJECTS {
f3FlowStaticFwdEntDestPort,
f3FlowStaticFwdEntAction,
f3FlowStaticFwdEntStorageType,
f3FlowStaticFwdEntRowStatus,
f3FlowStaticFwdValid
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Flow Static Forwarding group."
::= { f3BridgeGroups 2 }
f3FlowLearningStatsGroup OBJECT-GROUP
OBJECTS {
f3FlowLearningStatsMacTableFlushes,
f3FlowLearningStatsFDStaticBlock,
f3FlowLearningStatsFDHairPin,
f3FlowLearningStatsFDNoDest,
f3FlowLearningStatsMacTableDiscards
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Flow Learning Statistics group."
::= { f3BridgeGroups 3 }
f3FlowLearningHistoryGroup OBJECT-GROUP
OBJECTS {
f3FlowLearningHistoryMacTableFlushes,
f3FlowLearningHistoryFDStaticBlock,
f3FlowLearningHistoryFDHairPin,
f3FlowLearningHistoryFDNoDest,
f3FlowLearningHistoryMacTableDiscards
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Flow Learning History group."
::= { f3BridgeGroups 4 }
f3FlowFdbGroup OBJECT-GROUP
OBJECTS {
f3FlowFdbDestPort,
f3FlowFdbAction,
f3FlowFdbEntryType
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Flow Forwarding group."
::= { f3BridgeGroups 5 }
f3MPFlowStaticFwdGroup OBJECT-GROUP
OBJECTS {
f3MPFlowStaticFwdMacAddress,
f3MPFlowStaticFwdFP,
f3MPFlowStaticFwdControlAction,
f3MPFlowStaticFwdValid,
f3MPFlowStaticFwdStorageType,
f3MPFlowStaticFwdRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the MPFlow Static Fwd group."
::= { f3BridgeGroups 6 }
f3MPFlowFDBGroup OBJECT-GROUP
OBJECTS {
f3MPFlowFDBMacAddress,
f3MPFlowFDBFP,
f3MPFlowFDBType,
f3MPFlowFDBControlAction
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the MPFlow FDB group."
::= { f3BridgeGroups 7 }
f3FwdTSizeProfileGroup OBJECT-GROUP
OBJECTS {
f3FwdTSizeProfileIndex,
f3FwdTSizeProfileName,
f3FwdTSizeProfileTableSize
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the f3FwdTSizeProfileGroup."
::= { f3BridgeGroups 8 }
f3MGGroupFPGroup OBJECT-GROUP
OBJECTS {
f3MGRMulticastAddress,
f3MGRFPList, f3MGRGroupAction,
f3MGRGroupType, f3MGRGroupValid,
f3MGRGroupRowStatus, f3MGRFPIndex,
f3MGRFPIndexRowStatus, f3MGRGroupStorageType
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the f3MGGroupFPGroup."
::= { f3BridgeGroups 9 }
f3NetworkElementBridgeParamsGroup OBJECT-GROUP
OBJECTS {
neBridgeParamsRtrvMacAction
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the f3FwdTSizeProfileGroup."
::= { f3BridgeGroups 10 }
f3FlowPointLearningConfigGroup OBJECT-GROUP
OBJECTS {
f3FlowPointLearningConfigLearningEnabled,
f3FlowPointLearningConfigMaxFwdEntries,
f3FlowPointLearningConfigProtectLearningCtrl,
f3FlowPointLearningConfigAction
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Flow Learning Config group."
::= { f3BridgeGroups 11 }
f3EncapFlowPointLearningConfigGroup OBJECT-GROUP
OBJECTS {
f3EncapFlowPointLearningConfigLearningEnabled,
f3EncapFlowPointLearningConfigMaxFwdEntries,
f3EncapFlowPointLearningConfigProtectLearningCtrl,
f3EncapFlowPointLearningConfigAction
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Flow Learning Config group."
::= { f3BridgeGroups 12 }
END
|