-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-L2-CONTROL-MIB-V1SMI.my
1613 lines (1452 loc) · 51.9 KB
/
CISCO-L2-CONTROL-MIB-V1SMI.my
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
-- MIB file created 03-Jul-2013 09:38:04, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-L2-CONTROL-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-L2-CONTROL-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue, RowStatus
FROM SNMPv2-TC-v1
ciscoMgmt
FROM CISCO-SMI
entPhysicalIndex
FROM ENTITY-MIB
VlanIndex
FROM Q-BRIDGE-MIB
InterfaceIndex, ifIndex
FROM IF-MIB
Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoL2ControlMIB OBJECT IDENTIFIER ::= { ciscoMgmt 313 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201307030000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Postal: Cisco Systems, Inc.
-- 170 West Tasman Drive
-- San Jose, CA 95134-1706
-- USA
--
-- Tel: +1 408 526 4000
--
-- E-mail: [email protected]
-- Descr
-- The CISCO-L2-CONTROL-MIB is used to control some layer 2
-- functions, including MAC limit function and unicast
-- flooding. This device could be a router or a switch.
-- RevDate
-- 201307030000Z
-- RevDescr
-- Added ClcMacAddressStatsType and clcMacAddressStatsGroup.
-- RevDate
-- 200701100000Z
-- RevDescr
-- Added 'vlanMacLimitHigh' and
-- 'vlanLimitHighExceededAction' enum values to
-- clcVlanMacLimitGlobalConfig. Added
-- clcMacAddressLimitIntervalGroup,clcMacAddressLimitGroup1,
-- clcVlanMacAddressLimitGroup1,clcVlanMacLimitEnableGroup,
-- clcVlanMacLimitNotifControlGroup,
-- clcVlanMacLimitNotifControlGroup1,
-- clcVlanMacLimitNotifsGroup1,clcIfMacAddressLimitGroup,
-- clcIfMacLimitEnableGroup, clcIfMacLimitNotifControlGroup,
-- clcIfMacLimitNotifsGroup, clcIfVlanMacAddressLimitGroup,
-- clcIfVlanMacLimitEnableGroup,clcIfVlanMacLimitNotifControlGroup,
-- clcIfVlanMacLimitNotifsGroup.
-- RevDate
-- 200312010000Z
-- RevDescr
-- Initial revision of this MIB module.
ciscoL2ControlMIBNotifs OBJECT IDENTIFIER ::= { ciscoL2ControlMIB 0 }
ciscoL2ControlMIBObjects OBJECT IDENTIFIER ::= { ciscoL2ControlMIB 1 }
ciscoL2ControlMIBConformance OBJECT IDENTIFIER ::= { ciscoL2ControlMIB 2 }
clcMacAddressLimitObjects OBJECT IDENTIFIER ::= { ciscoL2ControlMIBObjects 1 }
clcUnicastFloodObjects OBJECT IDENTIFIER ::= { ciscoL2ControlMIBObjects 2 }
clcIfMacAddressLimitObjects OBJECT IDENTIFIER ::= { ciscoL2ControlMIBObjects 3 }
clcIfVlanMacAddressLimitObjects OBJECT IDENTIFIER ::= { ciscoL2ControlMIBObjects 4 }
clcMacAddressStatsObjects OBJECT IDENTIFIER ::= { ciscoL2ControlMIBObjects 5 }
ciscoL2ControlMIBCompliances OBJECT IDENTIFIER ::= { ciscoL2ControlMIBConformance 1 }
ciscoL2ControlMIBGroups OBJECT IDENTIFIER ::= { ciscoL2ControlMIBConformance 2 }
MacLimitExceededAction ::= INTEGER {
warning(1),
limit(2),
limitNoFlood(3),
shutdown(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The action that will be taken by the system on an entity,
-- when the system detects the current learned number of MAC
-- addresses in the forwarding table has exceeded the limit
-- number of MAC addresses which is configured by the users.
-- The entities that will be affected by the action are VLAN,
-- interface or interface-VLAN pair.
--
-- warning : The violation will only generate the notification
-- and no further action will be taken.
--
-- limit : The notification will be generated as the 'warning'
-- action and also the MAC limit is enforced for the entity.
-- It means that the new address will not be learned in the entity
-- and the traffic with new addresses will be flooded in the entity.
-- The learning will be re-enabled in the entity
-- if the number of MAC addresses falls below the limit.
--
-- limitNoFlood : The notification will be generated as the
-- 'warning' action and also the MAC limit is enforced for the
-- entity but no flooding traffic for unknown unicast MAC address
-- packets. It means that the new addresses will not be learned
-- in the entity and also the traffic with new addresses will not
-- be flooded in the entity. The learning will be re-enabled in the
-- entity if the number of MAC addresses falls below the limit.
--
-- shutdown : The notification will be generated as the 'warning'
-- action and the system will move the corresponding entity to
-- blocked state, no traffic in the entity. The traffic will be
-- re-enabled in the entity if the number of MAC addresses falls
-- below the limit.
ClcMacAddressStatsType ::= INTEGER {
allMac(1),
dynamicMac(2),
staticMac(3),
mcastMac(4),
pvlanCloneMac(5),
overlayMac(6),
secureMac(7)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The type of MAC address statistics.
--
-- 'allMac' - All MAC addresses
-- 'dynamicMac' - dynamic MAC addresses
-- 'staticMac' - static MAC addresses
-- 'mcastMac' - multicast MAC addresses
-- 'pvlanCloneMac' - PVLAN clone MAC addresses
-- 'overlayMac' - overlay MAC addresses
-- 'secureMac' - secure MAC addresses
clcMacLimitEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is to enable or disable the limit of number
of MAC addresses function globally.
MAC limit function is to try to control the number of MAC
addresses for each VLAN or interface or interface-VLAN pair in
the forwarding tables for a network device. It is possible that
one VLAN or one interface or interface-VLAN pair can exhaust
all available MAC entries because of Denial-of-Service
and cause users' traffic on the other VLANS or interfaces flooded.
To prevent this situation, the MAC limit for each VLAN or interface
or interface-VLAN pair is needed. The major function of this
feature is to protect the layer 2 forwarding table."
::= { clcMacAddressLimitObjects 1 }
clcMaxMacLimitDefault OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The global default value for low threshold
limit number of MAC addresses in the system."
::= { clcMacAddressLimitObjects 2 }
clcMacLimitExceededActionDefault OBJECT-TYPE
SYNTAX MacLimitExceededAction
-- Rsyntax INTEGER {
-- warning(1),
-- limit(2),
-- limitNoFlood(3),
-- shutdown(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The global default action to be taken by the system
when the number of MAC addresses in the forwarding
table has exceeded the low threshold number of MAC address
limit for a VLAN or an interface or for interface-VLAN pair."
::= { clcMacAddressLimitObjects 3 }
clcMacLimitExceedNotifOption OBJECT-TYPE
SYNTAX INTEGER {
sysLog(1),
snmpNotif(2),
both(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This MIB object provides the choices of generating MAC limit
exceeded notification to the users.
When the system detects the current learned number of MAC
addresses in the forwarding table which has exceeded the limit
number of MAC addresses, the system will generate the
following notifications.
syslog(1) : An syslog message will be generated to users.
snmpNotif(2) : An SNMP notification message will be generated
to users.
both(3) : Both a syslog message and an SNMP notification
message will be generated to users."
::= { clcMacAddressLimitObjects 4 }
clcMacLimitNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The MIB object controls generation of SNMP notification
for MAC Limit feature.
When this object is 'true', generation of
clcVlanMacLimitNotif is enabled. When this object is
'false', generation of clcVlanMacLimitNotif is disabled."
::= { clcMacAddressLimitObjects 5 }
clcVlanMacLimitTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClcVlanMacLimitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table contains information on Vlan MAC address limit
feature for each VLAN capable of this feature."
::= { clcMacAddressLimitObjects 6 }
clcVlanMacLimitEntry OBJECT-TYPE
SYNTAX ClcVlanMacLimitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry contains Vlan MAC address limit feature
configuration for the VLAN"
INDEX { clcVlanMacLimitIndex }
::= { clcVlanMacLimitTable 1 }
ClcVlanMacLimitEntry ::= SEQUENCE {
clcVlanMacLimitIndex Gauge,
clcVlanMacLimitGlobalConfig OCTET STRING,
clcVlanMaxMacLimit Gauge,
clcVlanMacLimitExceededAction MacLimitExceededAction,
clcVlanMacLimitStatus RowStatus,
clcVlanMacLimitEnable TruthValue,
clcVlanMacLimitHigh Gauge,
clcVlanMacLimitHighExceedAction MacLimitExceededAction
}
clcVlanMacLimitIndex OBJECT-TYPE
SYNTAX Gauge(1..4096)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The VLAN ID for each VLAN's configuration of MAC
address limit function in the system."
::= { clcVlanMacLimitEntry 1 }
clcVlanMacLimitGlobalConfig OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- vlanMaxMacLimit(0)
-- vlanLimitExceededAction(1)
-- vlanMacLimitHigh(2)
-- vlanLimitHighExceededAction(3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates whether the configurations for this
VLAN are based on the corresponding global default
configurations or not.
vlanMaxMacLimit(0) : indicates that the value of
clcVlanMaxMacLimit is based on the value of
clcMaxMacLimitDefault if this bit is set.
vlanLimitExceededAction(1) : indicates that the value of
clcVlanMacLimitExceededAction is based on the
value of clcMacLimitExceededActionDefault if this
bit is set.
vlanMacLimitHigh(2) : indicates that the value of
clcVlanMacLimitHigh is based on the value of
clcMacLimitHighDefault if this bit is set.
vlanLimitHighExceededAction(3) : indicates that the value of
clcVlanMacLimitHighExceedAction is based on the
value of clcMacLimitHighExceedActionDef if this
bit is set."
::= { clcVlanMacLimitEntry 2 }
clcVlanMaxMacLimit OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The lower threshold limit number of MAC addresses entries for
this VLAN.
When the instance value of this object is set to 0, no lower
threshold limit will be applied for this Vlan and the
corresponding instance value of clcVlanMacLimitExceededAction
of the same row has no effect.
The default value of this object is the value of
clcMaxMacLimitDefault."
::= { clcVlanMacLimitEntry 3 }
clcVlanMacLimitExceededAction OBJECT-TYPE
SYNTAX MacLimitExceededAction
-- Rsyntax INTEGER {
-- warning(1),
-- limit(2),
-- limitNoFlood(3),
-- shutdown(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to be taken by the system for this VLAN while the
number of MAC addresses has exceeded the value of
clcVlanMaxMacLimit.
This object value is only effective when the corresponding
instance value of clcVlanMaxMacLimit is not set to 0.
The default value of this MIB object is the value of
clcMacLimitExceededActionDefault."
::= { clcVlanMacLimitEntry 4 }
clcVlanMacLimitStatus 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 a conceptual row entry that allows to add
or delete entries to or from the clcVlanMacLimitTable.
1. When creating an entry in this table 'createAndGo'
method is used and the value of this object is set to
'active'. Deactivation of an 'active' entry is not
allowed.
2. When deleting an entry in this table 'destroy' method
is used.
The value of clcVlanMaxMacLimit, clcVlanMacLimitExceededAction,
clcVlanMacLimitEnable, clcVlanMacLimitHigh and
clcVlanMacLimitHighExceedAction object can be modified when the
value of this RowStatus object is 'active'."
::= { clcVlanMacLimitEntry 5 }
clcVlanMacLimitEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates whether the Mac Limit feature is
enabled on this Vlan or not."
DEFVAL { false }
::= { clcVlanMacLimitEntry 6 }
clcVlanMacLimitHigh OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The higher threshold limit for the number of MAC addresses entries
on this VLAN. The instance value of this clcVlanMacLimitHigh
must be greater than the instance value of the clcVlanMaxMacLimit
of the same row, only when the value is not zero.
When the instance value of this object is set to 0, no higher
threshold limit will be applied for this Vlan and the
corresponding instance value of clcVlanMacLimitHighExceededAction
of the same row has no effect.
The default value of this MIB object is the value of
clcMacLimitHighDefault."
::= { clcVlanMacLimitEntry 7 }
clcVlanMacLimitHighExceedAction OBJECT-TYPE
SYNTAX MacLimitExceededAction
-- Rsyntax INTEGER {
-- warning(1),
-- limit(2),
-- limitNoFlood(3),
-- shutdown(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to be taken by the system for this Vlan while the
number of MAC addresses has exceeded the value of
clcVlanMacLimitHigh.
This object value is only effective when the corresponding instance
value of clcVlanMacLimitHigh is not set to 0.
The default value of this MIB object is the value of
clcMacLimitHighExceedActionDef."
::= { clcVlanMacLimitEntry 8 }
clcFdbVlanInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClcFdbVlanInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table contains VLAN information of forwarding tables in
the system."
::= { clcMacAddressLimitObjects 7 }
clcFdbVlanInfoEntry OBJECT-TYPE
SYNTAX ClcFdbVlanInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry contains the information of a VLAN in a specific
forwarding table. Each forwarding table will be identified by
the entity physical index."
INDEX { entPhysicalIndex, clcVlanMacLimitIndex }
::= { clcFdbVlanInfoTable 1 }
ClcFdbVlanInfoEntry ::= SEQUENCE {
clcFdbVlanMacUsage Gauge
}
clcFdbVlanMacUsage OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The usage of the MAC addresses in the specific forwarding
table for this VLAN. It indicates the number of MAC
addresses in this VLAN for a forwarding table."
::= { clcFdbVlanInfoEntry 1 }
clcMacLimitInterval OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the interval at which forwarding table
is monitored."
::= { clcMacAddressLimitObjects 8 }
clcMacLimitHighDefault OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The global default value for high threshold limit number of
MAC addresses in the system.
The value of clcMacLimitHighDefault must be greater
than the value of clcMaxMacLimitDefault."
::= { clcMacAddressLimitObjects 9 }
clcMacLimitHighExceedActionDef OBJECT-TYPE
SYNTAX MacLimitExceededAction
-- Rsyntax INTEGER {
-- warning(1),
-- limit(2),
-- limitNoFlood(3),
-- shutdown(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The global default action to be taken by the system
when the number of MAC addresses in the forwarding
table has exceeded the high threshold number of MAC address
limit for a VLAN or for a interface or for interface-VLAN pair."
::= { clcMacAddressLimitObjects 10 }
clcMacLimitHighNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The MIB object controls generation of SNMP notification
for Vlan MAC Limit feature.
When this object is 'true', generation of
clcVlanMacLimitHighNotif is enabled. When this object is
'false', generation of clcVlanMacLimitHighNotif is disabled."
::= { clcMacAddressLimitObjects 11 }
clcUnicastFloodTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClcUnicastFloodEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains information about the unicast flooding
on the system. The number of entries is determined by the
number of interfaces in the system that can support the
unicast flooding feature. Only L2 interfaces can support
unicast flooding."
::= { clcUnicastFloodObjects 1 }
clcUnicastFloodEntry OBJECT-TYPE
SYNTAX ClcUnicastFloodEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry contains the information about the unicast flooding
for a particular interface."
INDEX { ifIndex }
::= { clcUnicastFloodTable 1 }
ClcUnicastFloodEntry ::= SEQUENCE {
clcUnicastFloodAdminEnable TruthValue,
clcUnicastFloodOperEnable TruthValue
}
clcUnicastFloodAdminEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates whether the configuration of the unicast
flooding is enabled or disabled on a particular interface. If
this object is 'true', then the unicast flooding has been
configured to enabled. If this object is 'false', then the
unicast flooding has been configured to disabled."
::= { clcUnicastFloodEntry 1 }
clcUnicastFloodOperEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the operational status of the unicast
flooding on an interface, whether it is enabled or not. If
this object is 'true', then the interface is unicast flooding.
If this object is 'false', then the interface is not unicast
flooding."
::= { clcUnicastFloodEntry 2 }
clcIfMacLimitTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClcIfMacLimitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table contains information on Interface MAC address limit
feature for each interface capable of this feature."
::= { clcIfMacAddressLimitObjects 1 }
clcIfMacLimitEntry OBJECT-TYPE
SYNTAX ClcIfMacLimitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry contains Interface MAC address limit feature
configuration for the Interface."
INDEX { clcIfMacLimitIfIndex }
::= { clcIfMacLimitTable 1 }
ClcIfMacLimitEntry ::= SEQUENCE {
clcIfMacLimitIfIndex InterfaceIndex,
clcIfMacLimitEnable TruthValue,
clcIfMacLimitGlobalConfig OCTET STRING,
clcIfMacLimitLow Gauge,
clcIfMacLimitLowExceedAction MacLimitExceededAction,
clcIfMacLimitHigh Gauge,
clcIfMacLimitHighExceedAction MacLimitExceededAction,
clcIfMacLimitStatus RowStatus
}
clcIfMacLimitIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
-- Rsyntax INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The value of ifIndex for the configuration of MAC address limit
function on an interface."
::= { clcIfMacLimitEntry 1 }
clcIfMacLimitEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates whether the Mac Limit feature is
enabled on this interface or not."
DEFVAL { false }
::= { clcIfMacLimitEntry 2 }
clcIfMacLimitGlobalConfig OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- ifMacLimitLow(0)
-- ifLimitLowExceededAction(1)
-- ifMacLimitHigh(2)
-- ifLimitHighExceededAction(3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates whether the configurations for this
interface are based on the corresponding global default
configurations or not.
ifMacLimitLow(0) : indicates that the value of
clcIfMacLimitLow is based on the value of
clcMaxMacLimitDefault if this bit is set.
ifLimitLowExceededAction(1) : indicates that the value of
clcIfMacLimitLowExceedAction is based on the
value of clcMacLimitExceededActionDefault if this
bit is set.
ifMacLimitHigh(2) : indicates that the value of
clcIfMacLimitHigh is based on the value of
clcMacLimitHighDefault if this bit is set.
ifLimitHighExceededAction(3) : indicates that the value of
clcIfMacLimitHighExceedAction is based on the
value of clcMacLimitHighExceedActionDef if this
bit is set."
::= { clcIfMacLimitEntry 3 }
clcIfMacLimitLow OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The lower threshold limit for the number of MAC addresses
entries on this interface.
When the instance value of this object is set to 0, no lower
threshold limit will be applied for this Vlan and the
corresponding instance value of clcIfMacLimitLowExceedAction
of the same row has no effect.
The default value of this MIB object is the value of
clcMaxMacLimitDefault."
::= { clcIfMacLimitEntry 4 }
clcIfMacLimitLowExceedAction OBJECT-TYPE
SYNTAX MacLimitExceededAction
-- Rsyntax INTEGER {
-- warning(1),
-- limit(2),
-- limitNoFlood(3),
-- shutdown(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to be taken by the system for this interface while the
number of MAC addresses has exceeded the value of
clcMaxIfMacLimitLow.
This object value is only effective when the corresponding instance
value of clcIfMacLimitLow is not set to 0.
The default value of this MIB object is the value of
clcMacLimitExceededActionDefault."
::= { clcIfMacLimitEntry 5 }
clcIfMacLimitHigh OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The higher threshold limit for the number of MAC addresses
entries on this interface. The instance value of this
clcIfMacLimitHigh must be greater than the instance value
of the clcIfMacLimitLow of the same row, only when the
value is not zero.
When the instance value of this object is set to 0, no higher
threshold limit will be applied for this Vlan and the
corresponding instance value of clcIfMacLimitHighExceedAction
of the same row has no effect.
The default value of this MIB object is the value of
clcMacLimitHighDefault."
::= { clcIfMacLimitEntry 6 }
clcIfMacLimitHighExceedAction OBJECT-TYPE
SYNTAX MacLimitExceededAction
-- Rsyntax INTEGER {
-- warning(1),
-- limit(2),
-- limitNoFlood(3),
-- shutdown(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to be taken by the system for this interface while the
number of MAC addresses has exceeded the value of
clcIfMacLimitHigh.
This object value is only effective when the corresponding instance
value of clcIfMacLimitHigh is not set to 0.
The default value of this MIB object is the value of
clcMacLimitHighExceedActionDef."
::= { clcIfMacLimitEntry 7 }
clcIfMacLimitStatus 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 a conceptual row entry that allows to add
or delete entries to or from the clcIfMacLimitTable.
1. When creating an entry in this table 'createAndGo'
method is used and the value of this object is set to
'active'. Deactivation of an 'active' entry is not
allowed.
2. When deleting an entry in this table 'destroy' method
is used.
The value of clcIfMacLimitEnable , clcIfMacLimitLow,
clcIfMacLimitLowExceedAction, clcIfMacLimitHigh and
clcIfMacLimitHighExceedAction object can be modified when the
value of this RowStatus object is 'active'."
::= { clcIfMacLimitEntry 8 }
clcFdbIfInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClcFdbIfInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table contains interface information of forwarding tables in
the system."
::= { clcIfMacAddressLimitObjects 2 }
clcFdbIfInfoEntry OBJECT-TYPE
SYNTAX ClcFdbIfInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry contains the information of a interface in a specific
forwarding table. Each forwarding table will be identified by
the entity physical index."
INDEX { entPhysicalIndex, clcIfMacLimitIfIndex }
::= { clcFdbIfInfoTable 1 }
ClcFdbIfInfoEntry ::= SEQUENCE {
clcFdbIfMacUsage Gauge
}
clcFdbIfMacUsage OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The usage of the MAC addresses in the specific forwarding
table for this interface. It indicates the number of MAC
addresses learnt or configured on this interface for a forwarding
table."
::= { clcFdbIfInfoEntry 1 }
clcIfMacLimitLowNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether the generation of a specified
notification for interface MAC Limit feature is
enabled or not.
When this object is 'true', generation of
clcIfMacLimitLowNotif is enabled. When this object is
'false', generation of clcIfMacLimitLowNotif is disabled."
::= { clcIfMacAddressLimitObjects 3 }
clcIfMacLimitHighNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether the generation of a specified
notification for interface MAC Limit feature is
enabled or not.
When this object is 'true', generation of
clcIfMacLimitHighNotif is enabled. When this object is
'false', generation of clcIfMacLimitHighNotif is disabled."
::= { clcIfMacAddressLimitObjects 4 }
clcIfVlanMacLimitTable OBJECT-TYPE
SYNTAX SEQUENCE OF ClcIfVlanMacLimitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table contains information on Interface Vlan MAC address limit
feature for each interface-VLAN pair capable of this feature."
::= { clcIfVlanMacAddressLimitObjects 1 }
clcIfVlanMacLimitEntry OBJECT-TYPE
SYNTAX ClcIfVlanMacLimitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry contains Interface Vlan MAC address limit feature
configuration for the Interface and Vlan."
INDEX { clcIfVlanMacLimitIfIndex, clcIfVlanMacLimitVlanIndex }
::= { clcIfVlanMacLimitTable 1 }
ClcIfVlanMacLimitEntry ::= SEQUENCE {
clcIfVlanMacLimitIfIndex InterfaceIndex,
clcIfVlanMacLimitVlanIndex VlanIndex,
clcIfVlanMacLimitEnable TruthValue,
clcIfVlanMacLimitGlobalConfig OCTET STRING,
clcIfVlanMacLimitLow Gauge,
clcIfVlanMacLimitLowExceedAction MacLimitExceededAction,
clcIfVlanMacLimitHigh Gauge,
clcIfVlanMacLimitHiExceedAction MacLimitExceededAction,
clcIfVlanMacLimitStatus RowStatus
}
clcIfVlanMacLimitIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
-- Rsyntax INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The value of ifIndex for the configuration of MAC address limit
function on an interface."
::= { clcIfVlanMacLimitEntry 1 }
clcIfVlanMacLimitVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
-- Rsyntax Gauge
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The VLAN ID for each VLAN's configuration of MAC
address limit function in the system."
::= { clcIfVlanMacLimitEntry 2 }
clcIfVlanMacLimitEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates whether the Mac Limit feature is
enabled on this interface-Vlan pair or not."
DEFVAL { false }
::= { clcIfVlanMacLimitEntry 3 }
clcIfVlanMacLimitGlobalConfig OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- ifVlanMacLimitLow(0)
-- ifVlanLimitLowExceededAction(1)
-- ifVlanMacLimitHigh(2)
-- ifVlanLimitHighExceededAction(3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates whether the configurations for this
interface are based on the corresponding global default
configurations or not.
ifVlanMacLimitLow(0) : indicates that the value of
clcIfVlanMacLimitLow is based on the value of
clcMaxMacLimitDefault if this bit is set.
ifVlanLimitLowExceededAction(1) : indicates that the value of
clcIfVlanMacLimitLowExceedAction is based on the
value of clcMacLimitExceededActionDefault if this
bit is set.
ifVlanMacLimitHigh(2) : indicates that the value of
clcIfVlanMacLimitHigh is based on the value of
clcMacLimitHighDefault if this bit is set.
ifVlanLimitHighExceededAction(3) : indicates that the value of
clcIfVlanMacLimitHiExceedAction is based on the
value of clcMacLimitHighExceedActionDef if this
bit is set."
::= { clcIfVlanMacLimitEntry 4 }
clcIfVlanMacLimitLow OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The lower threshold limit for the number of MAC addresses entries
on this interface and Vlan.
When the instance value of this object is set to 0, no lower
threshold limit will be applied for this Vlan and the
corresponding instance value of clcIfVlanMacLimitLowExceedAction
of the same row has no effect.
The default value of this MIB object is the value of
clcMaxMacLimitDefault."
::= { clcIfVlanMacLimitEntry 5 }
clcIfVlanMacLimitLowExceedAction OBJECT-TYPE
SYNTAX MacLimitExceededAction
-- Rsyntax INTEGER {
-- warning(1),
-- limit(2),
-- limitNoFlood(3),
-- shutdown(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to be taken by the system for this interface Vlan while
the number of MAC addresses has exceeded the value of
clcIfVlanMacLimitLow.
This object value is only effective when the corresponding instance
value of clcIfVlanMacLimitLow is not set to 0.
The default value of this MIB object is the value of
clcMacLimitExceededActionDefault."
::= { clcIfVlanMacLimitEntry 6 }
clcIfVlanMacLimitHigh OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The higher threshold limit for the number of MAC addresses entries
on this interface and Vlan. The instance value of this
clcIfVlanMacLimitHigh must be greater than the instance value
of the clcIfVlanMacLimitLow of the same row, only when the
value is not zero.
When the instance value of this object is set to 0, no higher
threshold limit will be applied for this Vlan and the
corresponding instance value of clcIfVlanMacLimitHiExceedAction
of the same row has no effect.