1--
2-- TELESTE-LUMINATO-MIB2.mib
3--
4-- *****************************************************************************
5-- Copyright (c) 2000-2012 by:
6--
7-- Teleste Corporation
8-- Seponkatu 1
9-- FIN-20660 Littoinen, Finland
10-- tel. +358 2 2605 611
11-- url: http://www.teleste.com
12--
13-- Description: Objects for Luminato
14--
15-- Revision History:
16-- -----------------
17-- 1.0  27.03.2012 Sergey Egorov
18-- - Initial release
19-- ****************************************************************************
20--
21
22	TELESTE-LUMINATO-MIB2 DEFINITIONS ::= BEGIN
23
24		IMPORTS
25			OBJECT-TYPE
26				FROM RFC-1212
27			NOTIFICATION-TYPE
28				FROM SNMPv2-SMI
29			TimeTicks
30				FROM RFC1155-SMI
31			DisplayString
32				FROM RFC1213-MIB
33			Unsigned32
34				FROM SNMPv2-SMI
35			luminato
36				FROM TELESTE-ROOT-MIB;
37
38
39
40--
41-- Node definitions
42--
43		-- Traps node
44		-- 1.3.6.1.4.1.3715.17.4
45		notifications OBJECT IDENTIFIER ::= { luminato 4 }
46
47		-- Params node
48		-- 1.3.6.1.4.1.3715.17.4.1
49		params OBJECT IDENTIFIER ::= { notifications 1 }
50
51		-- Severity
52		-- 1.3.6.1.4.1.3715.17.4.1.1
53		severity OBJECT-TYPE
54			SYNTAX INTEGER
55			{
56	  			severityEmergency(0),
57	  			severityAlert(1),
58	  			severityCritical(2),
59	  			severityError(3),
60	  			severityWarning(4),
61	  			severityNotice(5),
62	  			severityInformational(6),
63	  			severityDebug(7),
64	  			severityNominal(8)
65	  		}
66			MAX-ACCESS accessible-for-notify
67			STATUS current
68			DESCRIPTION
69				"Severity level of alarm. severityNominal(8) means that alarm condition is removed."
70			::= { params 1 }
71
72		-- Module
73		-- 1.3.6.1.4.1.3715.17.4.1.2
74		module OBJECT-TYPE
75			SYNTAX INTEGER
76			{
77	  			moduleChassis(0),
78	  			moduleSlot1(1),
79	  			moduleSlot2(2),
80	  			moduleSlot3(3),
81	  			moduleSlot4(4),
82	  			moduleSlot5(5),
83	  			moduleSlot6(6),
84	  			modulePsu(7)
85	  		}
86			MAX-ACCESS accessible-for-notify
87			STATUS current
88			DESCRIPTION
89				"Module which cause the alarm."
90			::= { params 2 }
91
92		-- description
93		-- 1.3.6.1.4.1.3715.17.4.1.8
94		description OBJECT-TYPE
95			SYNTAX OCTET STRING
96			MAX-ACCESS accessible-for-notify
97			STATUS current
98			DESCRIPTION
99				"Description."
100			::= { params 8 }
101		-- reason
102		-- 1.3.6.1.4.1.3715.17.4.1.10
103		reason OBJECT-TYPE
104			SYNTAX Unsigned32
105			MAX-ACCESS accessible-for-notify
106			STATUS current
107			DESCRIPTION
108				"Reason code."
109			::= { params 10 }
110
111		paramTable OBJECT-TYPE
112			SYNTAX SEQUENCE OF ParamEntry
113			ACCESS not-accessible
114			STATUS optional
115			::= { params 11 }
116
117		paramEntry OBJECT-TYPE
118			SYNTAX ParamEntry
119			MAX-ACCESS accessible-for-notify
120			STATUS current
121			INDEX { paramIdx }
122			::= { paramTable 1 }
123
124		ParamEntry ::=
125			SEQUENCE {
126				paramIdx
127					INTEGER,
128				paramValue
129					Unsigned32
130			 }
131
132		paramIdx OBJECT-TYPE
133			SYNTAX INTEGER (1..4)
134			MAX-ACCESS not-accessible
135			STATUS current
136			DESCRIPTION
137				"Index of the table."
138			::= { paramEntry 1 }
139
140		paramValue OBJECT-TYPE
141			SYNTAX Unsigned32
142			MAX-ACCESS accessible-for-notify
143			STATUS current
144			DESCRIPTION
145				"Value of param."
146			::= { paramEntry 2 }
147
148		-- Traps node
149		-- 1.3.6.1.4.1.3715.17.4.2
150		traps OBJECT IDENTIFIER ::= { notifications 2 }
151		generic OBJECT IDENTIFIER ::= { traps 1 }
152
153		-- 1.3.6.1.4.1.3715.17.4.2.1.1
154		extendedAlarmEvent NOTIFICATION-TYPE
155			OBJECTS {
156				severity,
157				module,
158				reason,
159				description,
160				paramTable
161			}
162			STATUS  current
163			DESCRIPTION
164				"The generic SNMP trap that is generated when an alarm event is found."
165				::= { generic 1 }
166
167			specific OBJECT IDENTIFIER ::= { traps 2 }
168
169-- %FORMAT_TRAP_BEGIN%
170
171-- extended%NAME%AlarmEvent NOTIFICATION-TYPE
172-- OBJECTS {
173--     severity,
174--     module,
175--     reason,
176--     description,
177--     paramTable
178-- }
179-- STATUS  current
180-- DESCRIPTION
181-- 		"The SNMP trap that is generated when an alarm event with id %ID% - '%ID_TEXT%' is found."
182-- 		::= { specific %ID% }
183-- %FORMAT_TRAP_END%
184-- %BEGIN_DEFINE_TRAPS%
185
186 extendedPidMissingAlarmEvent NOTIFICATION-TYPE
187 OBJECTS {
188     severity,
189     module,
190     reason,
191     description,
192     paramTable
193 }
194 STATUS  current
195 DESCRIPTION
196 		"The SNMP trap that is generated when an alarm event with id 2 - 'PID missing' is found."
197 		::= { specific 2 }
198
199 extendedServiceMissingAlarmEvent NOTIFICATION-TYPE
200 OBJECTS {
201     severity,
202     module,
203     reason,
204     description,
205     paramTable
206 }
207 STATUS  current
208 DESCRIPTION
209 		"The SNMP trap that is generated when an alarm event with id 3 - 'Service missing' is found."
210 		::= { specific 3 }
211
212 extendedPidConflictAlarmEvent NOTIFICATION-TYPE
213 OBJECTS {
214     severity,
215     module,
216     reason,
217     description,
218     paramTable
219 }
220 STATUS  current
221 DESCRIPTION
222 		"The SNMP trap that is generated when an alarm event with id 4 - 'PID conflict' is found."
223 		::= { specific 4 }
224
225 extendedTemperatureTooHighAlarmEvent NOTIFICATION-TYPE
226 OBJECTS {
227     severity,
228     module,
229     reason,
230     description,
231     paramTable
232 }
233 STATUS  current
234 DESCRIPTION
235 		"The SNMP trap that is generated when an alarm event with id 6 - 'Temperature too high' is found."
236 		::= { specific 6 }
237
238 extendedTemperatureTooLowAlarmEvent NOTIFICATION-TYPE
239 OBJECTS {
240     severity,
241     module,
242     reason,
243     description,
244     paramTable
245 }
246 STATUS  current
247 DESCRIPTION
248 		"The SNMP trap that is generated when an alarm event with id 7 - 'Temperature too low' is found."
249 		::= { specific 7 }
250
251 extendedManualTableInsertionFailedAlarmEvent NOTIFICATION-TYPE
252 OBJECTS {
253     severity,
254     module,
255     reason,
256     description,
257     paramTable
258 }
259 STATUS  current
260 DESCRIPTION
261 		"The SNMP trap that is generated when an alarm event with id 8 - 'Manual table insertion failed' is found."
262 		::= { specific 8 }
263
264 extendedAlertMessageAlarmEvent NOTIFICATION-TYPE
265 OBJECTS {
266     severity,
267     module,
268     reason,
269     description,
270     paramTable
271 }
272 STATUS  current
273 DESCRIPTION
274 		"The SNMP trap that is generated when an alarm event with id 10 - 'Alert message' is found."
275 		::= { specific 10 }
276
277 extendedServicesPassthroughAlarmEvent NOTIFICATION-TYPE
278 OBJECTS {
279     severity,
280     module,
281     reason,
282     description,
283     paramTable
284 }
285 STATUS  current
286 DESCRIPTION
287 		"The SNMP trap that is generated when an alarm event with id 11 - 'Services passthrough - duplicated SID from input stream not passed through' is found."
288 		::= { specific 11 }
289
290 extendedPsigTableInsertionFailedAlarmEvent NOTIFICATION-TYPE
291 OBJECTS {
292     severity,
293     module,
294     reason,
295     description,
296     paramTable
297 }
298 STATUS  current
299 DESCRIPTION
300 		"The SNMP trap that is generated when an alarm event with id 15 - 'Psig table insertion failed' is found."
301 		::= { specific 15 }
302
303 extendedModuleOffAlarmEvent NOTIFICATION-TYPE
304 OBJECTS {
305     severity,
306     module,
307     reason,
308     description,
309     paramTable
310 }
311 STATUS  current
312 DESCRIPTION
313 		"The SNMP trap that is generated when an alarm event with id 4096 - 'Off' is found."
314 		::= { specific 4096 }
315
316 extendedSignalMissingAlarmEvent NOTIFICATION-TYPE
317 OBJECTS {
318     severity,
319     module,
320     reason,
321     description,
322     paramTable
323 }
324 STATUS  current
325 DESCRIPTION
326 		"The SNMP trap that is generated when an alarm event with id 4097 - 'Signal missing' is found."
327 		::= { specific 4097 }
328
329 extendedNoTsSyncAlarmEvent NOTIFICATION-TYPE
330 OBJECTS {
331     severity,
332     module,
333     reason,
334     description,
335     paramTable
336 }
337 STATUS  current
338 DESCRIPTION
339 		"The SNMP trap that is generated when an alarm event with id 4098 - 'No TS sync' is found."
340 		::= { specific 4098 }
341
342 extendedTsRxErrorsAlarmEvent NOTIFICATION-TYPE
343 OBJECTS {
344     severity,
345     module,
346     reason,
347     description,
348     paramTable
349 }
350 STATUS  current
351 DESCRIPTION
352 		"The SNMP trap that is generated when an alarm event with id 4099 - 'TS RX errors' is found."
353 		::= { specific 4099 }
354
355 extendedTsInputBufferOverflowAlarmEvent NOTIFICATION-TYPE
356 OBJECTS {
357     severity,
358     module,
359     reason,
360     description,
361     paramTable
362 }
363 STATUS  current
364 DESCRIPTION
365 		"The SNMP trap that is generated when an alarm event with id 4100 - 'TS input buffer overflow' is found."
366 		::= { specific 4100 }
367
368 extendedAsiLinkDownAlarmEvent NOTIFICATION-TYPE
369 OBJECTS {
370     severity,
371     module,
372     reason,
373     description,
374     paramTable
375 }
376 STATUS  current
377 DESCRIPTION
378 		"The SNMP trap that is generated when an alarm event with id 4102 - 'ASI link down' is found."
379 		::= { specific 4102 }
380
381 extendedForbiddenNetworkAlarmEvent NOTIFICATION-TYPE
382 OBJECTS {
383     severity,
384     module,
385     reason,
386     description,
387     paramTable
388 }
389 STATUS  current
390 DESCRIPTION
391 		"The SNMP trap that is generated when an alarm event with id 4103 - 'Forbidden network' is found."
392 		::= { specific 4103 }
393
394 extendedPidCapacityExceededAlarmEvent NOTIFICATION-TYPE
395 OBJECTS {
396     severity,
397     module,
398     reason,
399     description,
400     paramTable
401 }
402 STATUS  current
403 DESCRIPTION
404 		"The SNMP trap that is generated when an alarm event with id 4104 - 'PID capacity exceeded' is found."
405 		::= { specific 4104 }
406
407 extendedPsiSiCaptureCapacityExceededAlarmEvent NOTIFICATION-TYPE
408 OBJECTS {
409     severity,
410     module,
411     reason,
412     description,
413     paramTable
414 }
415 STATUS  current
416 DESCRIPTION
417 		"The SNMP trap that is generated when an alarm event with id 4105 - 'PSI/SI capture capacity exceeded' is found."
418 		::= { specific 4105 }
419
420 extendedOutOfServiceIdsAlarmEvent NOTIFICATION-TYPE
421 OBJECTS {
422     severity,
423     module,
424     reason,
425     description,
426     paramTable
427 }
428 STATUS  current
429 DESCRIPTION
430 		"The SNMP trap that is generated when an alarm event with id 4106 - 'Out of service ID's' is found."
431 		::= { specific 4106 }
432
433 extendedCaModuleMissingAlarmEvent NOTIFICATION-TYPE
434 OBJECTS {
435     severity,
436     module,
437     reason,
438     description,
439     paramTable
440 }
441 STATUS  current
442 DESCRIPTION
443 		"The SNMP trap that is generated when an alarm event with id 4108 - 'CA module missing' is found."
444 		::= { specific 4108 }
445
446 extendedPsiSiInsertCapacityExceededAlarmEvent NOTIFICATION-TYPE
447 OBJECTS {
448     severity,
449     module,
450     reason,
451     description,
452     paramTable
453 }
454 STATUS  current
455 DESCRIPTION
456 		"The SNMP trap that is generated when an alarm event with id 4109 - 'PSI/SI insert capacity exceeded' is found."
457 		::= { specific 4109 }
458
459 extendedMultiplexOversubscriptionPacketsDiscardedAlarmEvent NOTIFICATION-TYPE
460 OBJECTS {
461     severity,
462     module,
463     reason,
464     description,
465     paramTable
466 }
467 STATUS  current
468 DESCRIPTION
469 		"The SNMP trap that is generated when an alarm event with id 4110 - 'Multiplex oversubscription, packets discarded' is found."
470 		::= { specific 4110 }
471
472 extendedUnknownModuleAlarmEvent NOTIFICATION-TYPE
473 OBJECTS {
474     severity,
475     module,
476     reason,
477     description,
478     paramTable
479 }
480 STATUS  current
481 DESCRIPTION
482 		"The SNMP trap that is generated when an alarm event with id 4111 - 'Unknown module' is found."
483 		::= { specific 4111 }
484
485 extendedMainVoltageTooHighAlarmEvent NOTIFICATION-TYPE
486 OBJECTS {
487     severity,
488     module,
489     reason,
490     description,
491     paramTable
492 }
493 STATUS  current
494 DESCRIPTION
495 		"The SNMP trap that is generated when an alarm event with id 4112 - 'Main voltage too high' is found."
496 		::= { specific 4112 }
497
498 extendedMainVoltageTooLowAlarmEvent NOTIFICATION-TYPE
499 OBJECTS {
500     severity,
501     module,
502     reason,
503     description,
504     paramTable
505 }
506 STATUS  current
507 DESCRIPTION
508 		"The SNMP trap that is generated when an alarm event with id 4113 - 'Main voltage too low' is found."
509 		::= { specific 4113 }
510
511 extendedCurrentTooHighAlarmEvent NOTIFICATION-TYPE
512 OBJECTS {
513     severity,
514     module,
515     reason,
516     description,
517     paramTable
518 }
519 STATUS  current
520 DESCRIPTION
521 		"The SNMP trap that is generated when an alarm event with id 4114 - 'Current too high' is found."
522 		::= { specific 4114 }
523
524 extendedCurrentTooLowAlarmEvent NOTIFICATION-TYPE
525 OBJECTS {
526     severity,
527     module,
528     reason,
529     description,
530     paramTable
531 }
532 STATUS  current
533 DESCRIPTION
534 		"The SNMP trap that is generated when an alarm event with id 4115 - 'Current too low' is found."
535 		::= { specific 4115 }
536
537 extendedDaemonInitializationFailedAlarmEvent NOTIFICATION-TYPE
538 OBJECTS {
539     severity,
540     module,
541     reason,
542     description,
543     paramTable
544 }
545 STATUS  current
546 DESCRIPTION
547 		"The SNMP trap that is generated when an alarm event with id 4127 - 'Daemon initialization failed' is found."
548 		::= { specific 4127 }
549
550 extendedDeviceDriverFailureAlarmEvent NOTIFICATION-TYPE
551 OBJECTS {
552     severity,
553     module,
554     reason,
555     description,
556     paramTable
557 }
558 STATUS  current
559 DESCRIPTION
560 		"The SNMP trap that is generated when an alarm event with id 4129 - 'Device driver failure' is found."
561 		::= { specific 4129 }
562
563 extendedHardwareFailureAlarmEvent NOTIFICATION-TYPE
564 OBJECTS {
565     severity,
566     module,
567     reason,
568     description,
569     paramTable
570 }
571 STATUS  current
572 DESCRIPTION
573 		"The SNMP trap that is generated when an alarm event with id 4130 - 'Hardware failure' is found."
574 		::= { specific 4130 }
575
576 extendedFanFailureAlarmEvent NOTIFICATION-TYPE
577 OBJECTS {
578     severity,
579     module,
580     reason,
581     description,
582     paramTable
583 }
584 STATUS  current
585 DESCRIPTION
586 		"The SNMP trap that is generated when an alarm event with id 4131 - 'Fan failure' is found."
587 		::= { specific 4131 }
588
589 extendedRunningOnBackupPowerAlarmEvent NOTIFICATION-TYPE
590 OBJECTS {
591     severity,
592     module,
593     reason,
594     description,
595     paramTable
596 }
597 STATUS  current
598 DESCRIPTION
599 		"The SNMP trap that is generated when an alarm event with id 4132 - 'Running on backup power' is found."
600 		::= { specific 4132 }
601
602 extendedPowerSupplyOverloadedAlarmEvent NOTIFICATION-TYPE
603 OBJECTS {
604     severity,
605     module,
606     reason,
607     description,
608     paramTable
609 }
610 STATUS  current
611 DESCRIPTION
612 		"The SNMP trap that is generated when an alarm event with id 4133 - 'Power supply overloaded' is found."
613 		::= { specific 4133 }
614
615 extendedBootingUpAlarmEvent NOTIFICATION-TYPE
616 OBJECTS {
617     severity,
618     module,
619     reason,
620     description,
621     paramTable
622 }
623 STATUS  current
624 DESCRIPTION
625 		"The SNMP trap that is generated when an alarm event with id 4134 - 'Booting up' is found."
626 		::= { specific 4134 }
627
628 extendedBootFailedRetryingAlarmEvent NOTIFICATION-TYPE
629 OBJECTS {
630     severity,
631     module,
632     reason,
633     description,
634     paramTable
635 }
636 STATUS  current
637 DESCRIPTION
638 		"The SNMP trap that is generated when an alarm event with id 4135 - 'Boot failed: retrying' is found."
639 		::= { specific 4135 }
640
641 extendedBootFailedAlarmEvent NOTIFICATION-TYPE
642 OBJECTS {
643     severity,
644     module,
645     reason,
646     description,
647     paramTable
648 }
649 STATUS  current
650 DESCRIPTION
651 		"The SNMP trap that is generated when an alarm event with id 4136 - 'Boot failed' is found."
652 		::= { specific 4136 }
653
654 extendedShuttingDownAlarmEvent NOTIFICATION-TYPE
655 OBJECTS {
656     severity,
657     module,
658     reason,
659     description,
660     paramTable
661 }
662 STATUS  current
663 DESCRIPTION
664 		"The SNMP trap that is generated when an alarm event with id 4137 - 'Shutting down' is found."
665 		::= { specific 4137 }
666
667 extendedConnectionLostAlarmEvent NOTIFICATION-TYPE
668 OBJECTS {
669     severity,
670     module,
671     reason,
672     description,
673     paramTable
674 }
675 STATUS  current
676 DESCRIPTION
677 		"The SNMP trap that is generated when an alarm event with id 4138 - 'Connection lost' is found."
678 		::= { specific 4138 }
679
680 extendedIncompatibleModuleDisabledAlarmEvent NOTIFICATION-TYPE
681 OBJECTS {
682     severity,
683     module,
684     reason,
685     description,
686     paramTable
687 }
688 STATUS  current
689 DESCRIPTION
690 		"The SNMP trap that is generated when an alarm event with id 4139 - 'Incompatible module disabled' is found."
691 		::= { specific 4139 }
692
693 extendedFailedToBootAlarmEvent NOTIFICATION-TYPE
694 OBJECTS {
695     severity,
696     module,
697     reason,
698     description,
699     paramTable
700 }
701 STATUS  current
702 DESCRIPTION
703 		"The SNMP trap that is generated when an alarm event with id 4141 - 'Failed to boot' is found."
704 		::= { specific 4141 }
705
706 extendedUpcTooLowInputPowerAlarmEvent NOTIFICATION-TYPE
707 OBJECTS {
708     severity,
709     module,
710     reason,
711     description,
712     paramTable
713 }
714 STATUS  current
715 DESCRIPTION
716 		"The SNMP trap that is generated when an alarm event with id 4147 - 'UPC too low input power' is found."
717 		::= { specific 4147 }
718
719 extendedUpcTooHighInputPowerAlarmEvent NOTIFICATION-TYPE
720 OBJECTS {
721     severity,
722     module,
723     reason,
724     description,
725     paramTable
726 }
727 STATUS  current
728 DESCRIPTION
729 		"The SNMP trap that is generated when an alarm event with id 4148 - 'UPC too high input power' is found."
730 		::= { specific 4148 }
731
732 extendedCalibrationDataMissingAlarmEvent NOTIFICATION-TYPE
733 OBJECTS {
734     severity,
735     module,
736     reason,
737     description,
738     paramTable
739 }
740 STATUS  current
741 DESCRIPTION
742 		"The SNMP trap that is generated when an alarm event with id 4149 - 'Calibration data missing' is found."
743 		::= { specific 4149 }
744
745 extendedCalibrationCheckSkippedAlarmEvent NOTIFICATION-TYPE
746 OBJECTS {
747     severity,
748     module,
749     reason,
750     description,
751     paramTable
752 }
753 STATUS  current
754 DESCRIPTION
755 		"The SNMP trap that is generated when an alarm event with id 4150 - 'Calibration check skipped' is found."
756 		::= { specific 4150 }
757
758 extendedDescramblingFailureAlarmEvent NOTIFICATION-TYPE
759 OBJECTS {
760     severity,
761     module,
762     reason,
763     description,
764     paramTable
765 }
766 STATUS  current
767 DESCRIPTION
768 		"The SNMP trap that is generated when an alarm event with id 4151 - 'Descrambling failure' is found."
769 		::= { specific 4151 }
770
771 extendedBackupSwitchedOverToBackupDeviceAlarmEvent NOTIFICATION-TYPE
772 OBJECTS {
773     severity,
774     module,
775     reason,
776     description,
777     paramTable
778 }
779 STATUS  current
780 DESCRIPTION
781 		"The SNMP trap that is generated when an alarm event with id 4153 - 'Backup: Switched over to backup device' is found."
782 		::= { specific 4153 }
783
784 extendedFailedToQuerySomeOfTheNitDataAlarmEvent NOTIFICATION-TYPE
785 OBJECTS {
786     severity,
787     module,
788     reason,
789     description,
790     paramTable
791 }
792 STATUS  current
793 DESCRIPTION
794 		"The SNMP trap that is generated when an alarm event with id 4157 - 'Failed to query some of the NIT data' is found."
795 		::= { specific 4157 }
796
797 extendedNitWizardFailureAlarmEvent NOTIFICATION-TYPE
798 OBJECTS {
799     severity,
800     module,
801     reason,
802     description,
803     paramTable
804 }
805 STATUS  current
806 DESCRIPTION
807 		"The SNMP trap that is generated when an alarm event with id 4158 - 'NIT wizard failure' is found."
808 		::= { specific 4158 }
809
810 extendedDuplicateFrequencyInTwoOrMoreSelectedQamOutputsAlarmEvent NOTIFICATION-TYPE
811 OBJECTS {
812     severity,
813     module,
814     reason,
815     description,
816     paramTable
817 }
818 STATUS  current
819 DESCRIPTION
820 		"The SNMP trap that is generated when an alarm event with id 4159 - 'Duplicate frequency in two or more selected QAM outputs' is found."
821 		::= { specific 4159 }
822
823 extendedCannotResolveTableVersionUsingDefaultAlarmEvent NOTIFICATION-TYPE
824 OBJECTS {
825     severity,
826     module,
827     reason,
828     description,
829     paramTable
830 }
831 STATUS  current
832 DESCRIPTION
833 		"The SNMP trap that is generated when an alarm event with id 4160 - 'Cannot resolve table version: using default' is found."
834 		::= { specific 4160 }
835
836 extendedSidConflictAlarmEvent NOTIFICATION-TYPE
837 OBJECTS {
838     severity,
839     module,
840     reason,
841     description,
842     paramTable
843 }
844 STATUS  current
845 DESCRIPTION
846 		"The SNMP trap that is generated when an alarm event with id 4173 - 'SID conflict' is found."
847 		::= { specific 4173 }
848
849 extendedUnsupportedConfigurationAlarmEvent NOTIFICATION-TYPE
850 OBJECTS {
851     severity,
852     module,
853     reason,
854     description,
855     paramTable
856 }
857 STATUS  current
858 DESCRIPTION
859 		"The SNMP trap that is generated when an alarm event with id 4175 - 'Unsupported configuration' is found."
860 		::= { specific 4175 }
861
862 extendedFrequencyOutOfRangeAlarmEvent NOTIFICATION-TYPE
863 OBJECTS {
864     severity,
865     module,
866     reason,
867     description,
868     paramTable
869 }
870 STATUS  current
871 DESCRIPTION
872 		"The SNMP trap that is generated when an alarm event with id 4176 - 'Frequency out of range' is found."
873 		::= { specific 4176 }
874
875 extendedOutputPowerOutOfRangeAlarmEvent NOTIFICATION-TYPE
876 OBJECTS {
877     severity,
878     module,
879     reason,
880     description,
881     paramTable
882 }
883 STATUS  current
884 DESCRIPTION
885 		"The SNMP trap that is generated when an alarm event with id 4177 - 'Output power out of range' is found."
886 		::= { specific 4177 }
887
888 extendedSymbolrateOutOfRangeAlarmEvent NOTIFICATION-TYPE
889 OBJECTS {
890     severity,
891     module,
892     reason,
893     description,
894     paramTable
895 }
896 STATUS  current
897 DESCRIPTION
898 		"The SNMP trap that is generated when an alarm event with id 4178 - 'Symbolrate out of range' is found."
899 		::= { specific 4178 }
900
901 extendedChannelDistanceTooNarrowAlarmEvent NOTIFICATION-TYPE
902 OBJECTS {
903     severity,
904     module,
905     reason,
906     description,
907     paramTable
908 }
909 STATUS  current
910 DESCRIPTION
911 		"The SNMP trap that is generated when an alarm event with id 4179 - 'Channel distance too narrow' is found."
912 		::= { specific 4179 }
913
914 extendedInvalidLnbVoltageConfigurationAlarmEvent NOTIFICATION-TYPE
915 OBJECTS {
916     severity,
917     module,
918     reason,
919     description,
920     paramTable
921 }
922 STATUS  current
923 DESCRIPTION
924 		"The SNMP trap that is generated when an alarm event with id 4180 - 'Invalid LNB voltage configuration' is found."
925 		::= { specific 4180 }
926
927 extendedInvalidFecRateForSelectedModulationAlarmEvent NOTIFICATION-TYPE
928 OBJECTS {
929     severity,
930     module,
931     reason,
932     description,
933     paramTable
934 }
935 STATUS  current
936 DESCRIPTION
937 		"The SNMP trap that is generated when an alarm event with id 4181 - 'Invalid FEC rate for selected modulation' is found."
938 		::= { specific 4181 }
939
940 extendedLnbCurrentAlarmEvent NOTIFICATION-TYPE
941 OBJECTS {
942     severity,
943     module,
944     reason,
945     description,
946     paramTable
947 }
948 STATUS  current
949 DESCRIPTION
950 		"The SNMP trap that is generated when an alarm event with id 4182 - 'LNB current' is found."
951 		::= { specific 4182 }
952
953 extendedFrequencyOffsetAlarmEvent NOTIFICATION-TYPE
954 OBJECTS {
955     severity,
956     module,
957     reason,
958     description,
959     paramTable
960 }
961 STATUS  current
962 DESCRIPTION
963 		"The SNMP trap that is generated when an alarm event with id 4183 - 'Frequency offset' is found."
964 		::= { specific 4183 }
965
966 extendedRestartingDescramblingAlarmEvent NOTIFICATION-TYPE
967 OBJECTS {
968     severity,
969     module,
970     reason,
971     description,
972     paramTable
973 }
974 STATUS  current
975 DESCRIPTION
976 		"The SNMP trap that is generated when an alarm event with id 4185 - 'Restarting descrambling' is found."
977 		::= { specific 4185 }
978
979 extendedRebootingCamAlarmEvent NOTIFICATION-TYPE
980 OBJECTS {
981     severity,
982     module,
983     reason,
984     description,
985     paramTable
986 }
987 STATUS  current
988 DESCRIPTION
989 		"The SNMP trap that is generated when an alarm event with id 4186 - 'Rebooting CAM' is found."
990 		::= { specific 4186 }
991
992 extendedEcmgFailureAlarmEvent NOTIFICATION-TYPE
993 OBJECTS {
994     severity,
995     module,
996     reason,
997     description,
998     paramTable
999 }
1000 STATUS  current
1001 DESCRIPTION
1002 		"The SNMP trap that is generated when an alarm event with id 4187 - 'ECMG failure' is found."
1003 		::= { specific 4187 }
1004
1005 extendedEcmStreamFailureAlarmEvent NOTIFICATION-TYPE
1006 OBJECTS {
1007     severity,
1008     module,
1009     reason,
1010     description,
1011     paramTable
1012 }
1013 STATUS  current
1014 DESCRIPTION
1015 		"The SNMP trap that is generated when an alarm event with id 4188 - 'ECM stream failure' is found."
1016 		::= { specific 4188 }
1017
1018 extendedEmmFailureAlarmEvent NOTIFICATION-TYPE
1019 OBJECTS {
1020     severity,
1021     module,
1022     reason,
1023     description,
1024     paramTable
1025 }
1026 STATUS  current
1027 DESCRIPTION
1028 		"The SNMP trap that is generated when an alarm event with id 4189 - 'EMM failure' is found."
1029 		::= { specific 4189 }
1030
1031 extendedEmmStreamFailureAlarmEvent NOTIFICATION-TYPE
1032 OBJECTS {
1033     severity,
1034     module,
1035     reason,
1036     description,
1037     paramTable
1038 }
1039 STATUS  current
1040 DESCRIPTION
1041 		"The SNMP trap that is generated when an alarm event with id 4190 - 'EMM stream failure' is found."
1042 		::= { specific 4190 }
1043
1044 extendedEcmgNotConnectedAlarmEvent NOTIFICATION-TYPE
1045 OBJECTS {
1046     severity,
1047     module,
1048     reason,
1049     description,
1050     paramTable
1051 }
1052 STATUS  current
1053 DESCRIPTION
1054 		"The SNMP trap that is generated when an alarm event with id 4191 - 'ECMG not connected' is found."
1055 		::= { specific 4191 }
1056
1057 extendedEmmNotConnectedAlarmEvent NOTIFICATION-TYPE
1058 OBJECTS {
1059     severity,
1060     module,
1061     reason,
1062     description,
1063     paramTable
1064 }
1065 STATUS  current
1066 DESCRIPTION
1067 		"The SNMP trap that is generated when an alarm event with id 4192 - 'EMM not connected' is found."
1068 		::= { specific 4192 }
1069
1070 extendedScsNotLicensedAlarmEvent NOTIFICATION-TYPE
1071 OBJECTS {
1072     severity,
1073     module,
1074     reason,
1075     description,
1076     paramTable
1077 }
1078 STATUS  current
1079 DESCRIPTION
1080 		"The SNMP trap that is generated when an alarm event with id 4193 - 'SCS not licensed' is found."
1081 		::= { specific 4193 }
1082
1083 extendedEcmgSwitchedToSpareServerAlarmEvent NOTIFICATION-TYPE
1084 OBJECTS {
1085     severity,
1086     module,
1087     reason,
1088     description,
1089     paramTable
1090 }
1091 STATUS  current
1092 DESCRIPTION
1093 		"The SNMP trap that is generated when an alarm event with id 4194 - 'ECMG switched to spare server' is found."
1094 		::= { specific 4194 }
1095
1096 extendedUpdatedBootLoaderAvailableAlarmEvent NOTIFICATION-TYPE
1097 OBJECTS {
1098     severity,
1099     module,
1100     reason,
1101     description,
1102     paramTable
1103 }
1104 STATUS  current
1105 DESCRIPTION
1106 		"The SNMP trap that is generated when an alarm event with id 4195 - 'Updated boot loader available' is found."
1107 		::= { specific 4195 }
1108
1109 extendedUpdatingStage1BootLoaderAlarmEvent NOTIFICATION-TYPE
1110 OBJECTS {
1111     severity,
1112     module,
1113     reason,
1114     description,
1115     paramTable
1116 }
1117 STATUS  current
1118 DESCRIPTION
1119 		"The SNMP trap that is generated when an alarm event with id 4196 - 'Updating stage 1 boot loader' is found."
1120 		::= { specific 4196 }
1121
1122 extendedUpdatingStage2BootLoaderAlarmEvent NOTIFICATION-TYPE
1123 OBJECTS {
1124     severity,
1125     module,
1126     reason,
1127     description,
1128     paramTable
1129 }
1130 STATUS  current
1131 DESCRIPTION
1132 		"The SNMP trap that is generated when an alarm event with id 4197 - 'Updating stage 2 boot loader' is found."
1133 		::= { specific 4197 }
1134
1135 extendedFailedToUpdateStage1BootLoaderAlarmEvent NOTIFICATION-TYPE
1136 OBJECTS {
1137     severity,
1138     module,
1139     reason,
1140     description,
1141     paramTable
1142 }
1143 STATUS  current
1144 DESCRIPTION
1145 		"The SNMP trap that is generated when an alarm event with id 4198 - 'Failed to update stage 1 boot loader' is found."
1146 		::= { specific 4198 }
1147
1148 extendedFailedToUpdateStage2BootLoaderAlarmEvent NOTIFICATION-TYPE
1149 OBJECTS {
1150     severity,
1151     module,
1152     reason,
1153     description,
1154     paramTable
1155 }
1156 STATUS  current
1157 DESCRIPTION
1158 		"The SNMP trap that is generated when an alarm event with id 4199 - 'Failed to update stage 2 boot loader' is found."
1159 		::= { specific 4199 }
1160
1161 extendedBackupActiveBackupAlarmEvent NOTIFICATION-TYPE
1162 OBJECTS {
1163     severity,
1164     module,
1165     reason,
1166     description,
1167     paramTable
1168 }
1169 STATUS  current
1170 DESCRIPTION
1171 		"The SNMP trap that is generated when an alarm event with id 4203 - 'Backup: Active Backup' is found."
1172 		::= { specific 4203 }
1173
1174 extendedConfiguringModuleAlarmEvent NOTIFICATION-TYPE
1175 OBJECTS {
1176     severity,
1177     module,
1178     reason,
1179     description,
1180     paramTable
1181 }
1182 STATUS  current
1183 DESCRIPTION
1184 		"The SNMP trap that is generated when an alarm event with id 4205 - 'Configuring module' is found."
1185 		::= { specific 4205 }
1186
1187 extendedNoModuleAlarmEvent NOTIFICATION-TYPE
1188 OBJECTS {
1189     severity,
1190     module,
1191     reason,
1192     description,
1193     paramTable
1194 }
1195 STATUS  current
1196 DESCRIPTION
1197 		"The SNMP trap that is generated when an alarm event with id 4206 - 'No module' is found."
1198 		::= { specific 4206 }
1199
1200 extendedProcessStartedAlarmEvent NOTIFICATION-TYPE
1201 OBJECTS {
1202     severity,
1203     module,
1204     reason,
1205     description,
1206     paramTable
1207 }
1208 STATUS  current
1209 DESCRIPTION
1210 		"The SNMP trap that is generated when an alarm event with id 4208 - 'Process started' is found."
1211 		::= { specific 4208 }
1212
1213 extendedBackupLicenseMissingAlarmEvent NOTIFICATION-TYPE
1214 OBJECTS {
1215     severity,
1216     module,
1217     reason,
1218     description,
1219     paramTable
1220 }
1221 STATUS  current
1222 DESCRIPTION
1223 		"The SNMP trap that is generated when an alarm event with id 4209 - 'Backup license missing' is found."
1224 		::= { specific 4209 }
1225
1226 extendedMultiplexingLicenseMissingAlarmEvent NOTIFICATION-TYPE
1227 OBJECTS {
1228     severity,
1229     module,
1230     reason,
1231     description,
1232     paramTable
1233 }
1234 STATUS  current
1235 DESCRIPTION
1236 		"The SNMP trap that is generated when an alarm event with id 4211 - 'Multiplexing license missing' is found."
1237 		::= { specific 4211 }
1238
1239 extendedDemultiplexingLicenseMissingAlarmEvent NOTIFICATION-TYPE
1240 OBJECTS {
1241     severity,
1242     module,
1243     reason,
1244     description,
1245     paramTable
1246 }
1247 STATUS  current
1248 DESCRIPTION
1249 		"The SNMP trap that is generated when an alarm event with id 4212 - 'Demultiplexing license missing' is found."
1250 		::= { specific 4212 }
1251
1252 extendedDvbProcessingLicenseMissingAlarmEvent NOTIFICATION-TYPE
1253 OBJECTS {
1254     severity,
1255     module,
1256     reason,
1257     description,
1258     paramTable
1259 }
1260 STATUS  current
1261 DESCRIPTION
1262 		"The SNMP trap that is generated when an alarm event with id 4213 - 'DVB processing license missing' is found."
1263 		::= { specific 4213 }
1264
1265 extendedMsdLicenseMissingAlarmEvent NOTIFICATION-TYPE
1266 OBJECTS {
1267     severity,
1268     module,
1269     reason,
1270     description,
1271     paramTable
1272 }
1273 STATUS  current
1274 DESCRIPTION
1275 		"The SNMP trap that is generated when an alarm event with id 4214 - 'MSD license missing' is found."
1276 		::= { specific 4214 }
1277
1278 extendedDvbS2LicenseMissingAlarmEvent NOTIFICATION-TYPE
1279 OBJECTS {
1280     severity,
1281     module,
1282     reason,
1283     description,
1284     paramTable
1285 }
1286 STATUS  current
1287 DESCRIPTION
1288 		"The SNMP trap that is generated when an alarm event with id 4215 - 'DVB-S2 license missing' is found."
1289 		::= { specific 4215 }
1290
1291 extendedScramblingLicenseMissingAlarmEvent NOTIFICATION-TYPE
1292 OBJECTS {
1293     severity,
1294     module,
1295     reason,
1296     description,
1297     paramTable
1298 }
1299 STATUS  current
1300 DESCRIPTION
1301 		"The SNMP trap that is generated when an alarm event with id 4216 - 'Scrambling license missing' is found."
1302 		::= { specific 4216 }
1303
1304 extendedScsLicenseMissingAlarmEvent NOTIFICATION-TYPE
1305 OBJECTS {
1306     severity,
1307     module,
1308     reason,
1309     description,
1310     paramTable
1311 }
1312 STATUS  current
1313 DESCRIPTION
1314 		"The SNMP trap that is generated when an alarm event with id 4217 - 'SCS license missing' is found."
1315 		::= { specific 4217 }
1316
1317 extendedUserFromGroupAdminIsUsingCliAlarmEvent NOTIFICATION-TYPE
1318 OBJECTS {
1319     severity,
1320     module,
1321     reason,
1322     description,
1323     paramTable
1324 }
1325 STATUS  current
1326 DESCRIPTION
1327 		"The SNMP trap that is generated when an alarm event with id 4218 - 'User from group admin is using CLI' is found."
1328 		::= { specific 4218 }
1329
1330 extendedUserFromGroupInstallIsUsingCliAlarmEvent NOTIFICATION-TYPE
1331 OBJECTS {
1332     severity,
1333     module,
1334     reason,
1335     description,
1336     paramTable
1337 }
1338 STATUS  current
1339 DESCRIPTION
1340 		"The SNMP trap that is generated when an alarm event with id 4219 - 'User from group install is using CLI' is found."
1341 		::= { specific 4219 }
1342
1343 extendedUserFromGroupOperIsUsingCliAlarmEvent NOTIFICATION-TYPE
1344 OBJECTS {
1345     severity,
1346     module,
1347     reason,
1348     description,
1349     paramTable
1350 }
1351 STATUS  current
1352 DESCRIPTION
1353 		"The SNMP trap that is generated when an alarm event with id 4220 - 'User from group oper is using CLI' is found."
1354 		::= { specific 4220 }
1355
1356 extendedUserFromGroupMonitorIsUsingCliAlarmEvent NOTIFICATION-TYPE
1357 OBJECTS {
1358     severity,
1359     module,
1360     reason,
1361     description,
1362     paramTable
1363 }
1364 STATUS  current
1365 DESCRIPTION
1366 		"The SNMP trap that is generated when an alarm event with id 4221 - 'User from group monitor is using CLI' is found."
1367 		::= { specific 4221 }
1368
1369 extendedRedundancyActivatedAlarmEvent NOTIFICATION-TYPE
1370 OBJECTS {
1371     severity,
1372     module,
1373     reason,
1374     description,
1375     paramTable
1376 }
1377 STATUS  current
1378 DESCRIPTION
1379 		"The SNMP trap that is generated when an alarm event with id 4222 - 'Redundancy activated' is found."
1380 		::= { specific 4222 }
1381
1382 extendedExtIoSignaledAlarmEvent NOTIFICATION-TYPE
1383 OBJECTS {
1384     severity,
1385     module,
1386     reason,
1387     description,
1388     paramTable
1389 }
1390 STATUS  current
1391 DESCRIPTION
1392 		"The SNMP trap that is generated when an alarm event with id 4223 - 'EXT IO Signaled' is found."
1393 		::= { specific 4223 }
1394
1395 extendedExtIoBackupPowerSupplyFailureAlarmEvent NOTIFICATION-TYPE
1396 OBJECTS {
1397     severity,
1398     module,
1399     reason,
1400     description,
1401     paramTable
1402 }
1403 STATUS  current
1404 DESCRIPTION
1405 		"The SNMP trap that is generated when an alarm event with id 4224 - 'EXT IO Backup power supply failure' is found."
1406 		::= { specific 4224 }
1407
1408 extendedExtIoIntrusionDetectedAlarmEvent NOTIFICATION-TYPE
1409 OBJECTS {
1410     severity,
1411     module,
1412     reason,
1413     description,
1414     paramTable
1415 }
1416 STATUS  current
1417 DESCRIPTION
1418 		"The SNMP trap that is generated when an alarm event with id 4225 - 'EXT IO Intrusion detected' is found."
1419 		::= { specific 4225 }
1420
1421 extendedLinkMissingAlarmEvent NOTIFICATION-TYPE
1422 OBJECTS {
1423     severity,
1424     module,
1425     reason,
1426     description,
1427     paramTable
1428 }
1429 STATUS  current
1430 DESCRIPTION
1431 		"The SNMP trap that is generated when an alarm event with id 4226 - 'Link missing' is found."
1432 		::= { specific 4226 }
1433
1434 extendedRedundancyFailedAlarmEvent NOTIFICATION-TYPE
1435 OBJECTS {
1436     severity,
1437     module,
1438     reason,
1439     description,
1440     paramTable
1441 }
1442 STATUS  current
1443 DESCRIPTION
1444 		"The SNMP trap that is generated when an alarm event with id 4227 - 'Redundancy failed' is found."
1445 		::= { specific 4227 }
1446
1447 extendedMultiplexOversubscriptionPacketsDelayedAlarmEvent NOTIFICATION-TYPE
1448 OBJECTS {
1449     severity,
1450     module,
1451     reason,
1452     description,
1453     paramTable
1454 }
1455 STATUS  current
1456 DESCRIPTION
1457 		"The SNMP trap that is generated when an alarm event with id 4228 - 'Multiplex oversubscription, packets delayed' is found."
1458 		::= { specific 4228 }
1459
1460 extendedCbrOutputOversubscriptionAlarmEvent NOTIFICATION-TYPE
1461 OBJECTS {
1462     severity,
1463     module,
1464     reason,
1465     description,
1466     paramTable
1467 }
1468 STATUS  current
1469 DESCRIPTION
1470 		"The SNMP trap that is generated when an alarm event with id 4229 - 'CBR output oversubscription' is found."
1471 		::= { specific 4229 }
1472
1473 extendedBackupHwDoesNotSupportSelectedDeviceRoleAlarmEvent NOTIFICATION-TYPE
1474 OBJECTS {
1475     severity,
1476     module,
1477     reason,
1478     description,
1479     paramTable
1480 }
1481 STATUS  current
1482 DESCRIPTION
1483 		"The SNMP trap that is generated when an alarm event with id 4230 - 'Backup: HW does not support selected device role, fallback to Standalone role' is found."
1484 		::= { specific 4230 }
1485
1486 extendedSoftwareUpdateInProgressAlarmEvent NOTIFICATION-TYPE
1487 OBJECTS {
1488     severity,
1489     module,
1490     reason,
1491     description,
1492     paramTable
1493 }
1494 STATUS  current
1495 DESCRIPTION
1496 		"The SNMP trap that is generated when an alarm event with id 4231 - 'Software update in progress' is found."
1497 		::= { specific 4231 }
1498
1499 extendedSoftwareUpdateReadyWaitingForRebootToCompleteAlarmEvent NOTIFICATION-TYPE
1500 OBJECTS {
1501     severity,
1502     module,
1503     reason,
1504     description,
1505     paramTable
1506 }
1507 STATUS  current
1508 DESCRIPTION
1509 		"The SNMP trap that is generated when an alarm event with id 4232 - 'Software update ready. Waiting for reboot to complete' is found."
1510 		::= { specific 4232 }
1511
1512 extendedSoftwareUpdateFailedAlarmEvent NOTIFICATION-TYPE
1513 OBJECTS {
1514     severity,
1515     module,
1516     reason,
1517     description,
1518     paramTable
1519 }
1520 STATUS  current
1521 DESCRIPTION
1522 		"The SNMP trap that is generated when an alarm event with id 4233 - 'Software update failed' is found."
1523 		::= { specific 4233 }
1524
1525 extendedBackupModuleHwDoesNotSupportSelectedOnePlusOneBackupRoleAlarmEvent NOTIFICATION-TYPE
1526 OBJECTS {
1527     severity,
1528     module,
1529     reason,
1530     description,
1531     paramTable
1532 }
1533 STATUS  current
1534 DESCRIPTION
1535 		"The SNMP trap that is generated when an alarm event with id 4234 - 'Backup: Module HW does not support selected 1+1 backup role' is found."
1536 		::= { specific 4234 }
1537
1538 extendedEitProcessingLicenseMissingAlarmEvent NOTIFICATION-TYPE
1539 OBJECTS {
1540     severity,
1541     module,
1542     reason,
1543     description,
1544     paramTable
1545 }
1546 STATUS  current
1547 DESCRIPTION
1548 		"The SNMP trap that is generated when an alarm event with id 4235 - 'EIT processing license missing' is found."
1549 		::= { specific 4235 }
1550
1551 extendedCbrOutputOversubscriptionPacketsDiscardedAlarmEvent NOTIFICATION-TYPE
1552 OBJECTS {
1553     severity,
1554     module,
1555     reason,
1556     description,
1557     paramTable
1558 }
1559 STATUS  current
1560 DESCRIPTION
1561 		"The SNMP trap that is generated when an alarm event with id 4236 - 'CBR output oversubscription, packets discarded' is found."
1562 		::= { specific 4236 }
1563
1564 extendedDescramblingFailedAlarmEvent NOTIFICATION-TYPE
1565 OBJECTS {
1566     severity,
1567     module,
1568     reason,
1569     description,
1570     paramTable
1571 }
1572 STATUS  current
1573 DESCRIPTION
1574 		"The SNMP trap that is generated when an alarm event with id 4237 - 'Descrambling failed' is found."
1575 		::= { specific 4237 }
1576
1577 extendedIpInputCapacityExceededAlarmEvent NOTIFICATION-TYPE
1578 OBJECTS {
1579     severity,
1580     module,
1581     reason,
1582     description,
1583     paramTable
1584 }
1585 STATUS  current
1586 DESCRIPTION
1587 		"The SNMP trap that is generated when an alarm event with id 4238 - 'IP input capacity exceeded' is found."
1588 		::= { specific 4238 }
1589
1590 extendedEitReinsertCapacityExceededAlarmEvent NOTIFICATION-TYPE
1591 OBJECTS {
1592     severity,
1593     module,
1594     reason,
1595     description,
1596     paramTable
1597 }
1598 STATUS  current
1599 DESCRIPTION
1600 		"The SNMP trap that is generated when an alarm event with id 4239 - 'EIT reinsert capacity exceeded' is found."
1601 		::= { specific 4239 }
1602
1603 extendedRtpInputErrorsDroppedPacketsAlarmEvent NOTIFICATION-TYPE
1604 OBJECTS {
1605     severity,
1606     module,
1607     reason,
1608     description,
1609     paramTable
1610 }
1611 STATUS  current
1612 DESCRIPTION
1613 		"The SNMP trap that is generated when an alarm event with id 4241 - 'RTP input errors, dropped packets' is found."
1614 		::= { specific 4241 }
1615
1616 extendedRtpInputPacketSequenceAnomaliesDetectedAlarmEvent NOTIFICATION-TYPE
1617 OBJECTS {
1618     severity,
1619     module,
1620     reason,
1621     description,
1622     paramTable
1623 }
1624 STATUS  current
1625 DESCRIPTION
1626 		"The SNMP trap that is generated when an alarm event with id 4242 - 'RTP input packet sequence anomalies detected' is found."
1627 		::= { specific 4242 }
1628
1629 extendedDvbTimeMissingAlarmEvent NOTIFICATION-TYPE
1630 OBJECTS {
1631     severity,
1632     module,
1633     reason,
1634     description,
1635     paramTable
1636 }
1637 STATUS  current
1638 DESCRIPTION
1639 		"The SNMP trap that is generated when an alarm event with id 4243 - 'DVB time missing' is found."
1640 		::= { specific 4243 }
1641
1642 extendedDvbT2LicenseMissingAlarmEvent NOTIFICATION-TYPE
1643 OBJECTS {
1644     severity,
1645     module,
1646     reason,
1647     description,
1648     paramTable
1649 }
1650 STATUS  current
1651 DESCRIPTION
1652 		"The SNMP trap that is generated when an alarm event with id 4244 - 'DVB-T2 license missing' is found."
1653 		::= { specific 4244 }
1654
1655 extendedDcFeedCurrentAlarmEvent NOTIFICATION-TYPE
1656 OBJECTS {
1657     severity,
1658     module,
1659     reason,
1660     description,
1661     paramTable
1662 }
1663 STATUS  current
1664 DESCRIPTION
1665 		"The SNMP trap that is generated when an alarm event with id 4245 - 'DC feed current' is found."
1666 		::= { specific 4245 }
1667
1668 extendedNotGeneratingTdtTotTableWaitingForCorrectSystemTimeAlarmEvent NOTIFICATION-TYPE
1669 OBJECTS {
1670     severity,
1671     module,
1672     reason,
1673     description,
1674     paramTable
1675 }
1676 STATUS  current
1677 DESCRIPTION
1678 		"The SNMP trap that is generated when an alarm event with id 4246 - 'Not generating TDT/TOT table. Waiting for correct system time' is found."
1679 		::= { specific 4246 }
1680
1681 extendedDataPlpIdSelectionRequiredAlarmEvent NOTIFICATION-TYPE
1682 OBJECTS {
1683     severity,
1684     module,
1685     reason,
1686     description,
1687     paramTable
1688 }
1689 STATUS  current
1690 DESCRIPTION
1691 		"The SNMP trap that is generated when an alarm event with id 4247 - 'Data PLP ID selection required' is found."
1692 		::= { specific 4247 }
1693
1694 extendedDataPlpIdSelectionNotValidAlarmEvent NOTIFICATION-TYPE
1695 OBJECTS {
1696     severity,
1697     module,
1698     reason,
1699     description,
1700     paramTable
1701 }
1702 STATUS  current
1703 DESCRIPTION
1704 		"The SNMP trap that is generated when an alarm event with id 4248 - 'Data PLP ID selection not valid' is found."
1705 		::= { specific 4248 }
1706
1707 extendedHierarchyHpSelectedForNonAlarmEvent NOTIFICATION-TYPE
1708 OBJECTS {
1709     severity,
1710     module,
1711     reason,
1712     description,
1713     paramTable
1714 }
1715 STATUS  current
1716 DESCRIPTION
1717 		"The SNMP trap that is generated when an alarm event with id 4249 - 'Hierarchy HP selected for non-hierarchical transmission' is found."
1718 		::= { specific 4249 }
1719
1720 extendedEcmMissingAlarmEvent NOTIFICATION-TYPE
1721 OBJECTS {
1722     severity,
1723     module,
1724     reason,
1725     description,
1726     paramTable
1727 }
1728 STATUS  current
1729 DESCRIPTION
1730 		"The SNMP trap that is generated when an alarm event with id 4250 - 'ECM missing' is found."
1731 		::= { specific 4250 }
1732
1733 extendedScramblingConflictInSharedComponentAlarmEvent NOTIFICATION-TYPE
1734 OBJECTS {
1735     severity,
1736     module,
1737     reason,
1738     description,
1739     paramTable
1740 }
1741 STATUS  current
1742 DESCRIPTION
1743 		"The SNMP trap that is generated when an alarm event with id 4251 - 'Scrambling conflict in shared component' is found."
1744 		::= { specific 4251 }
1745
1746 extendedScrambledSharedComponentAlarmEvent NOTIFICATION-TYPE
1747 OBJECTS {
1748     severity,
1749     module,
1750     reason,
1751     description,
1752     paramTable
1753 }
1754 STATUS  current
1755 DESCRIPTION
1756 		"The SNMP trap that is generated when an alarm event with id 4252 - 'Scrambled shared component' is found."
1757 		::= { specific 4252 }
1758
1759 extendedBackupVoltageTooHighAlarmEvent NOTIFICATION-TYPE
1760 OBJECTS {
1761     severity,
1762     module,
1763     reason,
1764     description,
1765     paramTable
1766 }
1767 STATUS  current
1768 DESCRIPTION
1769 		"The SNMP trap that is generated when an alarm event with id 4253 - 'Backup voltage too high' is found."
1770 		::= { specific 4253 }
1771
1772 extendedBackupVoltageTooLowAlarmEvent NOTIFICATION-TYPE
1773 OBJECTS {
1774     severity,
1775     module,
1776     reason,
1777     description,
1778     paramTable
1779 }
1780 STATUS  current
1781 DESCRIPTION
1782 		"The SNMP trap that is generated when an alarm event with id 4254 - 'Backup voltage too low' is found."
1783 		::= { specific 4254 }
1784
1785 extendedInvalidSdtTemplateAlarmEvent NOTIFICATION-TYPE
1786 OBJECTS {
1787     severity,
1788     module,
1789     reason,
1790     description,
1791     paramTable
1792 }
1793 STATUS  current
1794 DESCRIPTION
1795 		"The SNMP trap that is generated when an alarm event with id 4255 - 'Invalid SDT template' is found."
1796 		::= { specific 4255 }
1797
1798 extendedCamFailureActionTakenRestartingDescramblingAlarmEvent NOTIFICATION-TYPE
1799 OBJECTS {
1800     severity,
1801     module,
1802     reason,
1803     description,
1804     paramTable
1805 }
1806 STATUS  current
1807 DESCRIPTION
1808 		"The SNMP trap that is generated when an alarm event with id 4256 - 'CAM Failure action taken: restarting descrambling' is found."
1809 		::= { specific 4256 }
1810
1811 extendedCamFailureActionTakenRebootingCaModuleAlarmEvent NOTIFICATION-TYPE
1812 OBJECTS {
1813     severity,
1814     module,
1815     reason,
1816     description,
1817     paramTable
1818 }
1819 STATUS  current
1820 DESCRIPTION
1821 		"The SNMP trap that is generated when an alarm event with id 4257 - 'CAM Failure action taken: rebooting CA module' is found."
1822 		::= { specific 4257 }
1823
1824 extendedCaMenuIsOpenAlarmEvent NOTIFICATION-TYPE
1825 OBJECTS {
1826     severity,
1827     module,
1828     reason,
1829     description,
1830     paramTable
1831 }
1832 STATUS  current
1833 DESCRIPTION
1834 		"The SNMP trap that is generated when an alarm event with id 4258 - 'CA menu is open' is found."
1835 		::= { specific 4258 }
1836
1837 extendedCannotDescrambleDueToCamRoutingAlarmEvent NOTIFICATION-TYPE
1838 OBJECTS {
1839     severity,
1840     module,
1841     reason,
1842     description,
1843     paramTable
1844 }
1845 STATUS  current
1846 DESCRIPTION
1847 		"The SNMP trap that is generated when an alarm event with id 4259 - 'Cannot descramble due to CAM routing' is found."
1848 		::= { specific 4259 }
1849
1850 extendedNitSidConflictAlarmEvent NOTIFICATION-TYPE
1851 OBJECTS {
1852     severity,
1853     module,
1854     reason,
1855     description,
1856     paramTable
1857 }
1858 STATUS  current
1859 DESCRIPTION
1860 		"The SNMP trap that is generated when an alarm event with id 4260 - 'SID conflict in output' is found."
1861 		::= { specific 4260 }
1862
1863 extendedNotGeneratingSttTableWaitingForCorrectSystemTimeAlarmEvent NOTIFICATION-TYPE
1864 OBJECTS {
1865     severity,
1866     module,
1867     reason,
1868     description,
1869     paramTable
1870 }
1871 STATUS  current
1872 DESCRIPTION
1873 		"The SNMP trap that is generated when an alarm event with id 4261 - 'Not generating STT table. Waiting for correct system time' is found."
1874 		::= { specific 4261 }
1875
1876 extendedNumberOfFecLicensesExceededAlarmEvent NOTIFICATION-TYPE
1877 OBJECTS {
1878     severity,
1879     module,
1880     reason,
1881     description,
1882     paramTable
1883 }
1884 STATUS  current
1885 DESCRIPTION
1886 		"The SNMP trap that is generated when an alarm event with id 4262 - 'Number of FEC licenses exceeded' is found."
1887 		::= { specific 4262 }
1888
1889 extendedErrorCorrectionOverloadTooManySimultaneousMissingPacketsAlarmEvent NOTIFICATION-TYPE
1890 OBJECTS {
1891     severity,
1892     module,
1893     reason,
1894     description,
1895     paramTable
1896 }
1897 STATUS  current
1898 DESCRIPTION
1899 		"The SNMP trap that is generated when an alarm event with id 4263 - 'Error correction overload. Too many simultaneous missing packets.' is found."
1900 		::= { specific 4263 }
1901
1902 extendedFecPacketsDiscardedModuleBitrateTooHighAlarmEvent NOTIFICATION-TYPE
1903 OBJECTS {
1904     severity,
1905     module,
1906     reason,
1907     description,
1908     paramTable
1909 }
1910 STATUS  current
1911 DESCRIPTION
1912 		"The SNMP trap that is generated when an alarm event with id 4264 - 'FEC packets discarded. Module bitrate too high.' is found."
1913 		::= { specific 4264 }
1914
1915 extendedMediaPacketsDiscardedModuleBitrateTooHighAlarmEvent NOTIFICATION-TYPE
1916 OBJECTS {
1917     severity,
1918     module,
1919     reason,
1920     description,
1921     paramTable
1922 }
1923 STATUS  current
1924 DESCRIPTION
1925 		"The SNMP trap that is generated when an alarm event with id 4265 - 'Media packets discarded. Module bitrate too high.' is found."
1926 		::= { specific 4265 }
1927
1928 extendedFecHasCorrectedPacketsAlarmEvent NOTIFICATION-TYPE
1929 OBJECTS {
1930     severity,
1931     module,
1932     reason,
1933     description,
1934     paramTable
1935 }
1936 STATUS  current
1937 DESCRIPTION
1938 		"The SNMP trap that is generated when an alarm event with id 4266 - 'FEC has corrected packets' is found."
1939 		::= { specific 4266 }
1940
1941 extendedFecInputAnomaliesDetectedAlarmEvent NOTIFICATION-TYPE
1942 OBJECTS {
1943     severity,
1944     module,
1945     reason,
1946     description,
1947     paramTable
1948 }
1949 STATUS  current
1950 DESCRIPTION
1951 		"The SNMP trap that is generated when an alarm event with id 4267 - 'FEC input anomalies detected' is found."
1952 		::= { specific 4267 }
1953
1954 extendedFecErrorCorrectionCapacityExceededAlarmEvent NOTIFICATION-TYPE
1955 OBJECTS {
1956     severity,
1957     module,
1958     reason,
1959     description,
1960     paramTable
1961 }
1962 STATUS  current
1963 DESCRIPTION
1964 		"The SNMP trap that is generated when an alarm event with id 4268 - 'FEC error correction capacity exceeded' is found."
1965 		::= { specific 4268 }
1966
1967 extendedSfpLinkDownAlarmEvent NOTIFICATION-TYPE
1968 OBJECTS {
1969     severity,
1970     module,
1971     reason,
1972     description,
1973     paramTable
1974 }
1975 STATUS  current
1976 DESCRIPTION
1977 		"The SNMP trap that is generated when an alarm event with id 4269 - 'SFP link down' is found."
1978 		::= { specific 4269 }
1979
1980 extendedBackupsyncTurnedOffAlarmEvent NOTIFICATION-TYPE
1981 OBJECTS {
1982     severity,
1983     module,
1984     reason,
1985     description,
1986     paramTable
1987 }
1988 STATUS  current
1989 DESCRIPTION
1990 		"The SNMP trap that is generated when an alarm event with id 4272 - 'BackupSync: Turned off' is found."
1991 		::= { specific 4272 }
1992
1993 extendedBackupsyncManualModeAlarmEvent NOTIFICATION-TYPE
1994 OBJECTS {
1995     severity,
1996     module,
1997     reason,
1998     description,
1999     paramTable
2000 }
2001 STATUS  current
2002 DESCRIPTION
2003 		"The SNMP trap that is generated when an alarm event with id 4273 - 'BackupSync: Manual mode' is found."
2004 		::= { specific 4273 }
2005
2006 extendedBackupsyncAutomaticModeAlarmEvent NOTIFICATION-TYPE
2007 OBJECTS {
2008     severity,
2009     module,
2010     reason,
2011     description,
2012     paramTable
2013 }
2014 STATUS  current
2015 DESCRIPTION
2016 		"The SNMP trap that is generated when an alarm event with id 4274 - 'BackupSync: Automatic mode' is found."
2017 		::= { specific 4274 }
2018
2019 extendedBackupsyncConfigurationWillBeSynchronizedAutomaticallyAlarmEvent NOTIFICATION-TYPE
2020 OBJECTS {
2021     severity,
2022     module,
2023     reason,
2024     description,
2025     paramTable
2026 }
2027 STATUS  current
2028 DESCRIPTION
2029 		"The SNMP trap that is generated when an alarm event with id 4275 - 'BackupSync: Configuration will be synchronized automatically' is found."
2030 		::= { specific 4275 }
2031
2032 extendedBackupsyncSynchronizingAlarmEvent NOTIFICATION-TYPE
2033 OBJECTS {
2034     severity,
2035     module,
2036     reason,
2037     description,
2038     paramTable
2039 }
2040 STATUS  current
2041 DESCRIPTION
2042 		"The SNMP trap that is generated when an alarm event with id 4276 - 'BackupSync: Synchronizing' is found."
2043 		::= { specific 4276 }
2044
2045 extendedBackupsyncSwCompatibilityCheckAlarmEvent NOTIFICATION-TYPE
2046 OBJECTS {
2047     severity,
2048     module,
2049     reason,
2050     description,
2051     paramTable
2052 }
2053 STATUS  current
2054 DESCRIPTION
2055 		"The SNMP trap that is generated when an alarm event with id 4278 - 'BackupSync: SW compatibility check' is found."
2056 		::= { specific 4278 }
2057
2058 extendedBackupsyncHwCompatibilityCheckAlarmEvent NOTIFICATION-TYPE
2059 OBJECTS {
2060     severity,
2061     module,
2062     reason,
2063     description,
2064     paramTable
2065 }
2066 STATUS  current
2067 DESCRIPTION
2068 		"The SNMP trap that is generated when an alarm event with id 4279 - 'BackupSync: HW compatibility check' is found."
2069 		::= { specific 4279 }
2070
2071 extendedBackupsyncConfigurationFaultAlarmEvent NOTIFICATION-TYPE
2072 OBJECTS {
2073     severity,
2074     module,
2075     reason,
2076     description,
2077     paramTable
2078 }
2079 STATUS  current
2080 DESCRIPTION
2081 		"The SNMP trap that is generated when an alarm event with id 4280 - 'BackupSync: Configuration fault' is found."
2082 		::= { specific 4280 }
2083
2084 extendedBackupsyncConnectionLostAlarmEvent NOTIFICATION-TYPE
2085 OBJECTS {
2086     severity,
2087     module,
2088     reason,
2089     description,
2090     paramTable
2091 }
2092 STATUS  current
2093 DESCRIPTION
2094 		"The SNMP trap that is generated when an alarm event with id 4281 - 'BackupSync: Connection lost' is found."
2095 		::= { specific 4281 }
2096
2097 extendedBackupsyncAutosyncNotPossibleFromBackupToMainAlarmEvent NOTIFICATION-TYPE
2098 OBJECTS {
2099     severity,
2100     module,
2101     reason,
2102     description,
2103     paramTable
2104 }
2105 STATUS  current
2106 DESCRIPTION
2107 		"The SNMP trap that is generated when an alarm event with id 4283 - 'BackupSync: Autosync not possible from backup to main' is found."
2108 		::= { specific 4283 }
2109
2110 extendedBackupsyncRebootingPairDeviceToNewConfigurationAlarmEvent NOTIFICATION-TYPE
2111 OBJECTS {
2112     severity,
2113     module,
2114     reason,
2115     description,
2116     paramTable
2117 }
2118 STATUS  current
2119 DESCRIPTION
2120 		"The SNMP trap that is generated when an alarm event with id 4284 - 'BackupSync: Rebooting pair device to new configuration' is found."
2121 		::= { specific 4284 }
2122
2123 extendedBackupsyncCheckLicenseCompatibilityAlarmEvent NOTIFICATION-TYPE
2124 OBJECTS {
2125     severity,
2126     module,
2127     reason,
2128     description,
2129     paramTable
2130 }
2131 STATUS  current
2132 DESCRIPTION
2133 		"The SNMP trap that is generated when an alarm event with id 4285 - 'BackupSync: Check license compatibility!' is found."
2134 		::= { specific 4285 }
2135
2136 extendedBackupsyncLicenseCompatibilityCheckAlarmEvent NOTIFICATION-TYPE
2137 OBJECTS {
2138     severity,
2139     module,
2140     reason,
2141     description,
2142     paramTable
2143 }
2144 STATUS  current
2145 DESCRIPTION
2146 		"The SNMP trap that is generated when an alarm event with id 4286 - 'BackupSync: License compatibility check' is found."
2147 		::= { specific 4286 }
2148
2149 extendedDeviceFirstBootActionsAreInProgressAlarmEvent NOTIFICATION-TYPE
2150 OBJECTS {
2151     severity,
2152     module,
2153     reason,
2154     description,
2155     paramTable
2156 }
2157 STATUS  current
2158 DESCRIPTION
2159 		"The SNMP trap that is generated when an alarm event with id 4288 - 'Device first boot actions are in progress' is found."
2160 		::= { specific 4288 }
2161
2162 extendedDeviceConfigurationBackupInProgressAlarmEvent NOTIFICATION-TYPE
2163 OBJECTS {
2164     severity,
2165     module,
2166     reason,
2167     description,
2168     paramTable
2169 }
2170 STATUS  current
2171 DESCRIPTION
2172 		"The SNMP trap that is generated when an alarm event with id 4289 - 'Device configuration backup in progress' is found."
2173 		::= { specific 4289 }
2174
2175 extendedDeviceConfigurationRestoreInProgressAlarmEvent NOTIFICATION-TYPE
2176 OBJECTS {
2177     severity,
2178     module,
2179     reason,
2180     description,
2181     paramTable
2182 }
2183 STATUS  current
2184 DESCRIPTION
2185 		"The SNMP trap that is generated when an alarm event with id 4290 - 'Device configuration restore in progress' is found."
2186 		::= { specific 4290 }
2187
2188 extendedDeviceOtherSoftwareActivationAlarmEvent NOTIFICATION-TYPE
2189 OBJECTS {
2190     severity,
2191     module,
2192     reason,
2193     description,
2194     paramTable
2195 }
2196 STATUS  current
2197 DESCRIPTION
2198 		"The SNMP trap that is generated when an alarm event with id 4291 - 'Device other software activation' is found."
2199 		::= { specific 4291 }
2200
2201 extendedTooManyOutputPidsConfiguredAlarmEvent NOTIFICATION-TYPE
2202 OBJECTS {
2203     severity,
2204     module,
2205     reason,
2206     description,
2207     paramTable
2208 }
2209 STATUS  current
2210 DESCRIPTION
2211 		"The SNMP trap that is generated when an alarm event with id 4292 - 'Too many output PIDs configured! Some PIDs are dropped.' is found."
2212 		::= { specific 4292 }
2213
2214 extendedRebootRequestByUserAlarmEvent NOTIFICATION-TYPE
2215 OBJECTS {
2216     severity,
2217     module,
2218     reason,
2219     description,
2220     paramTable
2221 }
2222 STATUS  current
2223 DESCRIPTION
2224 		"The SNMP trap that is generated when an alarm event with id 4293 - 'Reboot request by user' is found."
2225 		::= { specific 4293 }
2226
2227 extendedRemovedFromTheChassisAlarmEvent NOTIFICATION-TYPE
2228 OBJECTS {
2229     severity,
2230     module,
2231     reason,
2232     description,
2233     paramTable
2234 }
2235 STATUS  current
2236 DESCRIPTION
2237 		"The SNMP trap that is generated when an alarm event with id 4294 - 'Removed from the chassis' is found."
2238 		::= { specific 4294 }
2239
2240 extendedInsertedIntoTheChassisAlarmEvent NOTIFICATION-TYPE
2241 OBJECTS {
2242     severity,
2243     module,
2244     reason,
2245     description,
2246     paramTable
2247 }
2248 STATUS  current
2249 DESCRIPTION
2250 		"The SNMP trap that is generated when an alarm event with id 4295 - 'Inserted into the chassis' is found."
2251 		::= { specific 4295 }
2252
2253 extendedUsedInputIsNotSptsAlarmEvent NOTIFICATION-TYPE
2254 OBJECTS {
2255     severity,
2256     module,
2257     reason,
2258     description,
2259     paramTable
2260 }
2261 STATUS  current
2262 DESCRIPTION
2263 		"The SNMP trap that is generated when an alarm event with id 4296 - 'Used input is not SPTS' is found."
2264 		::= { specific 4296 }
2265
2266 extendedPacketsDiscardedInIpMirrorOutputsAlarmEvent NOTIFICATION-TYPE
2267 OBJECTS {
2268     severity,
2269     module,
2270     reason,
2271     description,
2272     paramTable
2273 }
2274 STATUS  current
2275 DESCRIPTION
2276 		"The SNMP trap that is generated when an alarm event with id 4297 - 'Packets discarded in IP mirror outputs' is found."
2277 		::= { specific 4297 }
2278
2279 extendedAesLicenseMissingAlarmEvent NOTIFICATION-TYPE
2280 OBJECTS {
2281     severity,
2282     module,
2283     reason,
2284     description,
2285     paramTable
2286 }
2287 STATUS  current
2288 DESCRIPTION
2289 		"The SNMP trap that is generated when an alarm event with id 4298 - 'AES license missing' is found."
2290 		::= { specific 4298 }
2291
2292 extendedSymbolRateTooHighForSelectedModulationSelectHighSpeedModulationModeToAvoidErrorsAlarmEvent NOTIFICATION-TYPE
2293 OBJECTS {
2294     severity,
2295     module,
2296     reason,
2297     description,
2298     paramTable
2299 }
2300 STATUS  current
2301 DESCRIPTION
2302 		"The SNMP trap that is generated when an alarm event with id 4299 - 'Symbol rate too high for selected modulation (tuner %6%). Select high speed modulation mode to avoid errors.' is found."
2303 		::= { specific 4299 }
2304
2305 extendedEcmResponsesDelayedAlarmEvent NOTIFICATION-TYPE
2306 OBJECTS {
2307     severity,
2308     module,
2309     reason,
2310     description,
2311     paramTable
2312 }
2313 STATUS  current
2314 DESCRIPTION
2315 		"The SNMP trap that is generated when an alarm event with id 4300 - 'ECM responses delayed' is found."
2316 		::= { specific 4300 }
2317
2318 extendedCwGroupConflictAlarmEvent NOTIFICATION-TYPE
2319 OBJECTS {
2320     severity,
2321     module,
2322     reason,
2323     description,
2324     paramTable
2325 }
2326 STATUS  current
2327 DESCRIPTION
2328 		"The SNMP trap that is generated when an alarm event with id 4301 - 'CW group conflict' is found."
2329 		::= { specific 4301 }
2330
2331 extendedDisconnectedHostInMultichassisGroupAlarmEvent NOTIFICATION-TYPE
2332 OBJECTS {
2333     severity,
2334     module,
2335     reason,
2336     description,
2337     paramTable
2338 }
2339 STATUS  current
2340 DESCRIPTION
2341 		"The SNMP trap that is generated when an alarm event with id 4302 - 'Disconnected host(s) in multichassis group' is found."
2342 		::= { specific 4302 }
2343
2344 extendedMultichassisConfigurationFailureAlarmEvent NOTIFICATION-TYPE
2345 OBJECTS {
2346     severity,
2347     module,
2348     reason,
2349     description,
2350     paramTable
2351 }
2352 STATUS  current
2353 DESCRIPTION
2354 		"The SNMP trap that is generated when an alarm event with id 4303 - 'Multichassis configuration failure' is found."
2355 		::= { specific 4303 }
2356
2357 extendedSwVersionDifferenceWithinMultichassisGroupAlarmEvent NOTIFICATION-TYPE
2358 OBJECTS {
2359     severity,
2360     module,
2361     reason,
2362     description,
2363     paramTable
2364 }
2365 STATUS  current
2366 DESCRIPTION
2367 		"The SNMP trap that is generated when an alarm event with id 4304 - 'SW version difference within multichassis group' is found."
2368 		::= { specific 4304 }
2369
2370 extendedSwVersionMismatchAlarmEvent NOTIFICATION-TYPE
2371 OBJECTS {
2372     severity,
2373     module,
2374     reason,
2375     description,
2376     paramTable
2377 }
2378 STATUS  current
2379 DESCRIPTION
2380 		"The SNMP trap that is generated when an alarm event with id 4305 - 'SW version mismatch (module %6%)' is found."
2381 		::= { specific 4305 }
2382-- %END_DEFINE_TRAPS%
2383
2384	END
2385
2386--
2387-- TELESTE-LUMINATO-MIB2.mib
2388--
2389