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
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
|
-- CISCO-PORT-SECURITY-MIB.my:
-- MIB support for the Port Security feature
--
-- May 2002, Nagarani Chandika
--
-- Copyright (c) 2002, 2003, 2004, 2005 by Cisco Systems, Inc.
-- All rights reserved.
CISCO-PORT-SECURITY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,
NOTIFICATION-TYPE, Integer32,
Counter32, Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
ifIndex, ifName
FROM IF-MIB
TruthValue, MacAddress, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
ciscoMgmt
FROM CISCO-SMI
vtpVlanName
FROM CISCO-VTP-MIB
VlanIndex
FROM Q-BRIDGE-MIB;
ciscoPortSecurityMIB MODULE-IDENTITY
LAST-UPDATED "200905080000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Services
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-lan-switch-snmp@cisco.com"
DESCRIPTION
"The MIB module for managing Cisco Port Security."
-- Revision History
REVISION "200905080000Z"
DESCRIPTION
"Update description of cpsIfMaxSecureMacAddr object."
REVISION "200505040000Z"
DESCRIPTION
"Obsolete cpsIfVlanTable and replace it with
cpsIfMultiVlanTable.
Add cpsExtInterfaceGroup1 and
cpsIfVlanSecureNotificationGroup."
REVISION "200503120000Z"
DESCRIPTION
"Change description in cpsIfSecureLastMacAddress."
REVISION "200408070000Z"
DESCRIPTION
"Added cpsTrunkSecureMacAddrViolation.
Expanded on the description of
cpsSecureMacAddrViolation.
Created the NOTIFICATION-GROUP
cpsTrunkSecureNotificationGroup."
REVISION "200403080000Z"
DESCRIPTION
"Adding cpsGlobalClearSecureMacAddresses,
cpsIfClearSecureMacAddresses,
cpsIfInvalidSrcRateLimitEnable,
cpsIfInvalidSrcRateLimitValue
cpsIfStickyEnable,
cpsIfVlanTable, cpsInterfaceGroup2,
ciscoPortSecurityMIBCompliance2 and
cpsInterfaceGroup2.
Deprecating cpsIfClearSecureAddresses,
ciscoPortSecurityMIBCompliance1
and cpsInterfaceGroup1."
REVISION "200402100000Z"
DESCRIPTION
"Deprecated cpsSecureMacAddressTable.
Adding cpsIfVlanSecureMacAddrTable."
REVISION "200307010000Z"
DESCRIPTION
"Deprecated the ciscoPortSecurityMIBCompliance.
Adding ciscoPortSecurityMIBCompliance1.
Adding cpsUnicastFloodingInterfaceGroup
and cpsShutdownTimeoutInterfaceGroup."
REVISION "200302240000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 315 }
ciscoPortSecurityMIBNotifs OBJECT IDENTIFIER ::=
{ ciscoPortSecurityMIB 0 }
ciscoPortSecurityMIBObjects OBJECT IDENTIFIER ::=
{ ciscoPortSecurityMIB 1 }
ciscoPortSecurityMIBConform OBJECT IDENTIFIER ::=
{ ciscoPortSecurityMIB 2 }
cpsGlobalObjects OBJECT IDENTIFIER ::=
{ ciscoPortSecurityMIBObjects 1 }
cpsInterfaceObjects OBJECT IDENTIFIER ::=
{ ciscoPortSecurityMIBObjects 2 }
--
-- textual conventions
--
ClearSecureMacAddrType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This are the different type of secure mac addresses
which user is allowed to delete globally or
per interface.
When the address deletion is in progress
GET request will not show any values which
were set using SET operation.
done(0) - This the value which is always returned
in a GET request when the clear command has
completed or in progress.
Setting this value to this object has
no effect.
dynamic(1) - All secure MAC addresses which are
learned on the switch.
static(2) - All secure MAC addresses which are
configured by user.
sticky(3) - All secure MAC addresses which
are learned and retained across
reboots.
all(4) - All the MAC addresses on the switch."
SYNTAX INTEGER {
done(0),
dynamic(1),
static(2),
sticky(3),
all(4)
}
--
-- Port Security Global Configuration Objects
--
cpsGlobalMaxSecureAddress OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum number of secure MAC addresses
allowed in the device."
::= { cpsGlobalObjects 1 }
cpsGlobalTotalSecureAddress OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of MAC addresses secured
in the device."
::= { cpsGlobalObjects 2 }
cpsGlobalPortSecurityEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The global control to enable or disable
port security feature on the device."
::= { cpsGlobalObjects 3 }
cpsGlobalSNMPNotifRate OBJECT-TYPE
SYNTAX Integer32 (0..1000)
UNITS "notifs per second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The global control to set the SNMP Notification
rate for port security feature. This object
specifies the rate at which SNMP Notifications
are generated when cpsIfViolationAction
selected is of the type 'dropNotify'.
A value of 0 indicates that an SNMP Notification
is generated for every security violation."
::= { cpsGlobalObjects 4 }
cpsGlobalSNMPNotifControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set to 'true' to enable global SNMP Notification
for port security feature. Setting the object to
'false' will disable SNMP notifications even if
the cpsIfViolationAction is set to 'dropNotify'
on an interface. The default value is 'false'."
::= { cpsGlobalObjects 5 }
cpsGlobalClearSecureMacAddresses OBJECT-TYPE
SYNTAX ClearSecureMacAddrType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This objects allows the user to delete
secure MAC addresses based on the specified
type."
::= { cpsGlobalObjects 6 }
--
-- Port Security Interface Configuration Table
--
cpsIfConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpsIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of port security configuration entries.
The number of entries is determined by the number of
interfaces in the system that can support the
port security feature. Interfaces that are not
port security capable will not be displayed
in this Table. This table includes interfaces
on which port security parameters can be set even
if port security feature itself cannot be enabled
due to conflict with other features."
::= { cpsInterfaceObjects 1 }
cpsIfConfigEntry OBJECT-TYPE
SYNTAX CpsIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry containing port security information for a
particular interface."
INDEX { ifIndex }
::= { cpsIfConfigTable 1 }
CpsIfConfigEntry ::=
SEQUENCE {
cpsIfPortSecurityEnable TruthValue,
cpsIfPortSecurityStatus INTEGER,
cpsIfMaxSecureMacAddr Integer32,
cpsIfCurrentSecureMacAddrCount Integer32,
cpsIfSecureMacAddrAgingTime Integer32,
cpsIfSecureMacAddrAgingType INTEGER,
cpsIfStaticMacAddrAgingEnable TruthValue,
cpsIfViolationAction INTEGER,
cpsIfViolationCount Counter32,
cpsIfSecureLastMacAddress MacAddress,
cpsIfClearSecureAddresses TruthValue,
cpsIfUnicastFloodingEnable TruthValue,
cpsIfShutdownTimeout Unsigned32,
cpsIfClearSecureMacAddresses ClearSecureMacAddrType,
cpsIfStickyEnable TruthValue,
cpsIfInvalidSrcRateLimitEnable TruthValue,
cpsIfInvalidSrcRateLimitValue Integer32,
cpsIfSecureLastMacAddrVlanId VlanIndex
}
cpsIfPortSecurityEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates whether the port security feature
is enabled on an interface. Upon setting this
object to 'true', the source MAC address that
does not match any cpsSecureMacAddress for the
given interface in cpsSecureMacAddressTable and
the value of cpsIfCurrentSecureMacAddrCount is
equal to cpsIfMaxSecureMacAddr, is considered
as port security violation and an action as
specified in cpsIfViolationAction is taken on
the interface. The value of this object has no
effect when the value of
cpsGlobalPortSecurityEnable is set to 'false'."
::= { cpsIfConfigEntry 1 }
cpsIfPortSecurityStatus OBJECT-TYPE
SYNTAX INTEGER { secureup(1), securedown(2),
shutdown(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object represents the operational status
of the port security feature on an interface.
secureup(1) - This indicates port security
is operational.
securedown(2) - This indicates port security is
not operational. This happens
when port security is configured
to be enabled but could not be
enabled due to certain reasons
such as conflict with other
features.
shutdown(3) - This indicates that the port is
shutdown due to port security
violation when the object
cpsIfViolationAction is of type
'shutdown'."
::= { cpsIfConfigEntry 2 }
cpsIfMaxSecureMacAddr OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The maximum number (N) of MAC addresses to be
secured on the interface. The first N MAC
addresses learned or configured are made secured.
Changing this object value from N to M is not
allowed if M is smaller than N, and M is less
than the value of cpsIfCurrentSecureMacAddrCount
on the interface. One way to change the number in
this case is by deleting sufficient number of
secure mac addresses configured or learned on the
device. Also, some devices may choose to limit the
sum of this object value for all interfaces to
less than or equal to cpsGlobalMaxSecureAddress."
::= { cpsIfConfigEntry 3 }
cpsIfCurrentSecureMacAddrCount OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of MAC addresses secured
on this interface."
::= { cpsIfConfigEntry 4 }
cpsIfSecureMacAddrAgingTime OBJECT-TYPE
SYNTAX Integer32 (0..1440)
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The interval in which the interface is
secured. After the expiration of the
time, the corresponding cpsSecureMacAddressEntry
from the cpsSecureMacAddressTable will be
removed. If the value of this object is 0,
the aging mechanism is disabled."
::= { cpsIfConfigEntry 5 }
cpsIfSecureMacAddrAgingType OBJECT-TYPE
SYNTAX INTEGER { absolute(1), inactivity(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The aging type determines the way the
secure MAC addresses are aged out.
absolute(1) - all the secure MAC addresses
will be aged out after
cpsIfSecureMacAddrAgingTime
minutes since the time the
secure MAC address is learned
or configured.
inactivity(2) - all the secure MAC addresses
will age out and will be removed
from the cpsSecureMacAddressTable
only if there is no data traffic
from the secure source MAC address
for the specified time period."
::= { cpsIfConfigEntry 6 }
cpsIfStaticMacAddrAgingEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates whether the secure MAC address aging
mechanism is enabled on static MAC address entries
in cpsSecureMacAddressTable.
Setting this object value to 'false' will cause
the static MAC addresses to remain in the
cpsSecureMacAddressTable regardless of the aging
time and type configured on the interface.
Setting this object value to 'true' will cause
the static MAC addresses to be aged out from
cpsSecureMacAddressTable according to the aging
time and type specified on the interface."
::= { cpsIfConfigEntry 7 }
cpsIfViolationAction OBJECT-TYPE
SYNTAX INTEGER { shutdown(1), dropNotify(2), drop(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Determines the action that the device will
take if the traffic matches the port security
violation.
shutdown(1) - the interface will be forced to
shut down.
dropNotify(2) - the matched traffic will be
dropped and
cpsSecureMacAddrViolation
notification will be generated.
drop(3) - the matched traffic will be
dropped."
::= { cpsIfConfigEntry 8 }
cpsIfViolationCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the number of violations
occurred on a secure interface. The counter will
be initialized to zero when the port security
feature is enabled on an interface. This MIB
object is only instantiated if the device can
provide this violation statistics on the
interface."
::= { cpsIfConfigEntry 9 }
cpsIfSecureLastMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the last MAC
address that is seen on this interface.
This object is also used as a variable in
the cpsSecureMacAddrViolation notification
to contain the value of the MAC address
which caused the violation."
::= { cpsIfConfigEntry 10 }
cpsIfClearSecureAddresses OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated -- superceded by
-- cpsIfClearSecureMacAddresses
DESCRIPTION "Set to 'true' to delete all secure addresses on
this interface. Setting this object to 'false'
has no effect. This object always returns 'false'
when read."
::= { cpsIfConfigEntry 11 }
cpsIfUnicastFloodingEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this object to true(1) will configure
the interface not to block unicast flooded
traffic when the secure address count reaches the
threshold.
Setting this object to false(2) will configure
the interface to block unicast flooded traffic
when the secure address count reaches the
threshold."
::= { cpsIfConfigEntry 12 }
cpsIfShutdownTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The interval in which the cpsIfPortSecurityStatus
may remain in shutdown(3). After the expiration of
the time, all the security configuration of this
port is re-installed and the port is enabled. If
the value of this object is 0, the port is shut
down permanently."
::= { cpsIfConfigEntry 13 }
cpsIfClearSecureMacAddresses OBJECT-TYPE
SYNTAX ClearSecureMacAddrType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This objects allows the user to delete
secure MAC addresses based on the type specified."
::= { cpsIfConfigEntry 14 }
cpsIfStickyEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set to 'true' to enable and 'false' to
disable Sticky port security feature on this
interface. Enabling this feature allows the
device to secure learned MAC addresses on this
interface permanently. In order to remove the
sticky addresses on this interface, user has to
manually delete the sticky MAC address(es) or
disable the sticky feature itself. Manual deletion
of all addresses can be accomplished by
cpsIfClearSecureMacAddresses object. Manual
of single address can be accomplished by
cpsIfVlanSecureMacAddrRowStatus object."
::= { cpsIfConfigEntry 15 }
cpsIfInvalidSrcRateLimitEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set to 'true' to enable and 'false' to disable
rate limiting for invalid source MAC addresses
received on this interface. Enabling this feature
will help to rate limit packets which comes with
invalid src MAC address on this interface."
::= { cpsIfConfigEntry 16 }
cpsIfInvalidSrcRateLimitValue OBJECT-TYPE
SYNTAX Integer32 (-1..1000)
UNITS "Packets per second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "If cpsIfInvalidSrcRateLimitEnable is set to
'true' then this value is used to limit the
rate at which packets with invalid source MAC
addresses are processed on this interface. Upon
exceeding the rate, the port is shutdown. If
cpsIfInvalidSrcRateLimitEnable is set to 'false'
then this value will be -1."
::= { cpsIfConfigEntry 17 }
cpsIfSecureLastMacAddrVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the VLAN where the last
MAC address that is seen on this interface.
This object is also used as a variable in
the cpsIfVlanSecureMacAddrViolation notification
to contain the value of the VLAN received the
mac address which caused the violation."
::= { cpsIfConfigEntry 18 }
-- Port Security Mac Address Table.
-- This table is used to both configure and display secure MAC addresses
-- on an interface.
cpsSecureMacAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpsSecureMacAddressEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "A list of port security entries containing
the secure MAC address information."
::= { cpsInterfaceObjects 2 }
cpsSecureMacAddressEntry OBJECT-TYPE
SYNTAX CpsSecureMacAddressEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "Entry containing secure MAC address
information for a particular interface.
A secure MAC address can be configured
by the user and can be added by the agent
when the device learns a new secured
MAC address.
Note that the secure MAC addresses can be
configured on an interface even if port
security feature is disabled."
INDEX { ifIndex, cpsSecureMacAddress }
::= { cpsSecureMacAddressTable 1 }
CpsSecureMacAddressEntry ::=
SEQUENCE {
cpsSecureMacAddress MacAddress,
cpsSecureMacAddrType INTEGER,
cpsSecureMacAddrRemainingAge Integer32,
cpsSecureMacAddrRowStatus RowStatus
}
cpsSecureMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "This object indicates a secure MAC
address configured or learned on an
interface."
::= { cpsSecureMacAddressEntry 1 }
cpsSecureMacAddrType OBJECT-TYPE
SYNTAX INTEGER { static(1), dynamic(2) }
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION "This object indicates if the secure MAC address
is a configured (static) or learned (dynamic)
address on this interface."
::= { cpsSecureMacAddressEntry 2 }
cpsSecureMacAddrRemainingAge OBJECT-TYPE
SYNTAX Integer32 (0..1440)
UNITS "minutes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION "This object indicates the remaining age
of the secure MAC address if aging is
enabled on that port. A value of 0 indicates
that aging is disabled for this MAC address
entry."
::= { cpsSecureMacAddressEntry 3 }
cpsSecureMacAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"This object is a conceptual row entry that allows to add
or delete entries to or from the cpsSecureMacAddressTable.
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."
::= { cpsSecureMacAddressEntry 4 }
cpsIfVlanSecureMacAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpsIfVlanSecureMacAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A list of port security entries containing
the secure MAC address information.
This table is simular to cpsSecureMacAddressTable
except that cpsIfVlanSecureVlanIndex is part of
the INDEX clause.
This table is used to configure a secure MAC
address on either an access interface or trunking
interface which support port security feature."
::= { cpsInterfaceObjects 3 }
cpsIfVlanSecureMacAddrEntry OBJECT-TYPE
SYNTAX CpsIfVlanSecureMacAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry containing secure MAC address
information for a particular interface.
A secure MAC address can be configured
by the user and can be added by the agent
when the device learns a new secure MAC address.
Note that the secure MAC addresses can be
configured on an interface even if the port
security feature is disabled."
INDEX { ifIndex,
cpsIfVlanSecureMacAddress,
cpsIfVlanSecureVlanIndex }
::= { cpsIfVlanSecureMacAddrTable 1 }
CpsIfVlanSecureMacAddrEntry ::=
SEQUENCE {
cpsIfVlanSecureMacAddress MacAddress,
cpsIfVlanSecureVlanIndex VlanIndex,
cpsIfVlanSecureMacAddrType INTEGER,
cpsIfVlanSecureMacAddrRemainAge Unsigned32,
cpsIfVlanSecureMacAddrRowStatus RowStatus
}
cpsIfVlanSecureMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This object indicates a secure MAC
address configured or learned on an
interface."
::= { cpsIfVlanSecureMacAddrEntry 1 }
cpsIfVlanSecureVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This object indicates the vlan
configured on an interface."
::= { cpsIfVlanSecureMacAddrEntry 2 }
cpsIfVlanSecureMacAddrType OBJECT-TYPE
SYNTAX INTEGER { static(1), dynamic(2), sticky(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates if the secure MAC address
is a configured 'static' or learned 'dynamic' or
learned and retained across reboots 'sticky'."
::= { cpsIfVlanSecureMacAddrEntry 3 }
cpsIfVlanSecureMacAddrRemainAge OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the remaining age
of the secure MAC address if aging is
enabled on that port. A value of 0 indicates
that aging is disabled for this MAC address
entry."
::= { cpsIfVlanSecureMacAddrEntry 4 }
cpsIfVlanSecureMacAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a conceptual row entry that allows adding
or deleting entries to or from the
cpsIfVlanSecureMacAddressTable.
1. When creating an entry in this table the '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."
::= { cpsIfVlanSecureMacAddrEntry 5 }
-- Port Security Trunk Interface VLAN Table
--
cpsIfVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpsIfVlanEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION "Each entry in this table represents
port-security information for each vlan
that is allowed on trunk interface.
The number of entries is determined by
the number of allowed VLANs on trunk
interface in the system .
An Entry in the table gets created when
a vlan becomes allowed and gets deleted
when a vlan becomes disallowed on a trunk
port.
User cannot create new entries in this
table, but can only read and modify
existing entries.
This table is obsolete and replaced with
cpsIfMultiVlanTable."
::= { cpsInterfaceObjects 4 }
cpsIfVlanEntry OBJECT-TYPE
SYNTAX CpsIfVlanEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION "Entry containing port security information for
a particular VLAN within a trunk port."
INDEX { ifIndex, cpsIfVlanIndex }
::= { cpsIfVlanTable 1 }
CpsIfVlanEntry ::=
SEQUENCE {
cpsIfVlanIndex VlanIndex,
cpsIfVlanMaxSecureMacAddr Unsigned32,
cpsIfVlanCurSecureMacAddrCount Unsigned32
}
cpsIfVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION "The ID of a VLAN within this trunk port."
REFERENCE
"IEEE 802.1Q/D11 Section 9.3.2.3"
::= { cpsIfVlanEntry 1 }
cpsIfVlanMaxSecureMacAddr OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION "The maximum number of MAC addresses to
be secured in the VLAN indicated by
cpsIfVlanIndex on this interface.
If cpsIfVlanMaxSecureMacAddr is not set,
its value is 1.
If cpsIfVlanMaxSecureMacAddr is not set, then
the cpsIfMaxSecureMacAddr applies to this
VLAN.
If cpsIfVlanMaxSecureMacAddr is set
and is less than cpsIfMaxSecureMacAddr, then
the cpsIfVlanMaxSecureMacAddr applies to this
VLAN.
If cpsIfVlanMaxSecureMacAddr is set
and is greater than cpsIfMaxSecureMacAddr, then
the cpsIfMaxSecureMacAddr applies to this
VLAN."
::= { cpsIfVlanEntry 2 }
cpsIfVlanCurSecureMacAddrCount OBJECT-TYPE
SYNTAX Unsigned32 (0..2147483647)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "The current number of MAC addresses secured
in the VLAN indicated by cpsIfVlanIndex on this
interface."
::= { cpsIfVlanEntry 3 }
-- Port Security Interface Multi Vlan Table
--
cpsIfMultiVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpsIfMultiVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents port-security
information such as the maximum value of secured
mac address allowed, the current number of secure
mac address applied on a VLAN that is allowed on
multi-vlan interface as well as a mechanism to
clear the secure mac address on such VLANs."
::= { cpsInterfaceObjects 5 }
cpsIfMultiVlanEntry OBJECT-TYPE
SYNTAX CpsIfMultiVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry containing port security information for
a particular VLAN within a multi-vlan port. When
secured mac addresses are learned or configured on
such interface denoted by ifIndex and an allowed VLAN
in this interface denoted by cpsIfMultiVlanIndex,
an entry will be automatically created in this table.
If there is no corresponding entry in this table
for a specific interface and VLAN, the maximum number
of secured MAC addresses allowed in such interface
and VLAN will be limited in the manner which the device
limits the aggregate maximum number of secured MAC
address allowed in this specific interface."
INDEX { ifIndex, cpsIfMultiVlanIndex }
::= { cpsIfMultiVlanTable 1 }
CpsIfMultiVlanEntry ::=
SEQUENCE {
cpsIfMultiVlanIndex VlanIndex,
cpsIfMultiVlanMaxSecureMacAddr Unsigned32,
cpsIfMultiVlanSecureMacAddrCount Unsigned32,
cpsIfMultiVlanClearSecureMacAddr ClearSecureMacAddrType,
cpsIfMultiVlanRowStatus RowStatus
}
cpsIfMultiVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN ID of an allowed VLAN for this multi-vlan port."
REFERENCE
"IEEE 802.1Q/D11 Section 9.3.2.3"
::= { cpsIfMultiVlanEntry 1 }
cpsIfMultiVlanMaxSecureMacAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number (N) of MAC addresses to be secured
in the VLAN indicated by cpsIfMultiVlanIndex object on
this interface.
Setting the value of this object to zero indicates that
there is no specific restriction on the maximum number
of MAC adddress to be secured for this particular VLAN
in this interface. In this case, the maximum number of
secured MAC addresses allowed in this VLAN will be limited
in the manner which the device limits the aggregate maximum
number of secured MAC address allowed in this interface.
Changing this object value from N to M (M is greater
than 0) is not allowed if M is smaller than N, and M is
less than the value of cpsIfMultiVlanSecureMacAddrCount
on this VLAN. One way to change the number in this case
is by deleting sufficient number of secure mac addresses
configured or learned on the VLAN.
If cpsIfMultiVlanMaxSecureMacAddr is less than
cpsIfMaxSecureMacAddr, then the aggregate maximum number
of secure mac address allowed in this interface is limited
by the value of cpsIfMaxSecureMacAddr, and the maximum
number of secure mac address allowed in this VLAN for this
interface is the value of cpsIfMultiVlanMaxSecureMacAddr
object.
If cpsIfMultiVlanMaxSecureMacAddr is greater than
cpsIfMaxSecureMacAddr, then this object value does not
have any effect. The aggregate maximum number of secure mac
address allowed in all VLANs for this interface is limited
by the value of cpsIfMaxSecureMacAddr object."
DEFVAL { 1 }
::= { cpsIfMultiVlanEntry 2 }
cpsIfMultiVlanSecureMacAddrCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of MAC addresses secured in the VLAN
indicated by cpsIfMultiVlanIndex object on this interface."
::= { cpsIfMultiVlanEntry 3 }
cpsIfMultiVlanClearSecureMacAddr OBJECT-TYPE
SYNTAX ClearSecureMacAddrType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This objects allows the user to delete secure MAC addresses
based on the type specified per interface per VLAN."
DEFVAL { done }
::= { cpsIfMultiVlanEntry 4 }
cpsIfMultiVlanRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object is used to manage the creation and deletion
of row in this table. It only supports 'active', 'destroy',
and 'createAndGo' value.
Entry in the table gets created by setting
cpsIfMultiVlanRowStatus object to 'createAndGo'.
Entry in this table gets deleted by setting
cpsIfMultiVlanRowStatus object to 'destroy' or
when a VLAN indicated by cpsIfMultiVlanIndex object
becomes disallowed on a multi-vlan port.
If the value of cpsIfMultiVlanSecureMacAddrCount object
in the same row is greater than zero, this entry cannot
be deleted.
Value of cpsIfMultiVlanMaxSecureMacAddr object can be
modified when the value of this RowStatus object is
'active'."
::= { cpsIfMultiVlanEntry 5 }
--
-- Notifications
--
cpsInterfaceNotifs
OBJECT IDENTIFIER ::= { ciscoPortSecurityMIBNotifs 0 }
cpsSecureMacAddrViolation NOTIFICATION-TYPE
OBJECTS { ifIndex, ifName, cpsIfSecureLastMacAddress }
STATUS current
DESCRIPTION
"The address violation notification is generated
when port security address violation is detected
on a secure non-trunk, access interface (that carries
a single vlan) and the cpsIfViolationAction is set to
'dropNotify'."
::= { cpsInterfaceNotifs 1 }
cpsTrunkSecureMacAddrViolation NOTIFICATION-TYPE
OBJECTS { ifName, vtpVlanName, cpsIfSecureLastMacAddress }
STATUS deprecated
DESCRIPTION
"The address violation notification is generated when port
security address violation is detected on a secure trunk
or a multi-vlan interface and the cpsIfViolationAction is
set to 'dropNotify'."
::= { cpsInterfaceNotifs 2 }
cpsIfVlanSecureMacAddrViolation NOTIFICATION-TYPE
OBJECTS { ifName,
cpsIfSecureLastMacAddrVlanId,
cpsIfSecureLastMacAddress
}
STATUS current
DESCRIPTION
"The address violation notification is generated
when port security address violation is detected
on a multi-vlan interface and the cpsIfViolationAction
is set to 'dropNotify'."
::= { cpsInterfaceNotifs 3 }
--
-- Conformance
--
ciscoPortSecurityMIBCompliances
OBJECT IDENTIFIER ::= { ciscoPortSecurityMIBConform 1 }
ciscoPortSecurityMIBGroups
OBJECT IDENTIFIER ::= { ciscoPortSecurityMIBConform 2 }
ciscoPortSecurityMIBCompliance MODULE-COMPLIANCE
STATUS deprecated -- superceded
-- by ciscoPortSecurityMIBCompliance1
DESCRIPTION
"The compliance statement for the Port Security MIB."
MODULE -- this module
MANDATORY-GROUPS {
cpsGlobalGroup,
cpsInterfaceGroup
}
GROUP cpsExtInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of keeping track of the last secure MAC
address learned or configured on the interface."
GROUP cpsNotificationGroup
DESCRIPTION
"This is mandatory only for the device that supports
'dropNotify' of cpsIfViolationAction."
GROUP cpsExtConfigInterfaceGroup
DESCRIPTION
"This group is a optional."
OBJECT cpsGlobalPortSecurityEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required. This may be
read-only."
OBJECT cpsGlobalSNMPNotifRate
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsGlobalSNMPNotifControl
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureMacAddrAgingType
MIN-ACCESS read-only
DESCRIPTION
"read-write is not required if the device only support
one aging type."
OBJECT cpsIfViolationAction
SYNTAX INTEGER { shutdown(1) }
DESCRIPTION
"The support of the values 'dropNotify' and/or 'drop'
is not required if the device does not support the
configuration of 'dropNotify' and/or 'drop'."
OBJECT cpsIfViolationCount
DESCRIPTION
"An implementation of violation count is
required only if the device can provide the
number of the violations occurred on the device."
OBJECT cpsIfStaticMacAddrAgingEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureLastMacAddress
DESCRIPTION
"An implementation of this object is not mandatory."
OBJECT cpsIfClearSecureAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
::= { ciscoPortSecurityMIBCompliances 1 }
ciscoPortSecurityMIBCompliance1 MODULE-COMPLIANCE
STATUS deprecated -- superceded
-- by ciscoPortSecurityMIBCompliance2
DESCRIPTION
"The compliance statement for the Port Security MIB."
MODULE -- this module
MANDATORY-GROUPS {
cpsGlobalGroup,
cpsInterfaceGroup1,
cpsIfVlanSecureMacAddrGroup
}
GROUP cpsExtInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of keeping track of the last secure MAC
address learned or configured on the interface."
GROUP cpsNotificationGroup
DESCRIPTION
"This is mandatory only for the device that supports
'dropNotify' of cpsIfViolationAction."
GROUP cpsUnicastFloodingInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of blocking unicast flooded traffic when
the secure address count reaches the threshold on
the interface."
GROUP cpsShutdownTimeoutInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable to support shutdown timeout on the
interface."
OBJECT cpsGlobalPortSecurityEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required. This may be
read-only."
OBJECT cpsGlobalSNMPNotifRate
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsGlobalSNMPNotifControl
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureMacAddrAgingType
MIN-ACCESS read-only
DESCRIPTION
"read-write is not required if the device only support
one aging type."
OBJECT cpsIfViolationAction
SYNTAX INTEGER { shutdown(1) }
DESCRIPTION
"The support of the values 'dropNotify' and/or 'drop'
is not required if the device does not support the
configuration of 'dropNotify' and/or 'drop'."
OBJECT cpsIfViolationCount
DESCRIPTION
"An implementation of violation count is
required only if the device can provide the
number of the violations occurred on the device."
OBJECT cpsIfStaticMacAddrAgingEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureLastMacAddress
DESCRIPTION
"An implementation of this object is not mandatory."
OBJECT cpsIfClearSecureAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
::= { ciscoPortSecurityMIBCompliances 2 }
ciscoPortSecurityMIBCompliance2 MODULE-COMPLIANCE
STATUS obsolete -- superceded
-- by ciscoPortSecurityMIBCompliance3
DESCRIPTION
"The compliance statement for the Port Security MIB."
MODULE -- this module
MANDATORY-GROUPS {
cpsGlobalGroup,
cpsInterfaceGroup2,
cpsIfVlanSecureMacAddrGroup
}
GROUP cpsExtInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of keeping track of the last secure MAC
address learned or configured on the interface."
GROUP cpsNotificationGroup
DESCRIPTION
"This is mandatory only for the device that supports
'dropNotify' of cpsIfViolationAction."
GROUP cpsUnicastFloodingInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of blocking unicast flooded traffic when
the secure address count reaches the threshold on
the interface."
GROUP cpsShutdownTimeoutInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable to support shutdown timeout on the
interface."
OBJECT cpsGlobalPortSecurityEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required. This may be
read-only."
OBJECT cpsGlobalSNMPNotifRate
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsGlobalSNMPNotifControl
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureMacAddrAgingType
MIN-ACCESS read-only
DESCRIPTION
"read-write is not required if the device only support
one aging type."
OBJECT cpsIfViolationAction
SYNTAX INTEGER { shutdown(1) }
DESCRIPTION
"The support of the values 'dropNotify' and/or 'drop'
is not required if the device does not support the
configuration of 'dropNotify' and/or 'drop'."
OBJECT cpsIfViolationCount
DESCRIPTION
"An implementation of violation count is
required only if the device can provide the
number of the violations occurred on the device."
OBJECT cpsIfStaticMacAddrAgingEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureLastMacAddress
DESCRIPTION
"An implementation of this object is not mandatory."
GROUP cpsIfVlanGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable to support trunk port security on the
interfaces."
GROUP cpsGlobalClearAddressGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of clearing secure addresses from
the system."
OBJECT cpsGlobalClearSecureMacAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
OBJECT cpsIfClearSecureMacAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
::= { ciscoPortSecurityMIBCompliances 3 }
ciscoPortSecurityMIBCompliance3 MODULE-COMPLIANCE
STATUS obsolete -- superceded by
-- ciscoPortSecurityMIBCompliance4
DESCRIPTION
"The compliance statement for the Port Security MIB."
MODULE -- this module
MANDATORY-GROUPS {
cpsGlobalGroup,
cpsInterfaceGroup2,
cpsIfVlanSecureMacAddrGroup
}
GROUP cpsExtInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of keeping track of the last secure MAC
address learned or configured on the interface."
GROUP cpsNotificationGroup
DESCRIPTION
"This is mandatory only for the device that supports
'dropNotify' of cpsIfViolationAction."
GROUP cpsUnicastFloodingInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of blocking unicast flooded traffic when
the secure address count reaches the threshold on
the interface."
GROUP cpsShutdownTimeoutInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable to support shutdown timeout on the
interface."
OBJECT cpsGlobalPortSecurityEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required. This may be
read-only."
OBJECT cpsGlobalSNMPNotifRate
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsGlobalSNMPNotifControl
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureMacAddrAgingType
MIN-ACCESS read-only
DESCRIPTION
"read-write is not required if the device only support
one aging type."
OBJECT cpsIfViolationAction
SYNTAX INTEGER { shutdown(1) }
DESCRIPTION
"The support of the values 'dropNotify' and/or 'drop'
is not required if the device does not support the
configuration of 'dropNotify' and/or 'drop'."
OBJECT cpsIfViolationCount
DESCRIPTION
"An implementation of violation count is
required only if the device can provide the
number of the violations occurred on the device."
OBJECT cpsIfStaticMacAddrAgingEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureLastMacAddress
DESCRIPTION
"An implementation of this object is not mandatory."
GROUP cpsIfVlanGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable to support trunk port security on the
interfaces."
GROUP cpsGlobalClearAddressGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of clearing secure addresses from
the system."
OBJECT cpsGlobalClearSecureMacAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
OBJECT cpsIfClearSecureMacAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
GROUP cpsTrunkSecureNotificationGroup
DESCRIPTION
"This group is mandatory only if the device supports
port-security feature on a trunk or multi-vlan port and
also supports the 'dropNotify' option for the object
cpsIfViolationAction."
::= { ciscoPortSecurityMIBCompliances 4 }
ciscoPortSecurityMIBCompliance4 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the Port Security MIB."
MODULE -- this module
MANDATORY-GROUPS {
cpsGlobalGroup,
cpsInterfaceGroup2,
cpsIfVlanSecureMacAddrGroup
}
GROUP cpsExtInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of keeping track of the last secure MAC
address learned or configured on the interface."
GROUP cpsNotificationGroup
DESCRIPTION
"This is mandatory only for the device that supports
'dropNotify' of cpsIfViolationAction."
GROUP cpsUnicastFloodingInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of blocking unicast flooded traffic when
the secure address count reaches the threshold on
the interface."
GROUP cpsShutdownTimeoutInterfaceGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable to support shutdown timeout on the
interface."
OBJECT cpsGlobalPortSecurityEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required. This may be
read-only."
OBJECT cpsGlobalSNMPNotifRate
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsGlobalSNMPNotifControl
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureMacAddrAgingType
MIN-ACCESS read-only
DESCRIPTION
"read-write is not required if the device only support
one aging type."
OBJECT cpsIfViolationAction
SYNTAX INTEGER { shutdown(1) }
DESCRIPTION
"The support of the values 'dropNotify' and/or 'drop'
is not required if the device does not support the
configuration of 'dropNotify' and/or 'drop'."
OBJECT cpsIfViolationCount
DESCRIPTION
"An implementation of violation count is
required only if the device can provide the
number of the violations occurred on the device."
OBJECT cpsIfStaticMacAddrAgingEnable
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required."
OBJECT cpsIfSecureLastMacAddress
DESCRIPTION
"An implementation of this object is not mandatory."
GROUP cpsIfMultiVlanGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable to support port security on the multi-vlan
interfaces as well as capable to support the maximum
number of secure mac address specified on per interface
per VLAN."
GROUP cpsGlobalClearAddressGroup
DESCRIPTION
"This group is mandatory only for the device that
is capable of clearing secure addresses from
the system."
OBJECT cpsGlobalClearSecureMacAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
OBJECT cpsIfClearSecureMacAddresses
MIN-ACCESS read-only
DESCRIPTION
"read-write access is not required if the device
does not support the command to clear all secure
address on the interface."
GROUP cpsIfVlanSecureNotificationGroup
DESCRIPTION
"This group is mandatory only if the device supports
port-security feature on a multi-vlan port and
also supports the 'dropNotify' option for the object
cpsIfViolationAction."
GROUP cpsExtInterfaceGroup1
DESCRIPTION
"This group is mandatory only for the device that
is capable of keeping track of the VLAN-id where last
MAC address that is seen on the interface."
::= { ciscoPortSecurityMIBCompliances 5 }
--
-- Units of Conformance
--
cpsGlobalGroup OBJECT-GROUP
OBJECTS {
cpsGlobalMaxSecureAddress,
cpsGlobalTotalSecureAddress,
cpsGlobalPortSecurityEnable,
cpsGlobalSNMPNotifRate,
cpsGlobalSNMPNotifControl
}
STATUS current
DESCRIPTION
"A collection of objects for use with the Port
Security feature."
::= { ciscoPortSecurityMIBGroups 1 }
cpsInterfaceGroup OBJECT-GROUP
OBJECTS {
cpsIfPortSecurityEnable,
cpsIfPortSecurityStatus,
cpsIfMaxSecureMacAddr,
cpsIfCurrentSecureMacAddrCount,
cpsIfSecureMacAddrAgingType,
cpsIfSecureMacAddrAgingTime,
cpsIfStaticMacAddrAgingEnable,
cpsIfViolationAction,
cpsIfViolationCount,
cpsIfClearSecureAddresses,
cpsSecureMacAddrType,
cpsSecureMacAddrRemainingAge,
cpsSecureMacAddrRowStatus
}
STATUS deprecated
DESCRIPTION
"********* THIS GROUP IS DEPRECATED **********
A collection of objects for use with the Port
Security feature."
::= { ciscoPortSecurityMIBGroups 2 }
cpsExtInterfaceGroup OBJECT-GROUP
OBJECTS { cpsIfSecureLastMacAddress }
STATUS current
DESCRIPTION
"A collection of objects providing the additional
information for the Port Security feature."
::= { ciscoPortSecurityMIBGroups 3 }
cpsNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { cpsSecureMacAddrViolation }
STATUS current
DESCRIPTION
"A collection of notifications for use
with the Port Security feature."
::= { ciscoPortSecurityMIBGroups 4 }
cpsUnicastFloodingInterfaceGroup OBJECT-GROUP
OBJECTS { cpsIfUnicastFloodingEnable }
STATUS current
DESCRIPTION
"A collection of objects providing the
unicast flooding information for the
Port Security feature."
::= { ciscoPortSecurityMIBGroups 5 }
cpsShutdownTimeoutInterfaceGroup OBJECT-GROUP
OBJECTS { cpsIfShutdownTimeout }
STATUS current
DESCRIPTION
"A collection of objects providing the
shutdown timeout information for the
Port Security feature."
::= { ciscoPortSecurityMIBGroups 6 }
cpsIfVlanSecureMacAddrGroup OBJECT-GROUP
OBJECTS {
cpsIfVlanSecureMacAddrType,
cpsIfVlanSecureMacAddrRemainAge,
cpsIfVlanSecureMacAddrRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects for use with the Port
Security feature."
::= { ciscoPortSecurityMIBGroups 8 }
cpsInterfaceGroup1 OBJECT-GROUP
OBJECTS {
cpsIfPortSecurityEnable,
cpsIfPortSecurityStatus,
cpsIfMaxSecureMacAddr,
cpsIfCurrentSecureMacAddrCount,
cpsIfSecureMacAddrAgingType,
cpsIfSecureMacAddrAgingTime,
cpsIfStaticMacAddrAgingEnable,
cpsIfViolationAction,
cpsIfViolationCount,
cpsIfClearSecureAddresses
}
STATUS deprecated -- superceded
-- by cpsInterfaceGroup2
DESCRIPTION
"********* THIS GROUP IS DEPRECATED **********
A collection of objects for use with the Port
Security configuration."
::= { ciscoPortSecurityMIBGroups 9 }
cpsExtConfigInterfaceGroup OBJECT-GROUP
OBJECTS {
cpsIfShutdownTimeout,
cpsIfUnicastFloodingEnable
}
STATUS deprecated
DESCRIPTION
"********* THIS GROUP IS DEPRECATED **********
A collection of objects providing the additional
information for the Port Security feature."
::= { ciscoPortSecurityMIBGroups 10 }
cpsIfVlanGroup OBJECT-GROUP
OBJECTS {
cpsIfVlanMaxSecureMacAddr,
cpsIfVlanCurSecureMacAddrCount
}
STATUS obsolete
DESCRIPTION
"A collection of objects providing additional trunk
VLAN information for the Port Security feature on a
given interface."
::= { ciscoPortSecurityMIBGroups 11 }
cpsGlobalClearAddressGroup OBJECT-GROUP
OBJECTS {
cpsGlobalClearSecureMacAddresses
}
STATUS current
DESCRIPTION
"A collection of objects for clearing addresses
on the device."
::={ ciscoPortSecurityMIBGroups 12 }
cpsInterfaceGroup2 OBJECT-GROUP
OBJECTS {
cpsIfPortSecurityEnable,
cpsIfPortSecurityStatus,
cpsIfMaxSecureMacAddr,
cpsIfCurrentSecureMacAddrCount,
cpsIfSecureMacAddrAgingType,
cpsIfSecureMacAddrAgingTime,
cpsIfStaticMacAddrAgingEnable,
cpsIfViolationAction,
cpsIfViolationCount,
cpsIfClearSecureMacAddresses,
cpsIfInvalidSrcRateLimitEnable,
cpsIfInvalidSrcRateLimitValue,
cpsIfStickyEnable
}
STATUS current
DESCRIPTION
"A collection of objects for use with the Port
Security configuration."
::= { ciscoPortSecurityMIBGroups 13 }
cpsTrunkSecureNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { cpsTrunkSecureMacAddrViolation }
STATUS deprecated
DESCRIPTION
"A collection of trunk or multi-vlan port related
notifications for use with the port-security feature."
::= { ciscoPortSecurityMIBGroups 14 }
cpsIfMultiVlanGroup OBJECT-GROUP
OBJECTS {
cpsIfMultiVlanMaxSecureMacAddr,
cpsIfMultiVlanSecureMacAddrCount,
cpsIfMultiVlanClearSecureMacAddr,
cpsIfMultiVlanRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing additional per
interface per VLAN port security feature information
on a multi-vlan interface."
::= { ciscoPortSecurityMIBGroups 15 }
cpsIfVlanSecureNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { cpsIfVlanSecureMacAddrViolation }
STATUS current
DESCRIPTION
"A collection of trunk or multi-vlan port related
notifications for use with the port-security feature."
::= { ciscoPortSecurityMIBGroups 16 }
cpsExtInterfaceGroup1 OBJECT-GROUP
OBJECTS { cpsIfSecureLastMacAddrVlanId }
STATUS current
DESCRIPTION
"A collection of objects providing the information of
the VLAN-id for the last MAC address seen on the
interface."
::= { ciscoPortSecurityMIBGroups 17 }
END
|