-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCABLETRON-TRAPS.mib
4500 lines (3900 loc) · 152 KB
/
CABLETRON-TRAPS.mib
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
CABLETRON-TRAPS DEFINITIONS ::= BEGIN
-- cabletron-traps.txt
-- Revision: 01.05.01
-- Part Number:
-- Date: May 14, 2012
-- Date "201205141148Z" - Mon May 14 11:48 UTC 2012
-- Inserted references to trap allocations defined in
-- CABLETRON-TRAPS-IRM. Relocated fanMisconfigured to 298.
-- Date "200402061530Z" - Fri Feb 6 15:30 GMT 2004
-- Added boardOperational and boardNonOperational traps.
-- "Postal: Enterasys Networks
-- 50 Minuteman Rd.
-- Andover, MA 01810-1008
-- USA
-- Phone: +1 978 684 1000
-- E-mail: support@enterasys.com
-- WWW: http://www.enterasys.com"
-- This module provides authoritative definitions for Cabletron's
-- use of IETF and enterprise-specific snmp traps.
--
-- This module will be extended, as required.
--
-- Enterasys Networks reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Enterasys Networks
-- to determine whether any such changes have been made.
--
-- In no event shall Enterasys Networks be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Enterasys
-- Networks has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Enterasys grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this specification in connection
-- with the management of Enterasys products.
-- Copyright (c)1998 Cabletron Systems
-- Copyright (c)2004 Enterasys Networks
-- ---------------------
-- Top Level Definitions
-- ---------------------
-- Imports
IMPORTS
cabletron
FROM CTRON-OIDS
TRAP-TYPE
FROM RFC-1215
ifIndex
FROM RFC1213-MIB
logEventIndex, logIndex, logTime, logDescription
FROM RFC1271-MIB
lecRowStatus FROM LAN-EMULATION-CLIENT-MIB
fddimibSMTIndex, fddimibPORTIndex, fddimibMACIndex, fddimibSMTCFState,
fddimibPORTConnectState, fddimibSMTMasterCts, fddimibPORTAction,
fddimibPORTLerEstimate, fddimibMACRMTState, fddimibMACCurrentPath,
fddimibMACFrameErrorRatio
FROM FDDI-SMT73-MIB -- rfc1512
ctsmtmibRingTopology, ctsmtmibRingSmtIndex, ctsmtmibRingMacIndex,
ctsmtmibRingNodeIndex, ctsmtmibRingMacAddr
FROM CTSMTMIB-MIB
nwAppnFwdLsAdjCpName, nwAppnFwdLsAdjCpType,
nwAppnFwdLsName, nwAppnEventTextString
FROM CTRON-APPN-MIB
nwAtEventTextString
FROM CTRON-AppleTalk-ROUTER-MIB
snmpPollDestination, snmpPollOwner, snmpOIDDestination,
snmpOIDOwner, snmpOIDSequence, snmpOIDObject
FROM DLM-MIB
bdgdeviceStatus
FROM CTRON-BDG-MIB
rptrSrcAddrMgmtPortLock, rptrPortAlarmBroadThreshold,
rptrMgmtInterfaceNum, rptrAlarmsTrafThreshold,
rptrAlarmsErrThreshold, rptrAlarmsErrSource,
rptrAlarmsCollThreshold, rptrPortGrpAlarmBroadThreshold,
rptrAlarmsBroadThreshold, rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId, rptrPortGrpAlarmTrafThreshold,
rptrPortGrpAlarmErrThreshold, rptrPortGrpAlarmErrSource,
rptrPortGrpAlarmCollThreshold, rptrPortSecurityLockStatus,
rptrPortMgmtPortType, rptrPortMgmtPortId,
rptrPortRedundCrctNum, rptrPortSrcAddrTopoState,
rptrPortSrcAddrAddressList, rptrPortAlarmTrafThreshold,
rptrPortAlarmErrThreshold, rptrPortAlarmErrSource,
rptrPortAlarmCollThreshold, rptrPortSecurityPortGrpId,
rptrPortSecurityPortId, rptrPortSecuritySecureState,
rptrSecurityLearnState, rptrPortGrpSrcAddrLockGrpId,
rptrPortGrpSASecurityLearnState,
rptrPortSecurityLearnState, rptrSecurityLearnMode,
rptrPortGrpSASecurityLearnMode,
rptrPortSecurityLearnMode
FROM REPEATER-REV4-MIB
chSlotID, chSlotModuleType
FROM CHASSIS-MIB
powerSupplyNum, deviceType
FROM CTRON-COMMON-MIB
ctFpRedundActivePort
FROM CTRON-FRONTPANEL-MIB
nwIpEventTextString
FROM CTRON-IP-ROUTER-MIB
nwIpxEventTextString
FROM CTRON-IPX-ROUTER-MIB
nwDecIVEventTextString
FROM CTRON-DECIV-ROUTER-MIB
ctIfNumber, ctIfPortPortNumber, ctIfPortType
FROM CTIF-EXT-MIB
psPowerSlotStatusID, boardPowerSlotStatusID, psPowerSlotID,
chPowerMainVoltageStatus, chPowerMainVoltage,
chPowerDiagVoltageStatus, chPowerDiagVoltage, termPowerStatus,
termPowerVoltage, boardPowerSlotID, boardPowerID,
boardPowerStatus, termPowerModule1Status, termPowerModule2Status,
boardPowerCurrent, boardPowerLocalAdminStatus, boardPowerLocalStatus,
boardPowerOperationalStatus, psPowerID, psPowerOperationalStatus,
psPowerAdmin, psPowerCurrent, psPowerStatus, psPowerVoltage,
boardPowerVoltage, chPowerLineMaxSupply, chPowerLineTotalSupply
FROM CTRON-POWER-SUPPLY-MIB
psEnvFanStatus, psEnvSlotID, psEnvFanSpeed, psEnvTemp,
psEnvTempStatus, chEnvFanSpeed, chEnvFanStatus, chEnvFanID,
chEnvAmbientStatus, chEnvAmbientTemp, chEnvHumidityStatus,
chEnvHumidity, boardEnvSlotID, boardEnvTemp, boardEnvTempStatus,
boardEnvTempRelStatus
FROM CTRON-ENVIRONMENT-MIB
contTypePhysicalChanges, contTypeLogicalChanges,
contPhysicalEntryID
FROM CT-CONTAINER-MIB
tRingAlarmsRingRingPurgesThreshold,
tRingStatsRingLastBeaconType,
tRingAlarmsRingTimebase,
tRingAlarmsRingAMPErrsThreshold,
tRingAlarmsRingTokenErrsThreshold,
tRingAlarmsRingClaimTknThreshold,
tRingAlarmsRingLostFramesThreshold,
tRingAlarmsRingBeaconStateThreshold,
tRingAlarmsRingFrameCountThreshold,
tRingAlarmsStnThrshLineErrsThreshold,
tRingAlarmsStnThrshInternalErrsThreshold,
tRingAlarmsStnThrshBurstErrsThreshold,
tRingAlarmsStnThrshACErrsThreshold,
tRingAlarmsStnThrshRcvrCongestThreshold,
tRingAlarmsStnThrshAddress,
tRingMgmtStnName,tRingMgmtStnBoard,
tRingMgmtStnPort,tRingMgmtStnUNA,
tRingMgmtSecurityAddressAdd,
tRingMgmtSecurityAddressRemove,
tRingStatsRingLastBeacon, tRingMgmtStnAddress,
tRingPortMgmtPortId, tRingPortGrpId,
tRingMgmtStnDNA
FROM DOT5-LOG-MIB
ctATMPhyRedundIfIndex
FROM CTATM-CONFIG-MIB
ctBroadcastDesiredBroadcastThreshold, ctBroadcastCtlSlotID,
ctBroadcastCtlInterface
FROM CT-BROADCAST-MIB
ctChasPowerSupplyNum, ctChasPowerSupplyType
FROM CTRON-CHASSIS-MIB
upsIndex, upsStatusFault, upsExtMeasAlarmStatus,
upsAddlFuncsStatusFault
FROM UPS2-MIB
atmInterfaceMyNeighborIpAddress,
atmInterfaceMyNeighborIfName,atmVpCrossConnectRowStatus,
atmVcCrossConnectRowStatus
FROM ATM-MIB
sfpsNodeTablePort,sfpsNodeTableBaseAddress
FROM CTRON-SFPS-DIRECTORY-MIB
sfpsDirViolationType, sfpsDirViolationAOValue
FROM CTRON-SFPS-TOPOLOGY-MIB
sfpsInPortConfigType, sfpsInPortConfigPort
FROM CTRON-SFPS-PORT-MIB
sfpsBlockResolveTableAOValue
FROM CTRON-SFPS-RESOLVE-MIB
sfpsBlockSourceMAC
FROM CTRON-SFPS-BASE-MIB;
-- ===================================================================
--
-- Cabletron`s Enterprise Trap Definitions
--
ctdlswTConnUp TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is sent each time a transport connection
becomes enabled on this DLSw."
::= 1
ctdlswTConnDown TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is sent each time a transport connection
becomes disabled on this DLSw."
::= 2
portSegmenting TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"When a port goes from operational to segmented, a
trap will be generated. For these purposes, the
port state will be sampled every XXX seconds, thus
it will be statistically possible to miss oscillating
circuits."
::= 257 -- 0x0101
portUnsegementing TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"When it is detected that a previously segmented port
has gone operational, a trap will be generated. This
is also sampled, thus a trap may not be generated for
each transition."
::= 258 -- 0x0102
portLinkUp TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap will be generated when it is determined
that a MAU has been attached to the MMAC. This is
only appropriate for MIMs that support the concept
of a link state."
::= 259 -- 0x0103
portLinkDown TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap will be generated when a previously attached
MAU is removed or powered down. Again, this is only
appropriate for MIM's that support link state."
::= 260 -- 0x0104
srcaddrNew TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortSrcAddrAddressList }
DESCRIPTION
"This trap will be generated when the MMAC detects
the existence of a new source address on one of it's
ports."
::= 261 -- 0x0105
srcaddrTimeout TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortSrcAddrAddressList }
DESCRIPTION
"This trap will indicate that the MMAC has not
detected a packet generated by this source address
within a certain timeout."
::= 262 -- 0x0106
boardRemoval TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { chSlotID }
DESCRIPTION
"This trap will be generated when the MMAC detects
that a MIM has been removed."
::= 263 -- 0x0107
boardInsertion TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { chSlotID,
deviceType }
DESCRIPTION
"This trap will generated when the MMAC determines
that a new board has been inserted."
::= 264 -- 0x0108
redundActivePortInCircuitFailed TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortRedundCrctNum }
DESCRIPTION
"This trap will be generated when the active port in
a redundant circuit has failed polling. This will
indicate the activation of redundancy."
::= 265 -- 0x0109
redundPortActivated TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortRedundCrctNum }
DESCRIPTION
"This trap indicates that a new port has been
activated in a redundant circuit. This does NOT
indicate that this port is usable, but is being
tested. If the port fails, a failure trap (above)
will be generated."
::= 266 -- 0x010A
redundPortTestFailed TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortRedundCrctNum }
DESCRIPTION
"This trap will be generated when the MMAC executes
it's periodic redundancy diagnostics and finds one
of the ports in a redundant circuit has failed.
This message will not indicate that redundancy has
been activated, just that the port has failed and
should be fixed before it is needed."
::= 267 -- 0x010B
-- 268 allocated in cabletron-traps-irm.txt
-- 269 allocated in cabletron-traps-irm.txt
-- 270 allocated in cabletron-traps-irm.txt
boardTrafficThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpAlarmTrafThreshold,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId }
DESCRIPTION
"This trap will be generated when the traffic (good
packets per time interval) has been exceeded for a
particular MIM."
::= 271 -- 0x010F
boardErrorThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpAlarmErrThreshold,
rptrPortGrpAlarmErrSource,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId }
DESCRIPTION
"This trap will be generated when packets of the
selected error type exceeds a threshold percentage of
the good packets for a particular interval for a
particular MIM."
::= 272 -- 0x0110
boardCollsionThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpAlarmCollThreshold,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId }
DESCRIPTION
"This trap will be generated when collisions exceed a
threshold percentage of the good packets for a particular
interval for a particular MIM."
::= 273 -- 0x0111
portTrafficThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortAlarmTrafThreshold,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap will be generated when the traffic (good
packets per time interval) has been exceeded for a
particular port."
::= 274 -- 0x0112
portErrorThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortAlarmErrThreshold,
rptrPortAlarmErrSource,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap will be generated when packets of the
selected error type exceeds a threshold percentage of
the good packets for a particular interval for a
particular port."
::= 275 -- 0x0113
portCollsionThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortAlarmCollThreshold,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap will be generated when collisions exceed a
threshold percentage of the good packets for a particular
interval for a particular port."
::= 276 -- 0x0114
portTypeChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortSrcAddrTopoState }
DESCRIPTION
"This trap indicates that a port has changed from a
station port to a trunk port or vice versa."
::= 277 -- 0x0115
-- 278 allocated in cabletron-traps-irm.txt
portSecurityViolation TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortSrcAddrAddressList }
DESCRIPTION
"This trap is generated when a source address other
than those locked to a port is seen."
::= 279 -- 0x0117
portViolationReset TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap is generated when management intervention
has reset a port after a violation has occurred."
::= 280 -- 0x0118
envTempWarm TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { chSlotID }
DESCRIPTION
"This trap is generated when the device detects that
the temperature within a MIM has reached a WARM
condition."
::= 281 -- 0x0119
envTempHot TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { chSlotID }
DESCRIPTION
"This trap is generated when the device detects that
the temperature within a MIM has reached a HOT
condition."
::= 282 -- 0x011A
envVoltageLow TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { powerSupplyNum }
DESCRIPTION
"This trap is generated when a power supply's voltage
is LOW."
::= 283 -- 0x011B
envTempNormal TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { chSlotID }
DESCRIPTION
"This trap is generated when the device detects that
the temperature within a MIM has returned to a
NORMAL state."
::= 284 -- 0x011C
envVoltageNormal TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is generated when all power supplies' voltage
have returned to a NORMAL state."
::= 285 -- 0x011D
fanFail TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is generated when the device detects that
the system fans have failed."
::= 286 -- 0x011E
fanNormal TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is generated when the device detects that
the system fans have returned to normal."
::= 287 -- 0x011F
-- 288 allocated in cabletron-traps-irm.txt
boardBroadcastThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpAlarmBroadThreshold,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId }
DESCRIPTION
"This trap is generated when the broadcast packets
(per time interval) have exceeded the threshold for
the given board."
::= 289 -- 0x0121
portBroadcastThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortAlarmBroadThreshold,
rptrAlarmsAlarmTimebase,
rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap is generated when the broadcast packets
(per time interval) have exceeded the threshold for
the given port."
::= 290 -- 0x0122
systemVoltageLow TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is generated when the device detects that
the power to the EMME is low."
::= 293 -- 0x0125
systemVoltageNormal TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is generated when the device detects that
the power to the EMME has returned to normal."
::= 294 -- 0x0126
epimRemoval TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId }
DESCRIPTION
"This trap is generated when it is detected that an
EPIM has been removed."
::= 295 -- 0x0127
epimInsertion TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortMgmtPortType }
DESCRIPTION
"This trap is generated when it is detected that an
EPIM has been inserted."
::= 296 -- 0x0128
rptrTrafficThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrAlarmsTrafThreshold,
rptrAlarmsAlarmTimebase,
rptrMgmtInterfaceNum }
DESCRIPTION
"This trap will be generated when the traffic (good
packets per time interval) has been exceeded for a
network."
::= 297 -- 0x0129
fanMisconfigured TRAP-TYPE
ENTERPRISE cabletron
DESCRIPTION
"This trap is generated when the device detects that
the system fans are misconfigured."
::= 298 -- 0x012A
rptrErrorThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrAlarmsErrThreshold,
rptrAlarmsErrSource,
rptrAlarmsAlarmTimebase,
rptrMgmtInterfaceNum }
DESCRIPTION
"This trap will be generated when packets of the
selected error type exceeds a threshold percentage of
the good packets for a particular interval for an
entire network."
::= 304 -- 0x0130
rptrCollsionThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrAlarmsCollThreshold,
rptrAlarmsAlarmTimebase,
rptrMgmtInterfaceNum }
DESCRIPTION
"This trap will be generated when collisions exceed a
threshold percentage of the good packets for a particular
interval for an entire network."
::= 305 -- 0x0131
rptrLockStatusChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrSrcAddrMgmtPortLock,
rptrMgmtInterfaceNum }
DESCRIPTION
"This trap is generated when the status of the address
lock changes for a certain network."
::= 306 -- 0x0132
rptrBroadcastThresholdExceeded TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrAlarmsBroadThreshold,
rptrAlarmsAlarmTimebase,
rptrMgmtInterfaceNum }
DESCRIPTION
"This trap is generated when the broadcast packets
(per time interval) have exceeded the threshold for
the given repeater."
::= 307 -- 0x0133
-- 308 allocated in cabletron-traps-irm.txt
srcAddressPortLockStatusChange TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpMgmtGrpId,
rptrPortMgmtPortId,
rptrPortSecurityLockStatus }
DESCRIPTION
"This trap is generated when a change to the
source address locking is detected at the port level."
::= 309 -- 0x0135
chBoardInsertion TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { chSlotID,
chSlotModuleType }
DESCRIPTION
"This trap will generated when the MMAC determines
that a new board has been inserted."
::= 310 -- 0x0136
portSecureStateChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortSecurityPortGrpId,
rptrPortSecurityPortId,
rptrPortSecuritySecureState}
DESCRIPTION
"This trap is generated when the status of the secure state
changes for a specific port."
::= 313 -- 0x139
rptrLearnStateChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrMgmtInterfaceNum,
rptrSecurityLearnState }
DESCRIPTION
"This trap is generated when network learning is reset.
When learning is reset, all secure addresses on each
port, within the network, will be deleted and ports will
learn source addresses, again."
::= 314 -- 0x13A
rptrPortGrpLearnStateChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpSrcAddrLockGrpId,
rptrPortGrpSASecurityLearnState }
DESCRIPTION
"This trap is generated when port group learning is reset.
When learning is reset, all secure addresses on each port,
within the port group, will be deleted and ports will learn
source addresses, again."
::= 315 -- 0x13B
rptrPortLearnStateChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortSecurityPortGrpId,
rptrPortSecurityPortId,
rptrPortSecurityLearnState }
DESCRIPTION
"This trap is generated when learning on a port is reset.
When learning is reset, all secure addresses on the port
will be deleted and the port will learn source addresses,
again."
::= 316 -- 0x13C
rptrLearnModeChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrMgmtInterfaceNum,
rptrSecurityLearnMode }
DESCRIPTION
"This trap is generated when network learn mode is
changed between one-time learn mode and continuous
learn mode."
::= 317 -- 0x13D
portGrpLearnModeChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortGrpSrcAddrLockGrpId,
rptrPortGrpSASecurityLearnMode }
DESCRIPTION
"This trap is generated when the port group learn
mode is changed between one-time learn mode and
continuous learn mode."
::= 318 -- 0x13E
portLearnModeChanged TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortSecurityPortGrpId,
rptrPortSecurityPortId,
rptrPortSecurityLearnMode }
DESCRIPTION
"This trap is generated when the port learn
mode is changed between one-time learn mode and
continuous learn mode."
::= 319 -- 0x13F
fpportActivated TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { rptrPortMgmtPortId }
DESCRIPTION
"This trap is generated when a port is activated in
redundancy due to another port failing."
::= 400 -- 0x0190
interfacePortInsertion TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { ctIfNumber, ctIfPortPortNumber, ctIfPortType }
DESCRIPTION
"This trap will be generated when it is detected that an
interface port has been inserted."
::= 416 -- 0x1A0
interfacePortRemoval TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { ctIfNumber, ctIfPortPortNumber }
DESCRIPTION
"This trap will be generated when it is detected that an
interface port has been removed."
::= 417 -- 0x1A1
interfacePortLinkUp TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { ctIfNumber, ctIfPortPortNumber }
DESCRIPTION
"This trap will be generated when it is determined that
a port on a strictly bridging interface (not a 'repeater')
has been connected to a LAN. This is only appropriate
for ports that support the concept of a link state."
::= 418 -- 0x1A2
interfacePortLinkDown TRAP-TYPE
ENTERPRISE cabletron
VARIABLES { ctIfNumber, ctIfPortPortNumber }
DESCRIPTION
"This trap will be generated when a previously attached
bridging port has been disconnected from a LAN. This is
only appropriate for ports that support the concept of a
link state."
::= 419 -- 0x1A3
portInserted TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId,
tRingPortMgmtPortId }
DESCRIPTION
"This trap is sent when a stations port's link state
turns on while the management state of the port is
Enabled."
::= 513 -- 0x0201
portDeInserted TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId,
tRingPortMgmtPortId }
DESCRIPTION
"This trap is sent when a stations port's link state
turns off while the management state of the port is
Enabled."
::= 514 -- 0x0202
ringSpeedFault TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId }
DESCRIPTION
"This trap is sent when a board enters the ring speed
fault state due to a station or ring port attaching
to the board as a different speed than the board is
configured for."
::= 515 -- 0x0203
ringSpeedFaultCleared TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId }
DESCRIPTION
"This trap is sent when a board leaves the ring
speed fault state."
::= 516 -- 0x0204
ringPortFaulted TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId,
tRingPortMgmtPortId }
DESCRIPTION
"This trap is sent when a ring port wraps when its
management state is Active, without regard for the
selected type of the ring port."
::= 517 -- 0x0205
ringPortFaultCleared TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId,
tRingPortMgmtPortId }
DESCRIPTION
"This trap is sent when a ring port unwraps when its
management state is Active, without regard for the
selected type of the ring port."
::= 518 -- 0x0206
beaconState TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingStatsRingLastBeaconType,
tRingMgmtStnName,
tRingMgmtStnUNA,
tRingMgmtStnBoard,
tRingMgmtStnPort }
DESCRIPTION
"This trap occurs when a Beacon is detected on the
ring while the ring is in the Operational state, or
when the Beacon contains different information than
the last Beacon received."
::= 519 -- 0x0207
beaconStateCleared TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingStatsRingLastBeacon }
DESCRIPTION
"This trap occurs when a ring returns to the
Operational state."
::= 520 -- 0x0208
stationAdded TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingMgmtSecurityAddressAdd }
DESCRIPTION
"This trap is sent when a new station address is
added to the security allowed list"
::= 521 -- 0x0209
stationRemoved TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingMgmtSecurityAddressRemove }
DESCRIPTION
"This trap is sent when a station is rejected
from the ring with a REMOVE MAC command sent
by the ring security."
::= 522 -- 0x020a
ringConfigurationChanged TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
DESCRIPTION
"This trap is sent when the TRMM has built a
new station map."
::= 523 -- 0x020B
faultRecoveryPortRemoved TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId,
tRingPortMgmtPortId }
DESCRIPTION
"This trap is sent after a fault recovery condition
has been corrected, and reports that a port was
removed in the process of correcting the condition."
::= 524 -- 0x020C
faultRecoveryBoardBypassed TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId }
DESCRIPTION
"This trap is sent after a fault recovery condition
has been corrected, and reports that a board was
bypassed in the process of correcting the condition."
::= 525 -- 0x020D
portViolation TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId,
tRingPortMgmtPortId }
DESCRIPTION
"This trap is sent when a port link state turns on
and the port's management state is Disabled."
::= 526 -- 0x020E
portViolationCleared TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingPortGrpId,
tRingPortMgmtPortId }
DESCRIPTION
"This trap is sent when a port link state turns off
and the port's management state is Disabled."
::= 527 -- 0x020F
faultRecoveryOscillation TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
DESCRIPTION
"This trap is sent when the ring has oscillated several
times within a short amount of time. The ring is
considered oscillating if it has failed a short time
after recovering."
::= 528 -- 0x0210
ringPurgeThreshold TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingAlarmsRingRingPurgesThreshold,
tRingAlarmsRingTimebase }
DESCRIPTION
"This trap is sent when ring purge errors have exceeded
the specified threshold value."
::= 529 -- 0x0211
amErrorsThreshold TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingAlarmsRingAMPErrsThreshold,
tRingAlarmsRingTimebase }
DESCRIPTION
"This trap is sent when Active Monitor errors have exceeded
the specified threshold value."
::= 530 -- 0x0212
tokenErrorsThreshold TRAP-TYPE
-- STATUS deprecated
ENTERPRISE cabletron
VARIABLES { tRingAlarmsRingTokenErrsThreshold,