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
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
|
CISCOSB-rlInterfaces DEFINITIONS ::= BEGIN
-- Title: CISCOSB Switch Interfaces Private
-- Version: 7.45
-- Date: 07 May 2006
-- 30-Nov-2004 Added type AutoNegCapabilitiesBits
-- 30-Nov-2004 Added fields swIfAdminSpeedDuplexAutoNegotiationLocalCapabilities
-- swIfOperSpeedDuplexAutoNegotiationLocalCapabilities
-- swIfSpeedDuplexNegotiationRemoteCapabilities to swIfEntry
-- 22-Nov-2005 Obsoleted field swIfPhysAddressType
-- 22-Nov-2005 Added rlIfBaseMACAddressPerIfIndex
-- 30-Oct-2005 Added swIfExtTable
-- 30-Nov-2005 Added fields swIfAdminComboMode
-- swIfOperComboMode swIfExtTable to swIfEntry
-- 05-Dec-2005 Added rlFlowControlCascadeMode and rlFlowControlCascadeType
-- 23-Feb-2005 Added rlFlowControlRxPerSystem
-- 07-May-2006 Added rlCascadePortProtectionAction
-- 04-Jun-2006 Added multiple-auth enum to swIfHostMode
-- 11-Jun-2008 Added rlManagementIfIndex
-- 06-Jun-2009 Added rlIfClearPortMacAddresses
-- 30-May-2011 Added MODULE-IDENTITY
IMPORTS
switch001, rlIfInterfaces FROM CISCOSB-MIB
ifIndex, InterfaceIndex, InterfaceIndexOrZero FROM IF-MIB
PortList FROM Q-BRIDGE-MIB
Unsigned32, Integer32, Counter32,
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
RowStatus, TruthValue, TEXTUAL-CONVENTION,
DisplayString FROM SNMPv2-TC;
swInterfaces MODULE-IDENTITY
LAST-UPDATED "202105190000Z" -- April 1, 2013
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for Switch Interfaces."
REVISION "202105190000Z" -- April 1, 2013
DESCRIPTION
"Added MODULE-IDENTITY"
::= { switch001 43 }
-- These bits can be set in any combination (except unknown)
-- for field swIfAdminSpeedDuplexAutoNegotiationLocalCapabilities
-- and will take affect when field swIfSpeedDuplexAutoNegotiation
-- will be set to enabled.
-- In addition these fields can be read for operative values of
-- auto negotiation capabilities
AutoNegCapabilitiesBits ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Auto negotiation capabilities bits."
SYNTAX BITS {
default(0),
unknown(1),
tenHalf(2),
tenFull(3),
fastHalf(4),
fastFull(5),
gigaHalf(6),
gigaFull(7),
tenGigaFull(8),
fiveGigaFull(9),
twoPointFiveGigaFull(10),
twentyFiveGigaFull(11),
fortyGigaFull(12),
fiftyGigaFull(13),
oneHundredGigaFull(14)
}
--
-- swTable
--
swIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Switch media specific information and configuration of the device
interfaces."
::= { swInterfaces 1 }
swIfEntry OBJECT-TYPE
SYNTAX SwIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines the contents of each line in the swIfTable table."
INDEX { swIfIndex }
::= { swIfTable 1 }
SwIfEntry ::= SEQUENCE {
swIfIndex INTEGER,
swIfPhysAddressType INTEGER,
swIfDuplexAdminMode INTEGER,
swIfDuplexOperMode INTEGER,
swIfBackPressureMode INTEGER,
swIfTaggedMode INTEGER,
swIfTransceiverType INTEGER,
swIfLockAdminStatus INTEGER,
swIfLockOperStatus INTEGER,
swIfType INTEGER,
swIfDefaultTag INTEGER,
swIfDefaultPriority INTEGER,
swIfStatus RowStatus,
swIfFlowControlMode INTEGER,
swIfSpeedAdminMode INTEGER,
swIfSpeedDuplexAutoNegotiation INTEGER,
swIfOperFlowControlMode INTEGER,
swIfOperSpeedDuplexAutoNegotiation INTEGER,
swIfOperBackPressureMode INTEGER,
swIfAdminLockAction INTEGER,
swIfOperLockAction INTEGER,
swIfAdminLockTrapEnable TruthValue,
swIfOperLockTrapEnable TruthValue,
swIfOperSuspendedStatus TruthValue,
swIfLockOperTrapCount INTEGER,
swIfLockAdminTrapFrequency INTEGER,
swIfReActivate TruthValue,
swIfAdminMdix INTEGER,
swIfOperMdix INTEGER,
swIfHostMode INTEGER,
swIfSingleHostViolationAdminAction INTEGER,
swIfSingleHostViolationOperAction INTEGER,
swIfSingleHostViolationAdminTrapEnable TruthValue,
swIfSingleHostViolationOperTrapEnable TruthValue,
swIfSingleHostViolationOperTrapCount INTEGER,
swIfSingleHostViolationAdminTrapFrequency INTEGER,
swIfLockLimitationMode INTEGER,
swIfLockMaxMacAddresses INTEGER,
swIfLockMacAddressesCount INTEGER,
swIfAdminSpeedDuplexAutoNegotiationLocalCapabilities AutoNegCapabilitiesBits,
swIfOperSpeedDuplexAutoNegotiationLocalCapabilities AutoNegCapabilitiesBits,
swIfSpeedDuplexNegotiationRemoteCapabilities AutoNegCapabilitiesBits,
swIfAdminComboMode INTEGER,
swIfOperComboMode INTEGER,
swIfAutoNegotiationMasterSlavePreference INTEGER,
swIfPortCapabilities AutoNegCapabilitiesBits
}
swIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to the swIfTable. The interface defined by a
particular value of this index is the same interface as
identified by the same value of ifIndex (MIB II)."
::= { swIfEntry 1 }
swIfPhysAddressType OBJECT-TYPE
SYNTAX INTEGER {
default(1),
reserve(2)
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
" This variable indicates whether the physical address assigned to this
interface should be the default one or be chosen from the set of
reserved physical addresses of the device."
DEFVAL { default }
::= { swIfEntry 2 }
swIfDuplexAdminMode OBJECT-TYPE
SYNTAX INTEGER {
none(1),
half(2),
full(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable specifies whether this interface should operate in
half duplex or full duplex mode. This specification will take effect
only if swIfSpeedDuplexAutoNegotiation is disabled.
A value of 'none' is returned if a value of the variable
hasn't been set."
DEFVAL { none }
::= { swIfEntry 3 }
swIfDuplexOperMode OBJECT-TYPE
SYNTAX INTEGER {
half(1),
full(2),
hybrid(3),
unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This variable indicates whether this interface operates in half
duplex or full duplex mode.
This variable can have the values hybrid or unknown
only for a trunk.
unknown - only if trunk operative status is not present."
::= { swIfEntry 4 }
swIfBackPressureMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether this interface activates back pressure
when congested."
::= { swIfEntry 5 }
swIfTaggedMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If enable, this interface operates in tagged mode, i.e all frames sent
out through this interface will have the 802.1Q header.
If disabled the frames will not be tagged."
DEFVAL { disable }
::= { swIfEntry 6 }
swIfTransceiverType OBJECT-TYPE
SYNTAX INTEGER {
regular(1),
fiberOptics(2),
comboRegular(3),
comboFiberOptics(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This variable indicates the transceiver type of this interface."
::= { swIfEntry 7 }
swIfLockAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
locked(1),
unlocked(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether this interface should operate in locked
or unlocked mode.
In unlocked mode the device learns all MAC addresses from this port and
forwards all frames arrived at this port. In locked mode no new MAC
addresses are learned and only frames with known source MAC
addresses are forwarded."
DEFVAL { unlocked }
::= { swIfEntry 8 }
swIfLockOperStatus OBJECT-TYPE
SYNTAX INTEGER {
locked(1),
unlocked(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable defines whether this interface operates in locked
or unlocked mode. It is locked in each of the following two cases:
1) if swLockAdminStatus is set to locked
2) no IP/IPX interface is defined over this interface and no
VLAN contains this interface.
In unlocked mode the device learns all MAC addresses from this port and
forwards all frames arrived at this port. In locked mode no new MAC
addresses are learned and only frames with known source MAC
addresses are forwarded."
::= { swIfEntry 9 }
swIfType OBJECT-TYPE
SYNTAX INTEGER {
eth10M(1),
eth100M(2),
eth1000M(3),
eth2500M(4),
eth5G(5),
eth10G(6),
eth20G(7),
eth40G(8),
eth100G(9),
eth25G(10),
eth50G(11),
unknown(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This variable specifies the type of interface."
::= { swIfEntry 10 }
swIfDefaultTag OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable specifies the default VLAN tag which will be attached
to outgoing frames if swIfTaggedMode for this interface is enabled."
DEFVAL { 0 }
::= { swIfEntry 11 }
swIfDefaultPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This variable specifies the default port priority."
DEFVAL { 0 }
::= { swIfEntry 12 }
swIfStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete an entry from this table."
::= { swIfEntry 13 }
swIfFlowControlMode OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2),
autoNegotiation(3),
enabledRx(4),
enabledTx(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"on - Flow control will be enabled on this interface according to the
IEEE 802.3x standard.
off - Flow control is disabled.
autoNegotiation - Flow control will be enabled or disabled on this
interface. If enabled, it will operate as specified
by the IEEE 802.3x standard.
enabledRx - Flow control will be enabled on this interface for
recieved frames.
enabledTx - Flow control will be enabled on this interface for
transmitted frames.
An attempt to set this object to 'enabledRx(4)' or 'enabledTx(5)'
will fail on interfaces that do not support operation
at greater than 100 Mb/s.
In any case, flow control can work only if swIfDuplexOperMode is
full."
::= { swIfEntry 14}
swIfSpeedAdminMode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable specifies the required speed of this interface in bits
per second. This specification will take effect only if
swIfSpeedDuplexAutoNegotiation is disabled.
A value of 10 is returned for 10G.
A value of 0 is returned if the value of the variable
hasn't been set."
DEFVAL { 0 }
::= { swIfEntry 15 }
swIfSpeedDuplexAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If enabled the speed and duplex mode will be set by the device through
the autonegotiation process. Otherwise these characteristics will be
set according to the values of swIfSpeedAdminMode and
swIfSpeedDuplexAutoNegotiation."
::= { swIfEntry 16 }
swIfOperFlowControlMode OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2),
enabledRx(3),
enabledTx(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"on - Flow control is enabled on this interface according to the
IEEE 802.3x standard.
off - Flow control is disabled.
enabledRx - Flow control is enabled on this interface for
recieved frames.
enabledTx - Flow control is enabled on this interface for
transmitted frames."
::= { swIfEntry 17}
swIfOperSpeedDuplexAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2),
hybrid(3),
unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If enabled the speed and duplex are determined by the device through
the autonegotiation process.
If disabled these characteristics are determined according to the values
of swIfSpeedAdminMode and swIfDuplexAdminMode.
hybrid - only for a trunk.
unknown - only for ports that there operative status is not present."
::= { swIfEntry 18 }
swIfOperBackPressureMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
hybrid(3),
unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the operative back pressure mode of
this interface."
::= { swIfEntry 19 }
swIfAdminLockAction OBJECT-TYPE
SYNTAX INTEGER {
discard(1),
forwardNormal(2),
discardDisable(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates which action this interface should be taken
in locked mode and therefore relevant only in locked mode.
Possible actions:
discard(1) - every packet is dropped.
forwardNormal(2) - every packet is forwarded according to the DST address.
discardDisable(3) - drops the first packet and suspends the port."
--DEFVAL { discard } changed to product specific
::= { swIfEntry 20 }
swIfOperLockAction OBJECT-TYPE
SYNTAX INTEGER {
discard(1),
forwardNormal (2),
discardDisable(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates which action this interface actually takes in
locked mode and therefore relevant only in locked mode.
Possible actions:
discard(1) - every packet is dropped.
forwardNormal(2) - every packet is forwarded according to the DST address.
discardDisable(3) - drops the first packet and suspends the port."
::= { swIfEntry 21 }
swIfAdminLockTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether to create a SNMP trap in the locked mode."
--DEFVAL { false } changed to product specific
::= { swIfEntry 22 }
swIfOperLockTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates whether a SNMP trap can be created in the
locked mode."
::= { swIfEntry 23 }
swIfOperSuspendedStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates whether the port is suspended or not due to some
feature. After reboot this value is false"
::= { swIfEntry 24 }
swIfLockOperTrapCount OBJECT-TYPE
SYNTAX INTEGER (0 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the trap counter status per ifIndex
(i.e. number of received packets since the last trap sent due to a
packet which was received on this ifIndex). It's relevant only in locked
mode while trap is enabled."
::= { swIfEntry 25 }
swIfLockAdminTrapFrequency OBJECT-TYPE
SYNTAX INTEGER (1 .. 1000000)
-- UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates the minimal frequency (in seconds) of sending
a trap per ifIndex. It's relevant only in locked mode and in trap
enabled."
--DEFVAL { 10 } changed to product specific
::= { swIfEntry 26 }
swIfReActivate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable reactivates (enables) an ifIndex (which was suspended)"
DEFVAL { false }
::= { swIfEntry 27 }
swIfAdminMdix OBJECT-TYPE
SYNTAX INTEGER {
cross(1),
normal(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration is on a physical port, not include trunks.
cross - The interface should force crossover.
normal - The interface should not force crossover.
auto - Auto mdix is enabled on the interface."
::= { swIfEntry 28 }
swIfOperMdix OBJECT-TYPE
SYNTAX INTEGER {
cross(1),
normal(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cross - The interface is in crossover mode.
normal - The interface is not in crossover mode.
unknown - Only for port that its operative status is not present
or down."
::= { swIfEntry 29 }
swIfHostMode OBJECT-TYPE
SYNTAX INTEGER {
single(1),
multiple(2),
multiple-auth(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates the 802.1X host mode of a port. Relevant when the port's 802.1X control is auto.
In addtion multiple-auth was added."
DEFVAL { single }
::= { swIfEntry 30 }
swIfSingleHostViolationAdminAction OBJECT-TYPE
SYNTAX INTEGER {
discard(1),
forwardNormal (2),
discardDisable(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates which action this interface should take in single authorized.
Possible actions:
discard - every packet is dropped.
forwardNormal - every packet is forwarded according to the DST address.
discardDisable - drops the first packet and suspends the port."
DEFVAL { discard }
::= { swIfEntry 31 }
swIfSingleHostViolationOperAction OBJECT-TYPE
SYNTAX INTEGER {
discard(1),
forwardNormal (2),
discardDisable(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates which action this interface actually takes in single authorized.
Possible actions:
discard(1) - every packet is dropped.
forwardNormal(2) - every packet is forwarded according to the DST address.
discardDisable(3) - drops the first packet and suspends the port."
DEFVAL { discard }
::= { swIfEntry 32 }
swIfSingleHostViolationAdminTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether to create a SNMP trap in single authorized."
DEFVAL { false }
::= { swIfEntry 33 }
swIfSingleHostViolationOperTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates whether a SNMP trap can be created in the single authorized."
::= { swIfEntry 34 }
swIfSingleHostViolationOperTrapCount OBJECT-TYPE
SYNTAX INTEGER (0 .. 2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the trap counter status per ifIndex
(i.e. number of received packets since the last trap sent due to a packet
which was received on this ifIndex). It's relevant only in single authorized
while trap is enabled."
::= { swIfEntry 35 }
swIfSingleHostViolationAdminTrapFrequency OBJECT-TYPE
SYNTAX INTEGER (0 .. 1000000)
-- UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates the minimal frequency (in seconds) of sending a
trap per ifIndex. It's relevant only in single authorized and in trap enabled.
A value of 0 means that trap is disabled."
DEFVAL { 0 }
::= { swIfEntry 36 }
swIfLockLimitationMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
dynamic(2),
secure-permanent(3),
secure-delete-on-reset(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates what is the learning limitation on the locked interface.
Possible values:
disabled - learning is stopped. The dynamic addresses associated with the
port are not aged out or relearned on other port as long as the port is
locked.
dynamic - dynamic addresses can be learned up to the maximum dynamic addresses
allowed on the port. Relearning and aging of the dynamic addresses are
enabled. The learned addresses aren't kept after reset.
secure-permanent - secure addresses can be learned up to the maximum addresses
allowed on the port. Relearning and aging of addresses are disabled.
The learned addresses are kept after reset.
secure-delete-on-reset - secure addresses can be learned up to the maximum addresses
allowed on the port. Relearning and aging of addresses are disabled.
The learned addresses are not kept after reset."
--DEFVAL { disabled } changed to product specific
::= { swIfEntry 37 }
swIfLockMaxMacAddresses OBJECT-TYPE
SYNTAX INTEGER (0 .. 2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable defines the maximum number of dynamic addresses that
can be asscoiated with the locked interface. It isn't relevant in
disabled limitation mode."
DEFVAL { 1 }
::= { swIfEntry 38 }
swIfLockMacAddressesCount OBJECT-TYPE
SYNTAX INTEGER (0 .. 2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the actual number of dynamic addresses that can
be asscoiated with the locked interface. It isn't relevant in disabled
limitation mode."
::= { swIfEntry 39 }
swIfAdminSpeedDuplexAutoNegotiationLocalCapabilities OBJECT-TYPE
SYNTAX AutoNegCapabilitiesBits
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative auto negotiation capabilities of the interface that can be advertised when
swIfSpeedDuplexAutoNegotiation is enabled.
default bit means advertise all the port's capabilities
according to its type."
DEFVAL { {default} }
::= { swIfEntry 40 }
swIfOperSpeedDuplexAutoNegotiationLocalCapabilities OBJECT-TYPE
SYNTAX AutoNegCapabilitiesBits
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operative auto negotiation capabilities of the remote link.
unknown bit means that port operative status is not up."
::= { swIfEntry 41 }
swIfSpeedDuplexNegotiationRemoteCapabilities OBJECT-TYPE
SYNTAX AutoNegCapabilitiesBits
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operative auto negotiation capabilities of the remote link.
unknown bit means that port operative status is not up,
or auto negotiation process not complete,
or remote link is not auto negotiation able."
::= { swIfEntry 42 }
swIfAdminComboMode OBJECT-TYPE
SYNTAX INTEGER {
force-fiber(1),
force-copper(2),
prefer-fiber(3),
prefer-copper(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable specifies the administrative mode of a combo Ethernet interface."
DEFVAL { prefer-fiber }
::= { swIfEntry 43 }
swIfOperComboMode OBJECT-TYPE
SYNTAX INTEGER {
fiber(1),
copper(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable specifies the operative mode of a combo Ethernet interface."
::= { swIfEntry 44 }
swIfAutoNegotiationMasterSlavePreference OBJECT-TYPE
SYNTAX INTEGER {
preferMaster(1),
preferSlave(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable specifies the administrative mode of the Maste-Slave preference in auto negotiation."
-- DEFVAL - according to MTSC parameter
::= { swIfEntry 45 }
swIfPortCapabilities OBJECT-TYPE
SYNTAX AutoNegCapabilitiesBits
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns the port capabilities."
::= { swIfEntry 46 }
--
-- swIfMibVersion
--
swIfMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The swIfTable Mib's version, the current version is 3."
::= { swInterfaces 2 }
--
-- swIfPortLockSupport
--
swIfPortLockSupport OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
notSupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicates if the locked port package is supported."
::= { swInterfaces 3 }
--
-- swIfPortLockActionSupport
--
swIfPortLockActionSupport OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicates which port lock actions are supported:
(bit 0 is the most significant bit)
bit 0 - discard
bit 1 - forwardNormal
bit 2 - discardDisable"
::= { swInterfaces 4 }
--
-- swIfPortLockTrapSupport
--
swIfPortLockTrapSupport OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicates with which port lock actions the trap option is supported
(e.g. discard indicates that trap is supported only when the portlock
action is discard):
(bit 0 is the most significant bit)
bit 0 - discard
bit 1 - forwardNormal
bit 2 - discardDisable"
::= { swInterfaces 5 }
--
-- swIfPortLockIfRangeTable
--
swIfPortLockIfRangeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwIfPortLockIfRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port lock interfaces range configuration"
::= { swInterfaces 6 }
swIfPortLockIfRangeEntry OBJECT-TYPE
SYNTAX SwIfPortLockIfRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines the contents of each line in the swIfPortLockIfRangeTable table."
INDEX { swIfPortLockIfRangeIndex }
::= { swIfPortLockIfRangeTable 1 }
SwIfPortLockIfRangeEntry ::= SEQUENCE {
swIfPortLockIfRangeIndex INTEGER,
swIfPortLockIfRange PortList,
swIfPortLockIfRangeLockStatus INTEGER,
swIfPortLockIfRangeAction INTEGER,
swIfPortLockIfRangeTrapEn TruthValue,
swIfPortLockIfRangeTrapFreq INTEGER
}
swIfPortLockIfRangeIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to the swIfPortLockIfRangeTable."
::= { swIfPortLockIfRangeEntry 1 }
swIfPortLockIfRange OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The set of interfaces to which the port lock parameters should be configured"
::= { swIfPortLockIfRangeEntry 2 }
swIfPortLockIfRangeLockStatus OBJECT-TYPE
SYNTAX INTEGER {
locked(1),
unlocked(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether the interfaces range should operate in locked
or unlocked mode.
In unlocked mode the device learns all MAC addresses from these interfaces and
forwards all frames arrived at these interfaces. In locked mode no new MAC
addresses are learned and only frames with known source MAC
addresses are forwarded."
DEFVAL { unlocked }
::= { swIfPortLockIfRangeEntry 3 }
swIfPortLockIfRangeAction OBJECT-TYPE
SYNTAX INTEGER {
discard(1),
forwardNormal(2),
discardDisable(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates which action for these interfaces should be take
in locked mode and therefore relevant only in locked mode.
Possible actions:
discard(1) - every packet is dropped.
forwardNormal(2) - every packet is forwarded according to the DST address.
discardDisable(3) - drops the first packet and suspends the port."
--DEFVAL { discard } changed to product specific
::= { swIfPortLockIfRangeEntry 4 }
swIfPortLockIfRangeTrapEn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether to create a SNMP trap in the locked mode."
--DEFVAL { false } changed to product specific
::= { swIfPortLockIfRangeEntry 5 }
swIfPortLockIfRangeTrapFreq OBJECT-TYPE
SYNTAX INTEGER (1 .. 1000000)
-- UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates the minimal frequency (in seconds) of sending
a trap for these interfaces. It's relevant only in locked mode and in trap
enabled."
--DEFVAL { 10 } changed to product specific
::= { swIfPortLockIfRangeEntry 6 }
--
-- swIfExtTable
--
swIfExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwIfExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Display information and configuration of the device interfaces."
::= { swInterfaces 7 }
swIfExtEntry OBJECT-TYPE
SYNTAX SwIfExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines the contents of each row in the swIfExtTable."
INDEX { ifIndex }
::= { swIfExtTable 1 }
SwIfExtEntry ::= SEQUENCE {
swIfExtSFPSpeed INTEGER
}
swIfExtSFPSpeed OBJECT-TYPE
SYNTAX INTEGER {
default(1),
eth100M(2),
eth1G(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure speed of an SFP Ethernet interface."
DEFVAL { default }
::= { swIfExtEntry 1 }
--
-- rlIfInterfaces
--
rlIfMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 1."
::= { rlIfInterfaces 1 }
rlIfNumOfPhPorts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of physical ports on this device
(including all stack units)"
::= { rlIfInterfaces 2 }
rlIfMapOfOnPhPorts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each bit in this octet string indicates that the correspondig port's
ifOperStatus is ON if set.
The mapping of port number to bits in this octet string is as follows:
The port with the L2 interface number 1 is mapped to the least
significant bit of the 1st octet, the port with L2 ifNumber 2 to the
next significant bit in the 1st octet, port 8 to the most-significant
bit of the in the 1st octet, port 9 to the least
significant bit of the 2nd octet, etc. and in general,
port n to bit corresponding to 2**((n mod 8) -1) in byte n/8 + 1"
::= { rlIfInterfaces 3 }
rlIfClearPortMibCounters OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each bit that is set in this portList represent a port that
its mib counters should be reset."
::= { rlIfInterfaces 4 }
rlIfNumOfUserDefinedPorts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user defined ports on this device."
::= { rlIfInterfaces 5 }
rlIfFirstOutOfBandIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"First ifIndex of out-of-band port.
This scalar exists only the device has out of band ports."
::= { rlIfInterfaces 6 }
rlIfNumOfLoopbackPorts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of loopback ports on this device."
::= { rlIfInterfaces 7 }
rlIfFirstLoopbackIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"First ifIndex of loopback port.
This scalar will exists only if rlIfNumOfLoopbackPorts
is different from 0."
::= { rlIfInterfaces 8 }
rlIfExistingPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates which ports/trunks exist in the system.
It doesn't indicate which are present."
::= { rlIfInterfaces 9 }
rlIfBaseMACAddressPerIfIndex OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if the system will assign a unique MAC per Ethernet port or not."
::= { rlIfInterfaces 10 }
rlFlowControlCascadeMode OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"enable disable flow control on cascade ports"
::= { rlIfInterfaces 11 }
rlFlowControlCascadeType OBJECT-TYPE
SYNTAX INTEGER {
internalonly(1),
internalexternal(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"define which type of ports will be affected by flow control on cascade ports"
::= { rlIfInterfaces 12 }
rlFlowControlRxPerSystem OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"define if flow control RX is supported per system."
::= { rlIfInterfaces 13 }
rlCascadePortProtectionAction OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"As a result of this set all of the local cascade ports
will stop being consider unstable and will be force up."
::= { rlIfInterfaces 14 }
rlManagementIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify L2 bound management interface index in a single IP address system
when configurable management interface is supported."
::= { rlIfInterfaces 15 }
rlIfClearStackPortsCounters OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"As a result of this set all counters of
all external cascade ports will be cleared."
::= { rlIfInterfaces 16 }
rlIfClearPortMacAddresses OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"if port is non secure, its all dynamic MAC addresses are cleared.
if port is secure, its all secure MAC addresses which have learned or configured are cleared."
::= { rlIfInterfaces 17 }
rlIfCutThroughPacketLength OBJECT-TYPE
SYNTAX INTEGER (257 .. 16383)
MAX-ACCESS read-write
-- Obsolete
STATUS current
DESCRIPTION
"The default packet length that is assigned to a packet in the
Cut-Through mode."
DEFVAL { 1522 }
::= { rlIfInterfaces 18 }
rlIfCutPriorityZero OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 0."
DEFVAL { false }
::= { rlIfInterfaces 19 }
rlIfCutPriorityOne OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 1."
DEFVAL { false }
::= { rlIfInterfaces 20 }
rlIfCutPriorityTwo OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 2."
DEFVAL { false }
::= { rlIfInterfaces 21 }
rlIfCutPriorityThree OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 3."
DEFVAL { false }
::= { rlIfInterfaces 22 }
rlIfCutPriorityFour OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 4."
DEFVAL { false }
::= { rlIfInterfaces 23 }
rlIfCutPriorityFive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 5."
DEFVAL { false }
::= { rlIfInterfaces 24 }
rlIfCutPrioritySix OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 6."
DEFVAL { false }
::= { rlIfInterfaces 25 }
rlIfCutPrioritySeven OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-Through for priority 7."
DEFVAL { false }
::= { rlIfInterfaces 26 }
rlIfCutThroughTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIfCutThroughEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information and configuration of cut-through feature."
::= { rlIfInterfaces 27 }
rlIfCutThroughEntry OBJECT-TYPE
SYNTAX RlIfCutThroughEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines the contents of each line in the swIfTable table."
INDEX { swIfIndex }
::= { rlIfCutThroughTable 1 }
RlIfCutThroughEntry ::= SEQUENCE {
rlIfCutThroughPriorityEnable TruthValue,
rlIfCutThroughUntaggedEnable TruthValue,
rlIfCutThroughOperMode TruthValue
}
rlIfCutThroughPriorityEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-through for a priority for an interface."
DEFVAL { false }
::= { rlIfCutThroughEntry 1 }
rlIfCutThroughUntaggedEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable cut-through for untagged packets for an interface."
DEFVAL { false }
::= { rlIfCutThroughEntry 2 }
rlIfCutThroughOperMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operational mode of spesific cut-through interface."
::= { rlIfCutThroughEntry 3 }
rlCutThroughPacketLength OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default packet length that is assigned to a packet in the
Cut-Through mode."
::= { rlIfInterfaces 28 }
rlCutThroughPacketLengthAfterReset OBJECT-TYPE
SYNTAX INTEGER (257 .. 16383)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The default packet length that is assigned to a packet in the
Cut-Through mode after reset."
DEFVAL { 1522 }
::= { rlIfInterfaces 29 }
rlCutThroughEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cut-Through global enable mode."
::= { rlIfInterfaces 30 }
rlCutThroughEnableAfterReset OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cut-Through global enable mode after reset."
DEFVAL { false }
::= { rlIfInterfaces 31 }
rlFlowControlMode OBJECT-TYPE
SYNTAX INTEGER {
send-receive(1),
receive-only(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Define which mode will be enabled on flow control enabled ports.
The interfaces with enabled flow control will receive pause frames, but will not send flow control pause
frames
Send-receive: The interfaces with enabled flow control will receive and send pause frames.
Receive-only: The interfaces with enabled flow control will receive pause frames, but will not send flow
control pause frames."
::= { rlIfInterfaces 32 }
rlIfPortsNegotationTuning OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"indicates if to apply link negotiation tuning WA globally for all ports with PHY 3140."
::= { rlIfInterfaces 33 }
rlFlowControlPerSystem OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"define if flow control is enabled on all regular ports and trunk in the system or not."
::= { rlIfInterfaces 34 }
rlMacOperationTable OBJECT-TYPE
SYNTAX SEQUENCE OF MacOperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pefrom mac operation on given ifindex"
::= { swInterfaces 8 }
macOperationEntry OBJECT-TYPE
SYNTAX MacOperationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines mac operation "
INDEX { macOpifIndex }
::= { rlMacOperationTable 1 }
MacOperationEntry ::= SEQUENCE {
macOpifIndex INTEGER,
macOpType INTEGER
}
macOpifIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to the rlMacOperationTable. The interface defined by a
particular value of this index is the same interface as
identified by the same value of ifIndex (MIB II)."
::= { macOperationEntry 1 }
macOpType OBJECT-TYPE
SYNTAX INTEGER {
securePortDynamicToStatic(1),
securePortClearStatic(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This variable indicates what operation should be performed on the MAC
of the given interface."
::= { macOperationEntry 2 }
END
|