summaryrefslogtreecommitdiff
path: root/MIBS/gwd/GW-EPON-DEV-MIB
blob: 90c5561e92351ad46eb9b38f2679320ac19349a5 (plain)
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
GW-EPON-DEV-MIB	DEFINITIONS ::= BEGIN
	IMPORTS
		devices
			FROM GWTT-SMI
		TruthValue, DateAndTime, RowStatus, DisplayString
			FROM SNMPv2-TC
		DisplayString
			FROM RFC1213-MIB	
		gwDevTrapGroup, deviceIndex,EponDeviceType
			FROM GW-EPON-MIB 		
		MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, NOTIFICATION-TYPE 
			FROM SNMPv2-SMI;
          		
	eponDevManMIB	MODULE-IDENTITY
		LAST-UPDATED	"200804090000Z"
		ORGANIZATION	"Organization"
		CONTACT-INFO	"Contact-info"
		DESCRIPTION		"Description"
		REVISION		"200602141321Z"
		DESCRIPTION		""
		::=  {  devices  15  }

	eponDevManMIBObjects	OBJECT IDENTIFIER
		::=  {  eponDevManMIB  1  }	
		
	updateONUGroup	OBJECT IDENTIFIER
		::=  {  eponDevManMIBObjects  1  }

--	cfgdataSaveGroup	OBJECT IDENTIFIER
--		::=  {  eponDevManMIBObjects  2  }

	logEventGroup	OBJECT IDENTIFIER
		::=  {  eponDevManMIBObjects  3  }
	
	fanAlarmInfoGroup	OBJECT IDENTIFIER
		::=  {  eponDevManMIBObjects  4  }
			
	powerInfoGroup	OBJECT IDENTIFIER 
		::= { eponDevManMIBObjects 5 }	

	temperatureInfoGroup  OBJECT IDENTIFIER
		::= { eponDevManMIBObjects 6 }
	onuAlarmMaskGroup  OBJECT IDENTIFIER
		::= { eponDevManMIBObjects 7 }		
		
--  update ONU  mib definitions

	onuUpdateTable	OBJECT-TYPE
		SYNTAX		SEQUENCE  OF  OnuUpdateEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION	"Table of information about updating onu."
		::=  { updateONUGroup  1 }
		
	onuUpdateEntry	OBJECT-TYPE
		SYNTAX		OnuUpdateEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION	"An entry in the table, containing onu update configure information ."
		INDEX		{  deviceIndex  }
		::=  { onuUpdateTable 1 }
		
	OnuUpdateEntry  ::=  SEQUENCE {
		updateONUEnable  INTEGER,
		updateCtrlFlag  INTEGER
		}	
					
	updateONUEnable	OBJECT-TYPE	
		SYNTAX			INTEGER  { enable ( 1 ) , disable ( 2 ) } 
		MAX-ACCESS		read-write
		STATUS			current
		DESCRIPTION		"This value of the object  indicates whether enable update ONU's software or firmware"
		::=  {  onuUpdateEntry  1  }

	updateCtrlFlag	OBJECT-TYPE	
		SYNTAX			INTEGER  { noop ( 1 ) , update ( 2 ) , inProcess ( 3 ) , forbidden ( 4 ) } 
		MAX-ACCESS		read-write
		STATUS			current
		DESCRIPTION		"The value is a representation of progress for updating."
		::=  {  onuUpdateEntry  2  }	

-- log event -------------------------------------------------

	logEventTable	OBJECT-TYPE
		SYNTAX		SEQUENCE  OF  LogEventEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION	"Table of logged events"
		::=  { logEventGroup  1 }

	logEventEntry	OBJECT-TYPE
		SYNTAX		LogEventEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION	"An entry in the table, containing logged event ."
		INDEX		{  logEventIndex  }
		::=  { logEventTable 1 }

	LogEventEntry  ::=  SEQUENCE {
		logEventIndex  Integer32,
		logEventTime  DateAndTime,
		logEventDesc  DisplayString
		}

	logEventIndex	OBJECT-TYPE	
		SYNTAX			Unsigned32	--Integer32  ( 1 .. 65536  ) 
		MAX-ACCESS	read-only
		STATUS			current
		DESCRIPTION		"The vlaue of index of logged event ."
		::=  {  logEventEntry  1  }

	logEventTime	OBJECT-TYPE	
		SYNTAX			DateAndTime
		MAX-ACCESS		read-only
		STATUS			current
		DESCRIPTION		"date and time when log event occure."
		::=  {  logEventEntry  2  }


	logEventDesc	OBJECT-TYPE	
		SYNTAX			DisplayString( SIZE(1..64) )
		MAX-ACCESS		read-only
		STATUS			current
		DESCRIPTION		"Description of the event."
		::=  {  logEventEntry  3  }
		
    alarmSynTable  OBJECT-TYPE
        SYNTAX  SEQUENCE OF AlarmSynEntry
        ACCESS  not-accessible
        STATUS  current
        DESCRIPTION
            "The Table of Alarm Synchronization info."
        ::= { logEventGroup 2 }

    alarmSynEntry  OBJECT-TYPE
        SYNTAX  AlarmSynEntry
        ACCESS  not-accessible
        STATUS  current
        DESCRIPTION
            "Table Entry"
        INDEX { alarmSynIndex }
        ::= { alarmSynTable 1 }

    AlarmSynEntry ::= SEQUENCE {
        alarmSynIndex  	INTEGER,
        alarmSynTime   	DateAndTime,
        alarmSynData   	OCTET STRING,
        alarmSynFlag		INTEGER,
        alarmSynClearTime	DateAndTime
    }

    alarmSynIndex  OBJECT-TYPE
        SYNTAX  INTEGER (1..500) 
        ACCESS  read-only
        STATUS  current
        DESCRIPTION
            "Alarm Synchronization Information Index."
        ::= { alarmSynEntry 1 }

    alarmSynTime  OBJECT-TYPE
        SYNTAX  DateAndTime
        ACCESS  read-only
        STATUS  current
        DESCRIPTION
            "The time when an alarm occured."
        ::= { alarmSynEntry 2 }

   alarmSynData  OBJECT-TYPE
        SYNTAX  OCTET STRING (SIZE (255))
        ACCESS  read-only
        STATUS  current
        DESCRIPTION
            "Alarm Trap PDU."
        ::= { alarmSynEntry 3 }

   alarmSynFlag  OBJECT-TYPE
        SYNTAX  INTEGER { alarm(1), clear(2) }
        ACCESS  read-only
        STATUS  current
        DESCRIPTION
            "The value of this object indicates whether the alarm
             has been cleared or not."
        ::= { alarmSynEntry 4 }

    alarmSynClearTime  OBJECT-TYPE
        SYNTAX  DateAndTime
        ACCESS  read-only
        STATUS  current
        DESCRIPTION
            "The time when an alarm is cleared."
        ::= { alarmSynEntry 5 }
		
    alarmSynEnable  OBJECT-TYPE
        SYNTAX  INTEGER { enable(1), disable(2) }
        ACCESS  read-write
        STATUS  current
        DESCRIPTION
            "Alarm Synchronization Enable. If the value of this
             object is 'disable(2)', all the history alarm will
             be clear."
        DEFVAL { enable }
        ::= { logEventGroup 3 }				
		
	logEventEnable	OBJECT-TYPE	
		SYNTAX			INTEGER   { enable ( 1 ) , disable ( 2 ) } 
		MAX-ACCESS		read-write
		STATUS			current
		DESCRIPTION		"The value of this object indicates whether enable log event."
		::=  {  logEventGroup  4  }

	lastLogEventIndex	OBJECT-TYPE	
		SYNTAX			Unsigned32	--Integer32
		MAX-ACCESS		read-only
		STATUS			current
		DESCRIPTION		"The vlaue of this object indicates the index of event logged last time."
		::=  {  logEventGroup  5 }		
		
		
-- fanAlarmInfoGroup-------------------------

	devFanAlarmTable		OBJECT-TYPE 
		SYNTAX 		SEQUENCE OF DevFanAlarmEntry
		MAX-ACCESS 	not-accessible 
		STATUS 		current 
		DESCRIPTION 	"table of fans alarm information"	         	         
		::=	{ fanAlarmInfoGroup 1 }
		
	devFanAlarmEntry	OBJECT-TYPE 
		SYNTAX 		DevFanAlarmEntry
		MAX-ACCESS 	not-accessible 
		STATUS 		current 
		DESCRIPTION 	"An entry in the table, containing status information"	         	         
		INDEX 		{ devFanDeviceIndex , devFanIndex }
		::=	{ devFanAlarmTable 1 }
		
	DevFanAlarmEntry ::= SEQUENCE {
		devFanDeviceIndex    INTEGER,
		devFanIndex 		INTEGER ,
		devFanAlarmStatus	INTEGER ,
		devFanSpyEnable     INTEGER,
		devFanRev		INTEGER
	}

	devFanDeviceIndex   OBJECT-TYPE 
		SYNTAX 	INTEGER
		MAX-ACCESS            read-only 
	        STATUS                       current 	
		DESCRIPTION           "index of device"
	       ::={  devFanAlarmEntry  1  }	
		
	devFanIndex	OBJECT-TYPE 
		SYNTAX 	INTEGER
		MAX-ACCESS            read-only 
	        STATUS                       current 	
		DESCRIPTION           "index of the fan that the 'devFanDeviceIndex' indicated"
	       ::={  devFanAlarmEntry  2  }	
	       
	devFanAlarmStatus        OBJECT-TYPE 
	       SYNTAX                   TruthValue {  ALARM(1), CLEAR(5)  }         
	       MAX-ACCESS            read-only 
	       STATUS                       current 
	       DESCRIPTION           "alarm status for fan"
	       ::={  devFanAlarmEntry  3  }

	devFanSpyEnable   OBJECT-TYPE 
		SYNTAX   INTEGER {enable(1),disable(2),notSupport(3)}
		MAX-ACCESS   read-write
		STATUS  current
		DESCRIPTION   "fan spy enable"
		::={  devFanAlarmEntry  4  }

	devFanRev		OBJECT-TYPE 
		SYNTAX   INTEGER 
		MAX-ACCESS   read-only
		STATUS  current
		DESCRIPTION   "the fan speed"
		::={  devFanAlarmEntry  5  }



	devFanNumber	OBJECT-TYPE 
		SYNTAX 	Integer32
		MAX-ACCESS   read-only
	    STATUS       current 	
		DESCRIPTION  ""
	       ::={  fanAlarmInfoGroup  2  }	
	devFanAutoTurnOnThresholds	OBJECT-TYPE 
		SYNTAX 	Integer32
		MAX-ACCESS   read-write
	    STATUS       current 	
		DESCRIPTION  ""
	       ::={  fanAlarmInfoGroup  3  }	
	devFanAutoTurnOffThresholds	OBJECT-TYPE 
		SYNTAX 	Integer32
		MAX-ACCESS   read-write
	    STATUS       current 	
		DESCRIPTION  ""
	       ::={  fanAlarmInfoGroup  4  }	
	devFanRevThresholds  OBJECT-TYPE 
		SYNTAX		Integer32
		MAX-ACCESS	read-write
		STATUS 	current
		DESCRIPTION	"the speed of fan,default value 1000/minute"
		::={	fanAlarmInfoGroup 5}


--  power information--------------------------
	powerInfoTable		OBJECT-TYPE 
		SYNTAX 			SEQUENCE OF PowerInfoEntry
		MAX-ACCESS 		not-accessible 
		STATUS 			current 
		DESCRIPTION 	"table of power information"	       	           	              	       
		::={ powerInfoGroup 1 }
		
	powerInfoEntry		OBJECT-TYPE 
		SYNTAX 			PowerInfoEntry
		MAX-ACCESS 		not-accessible 
		STATUS 			current 
		DESCRIPTION 	"An entry in the table,containing status about power information"	       	           	              	       
		INDEX			{ powerIndex }
		::={ powerInfoTable 1 }
		
	PowerInfoEntry ::= SEQUENCE {
		powerIndex			INTEGER ,
		powerRunStatus		INTEGER  ,
		powerTemperature	INTEGER,
		powerLastChangeTime	TimeTicks,
		powerTMPRisingThreshold	Integer32 ,
		powerTMPFallingThreshold	Integer32,
		powerModuleType     INTEGER,
		powerVoltage        INTEGER,
		powerCurrent        INTEGER,
		PowerVOLTHighThreshold    INTEGER,
		PowerVOLTLowThreshold     INTEGER, 
		PowerAlarmInfo       INTEGER,
		PowerAlarmID        INTEGER,
		PowerClearAlarmID    INTEGER
	}
	
	powerIndex     OBJECT-TYPE 
		SYNTAX          INTEGER
	    MAX-ACCESS      read-only  
	    STATUS          current 
	    DESCRIPTION     "The value indicates the index of power"
	    ::={  powerInfoEntry   1  }	
	
	powerRunStatus     OBJECT-TYPE 
	       SYNTAX            INTEGER { empty(1),powerOff(2), powerOn(3) }
	       MAX-ACCESS        read-only  
	       STATUS            current 
	       DESCRIPTION       "The value of this object indicates power status"
	       ::={powerInfoEntry 2 }
	       
	powerTemperature     OBJECT-TYPE 
		SYNTAX          INTEGER( 1..100 )
	    MAX-ACCESS      read-only  
	    STATUS          current 
	    DESCRIPTION     "The value indicates the temperature of power"
	    ::={  powerInfoEntry   3  }		    
	    
	powerLastChangeTime     OBJECT-TYPE 
		SYNTAX          TimeTicks
	    MAX-ACCESS      read-only  
	    STATUS          current 
	    DESCRIPTION     "The value indicates time at which powers's satus changed"
	    ::={  powerInfoEntry   4  }		
	    
	powerTMPRisingThreshold     OBJECT-TYPE 
		SYNTAX          Integer32 
	    MAX-ACCESS      read-write  
	    STATUS          current 
	    DESCRIPTION     "The value indicates rising threashold of the temperatur of a power"
	    ::={  powerInfoEntry   5  }	
	    
	powerTMPFallingThreshold     OBJECT-TYPE 
		SYNTAX          Integer32 
	    MAX-ACCESS      read-write   
	    STATUS          current 
	    DESCRIPTION     "The value indicates falling threashold of the temperatur of a power"
	    ::={  powerInfoEntry   6  }	

	powerModuleType     OBJECT-TYPE 
		SYNTAX          INTEGER  { AC220V(1), DC48V(2)} 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value of the object indicates power module type"
	    ::={  powerInfoEntry   7  }	

	powerVoltage     OBJECT-TYPE 
		SYNTAX          INTEGER 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value indicates the voltage of a power"
	    ::={  powerInfoEntry   8  }	


	powerCurrent     OBJECT-TYPE 
		SYNTAX          INTEGER 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value indicates the current of a power"
	    ::={  powerInfoEntry   9  }	


	powerVOLTHighThreshold     OBJECT-TYPE 
		SYNTAX          INTEGER 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value indicates high threashold of the voltage of a power"
	    ::={  powerInfoEntry   10  }	

	powerVOLTLowThreshold     OBJECT-TYPE 
		SYNTAX          INTEGER 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value indicates low threashold of the voltage of a power"
	    ::={  powerInfoEntry   11  }
	    
	powerAlarmInfo     OBJECT-TYPE 
		SYNTAX          INTEGER 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value indicates the alarminfo of a power
		
						 AlarmID                AlarmInfo
						 
						0x00000000				null
						0x00000001			input_volt_abnoarmal
						0x00000002			pwu_stat_abnoarmal
						0x00000004			pwu_fan_abnoarmal
						0x00000008			cur_limit_abnoarmal
						0x00000010			ac_volt_abnoarmal
						0x00000020			high_volt_abnoarmal
						0x00000040			out_cur_abnoarmal
						0x00000080			low_line_abnoarmal
						0x00000100			pwu_reg_abnoarmal
						0x00000200			dc_volt_abnoarmal
						0x00000400			power_off_abnoarmal
						0x00000800			temp_high_abnoarmal
						
						"
	    ::={  powerInfoEntry   12  }
	
		
	powerAlarmID     OBJECT-TYPE 
		SYNTAX          INTEGER 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value indicates the alarmid of a power	"
	    ::={  powerInfoEntry   13  }

	powerClearAlarmID     OBJECT-TYPE 
		SYNTAX          INTEGER 
	    MAX-ACCESS      read-only   
	    STATUS          current 
	    DESCRIPTION     "The value indicates the clearalarmid of a power"
	    ::={  powerInfoEntry   14  }		
		

--------------------------          trap       ---------------------------------------------

	devFanAlarm	NOTIFICATION-TYPE
		OBJECTS			{ deviceIndex, devFanIndex }
		STATUS			current
		DESCRIPTION		"fan alarm"
		::=  {  gwDevTrapGroup 28  }

	devFanAlarmClear	NOTIFICATION-TYPE
		OBJECTS			{ deviceIndex, devFanIndex }
		STATUS			current
		DESCRIPTION		"fan alarm clear"
		::=  {  gwDevTrapGroup  29  }

	deviceTemperatureHigh  NOTIFICATION-TYPE
		OBJECTS			{ deviceIndex }
		STATUS			current
		DESCRIPTION		"device temperature high alarm"
		::=  {  gwDevTrapGroup  124  }

	deviceTemperatureHighClear  NOTIFICATION-TYPE
		OBJECTS			{ deviceIndex }
		STATUS			current
		DESCRIPTION		"device temperature high alarm clear"
		::=  {  gwDevTrapGroup  125  }

	deviceTemperatureLow   NOTIFICATION-TYPE
		OBJECTS			{ deviceIndex }
		STATUS			current
		DESCRIPTION		"device temperature low alarm"
		::=  {  gwDevTrapGroup  126  }

	deviceTemperatureLowClear NOTIFICATION-TYPE
		OBJECTS			{ deviceIndex }
		STATUS			current
		DESCRIPTION		"device temperature low alarm clear"
		::=  {  gwDevTrapGroup  127  }


-------temperature information--------------------------------------------------------------
	temperatureInfoTable  OBJECT-TYPE 
		SYNTAX 		SEQUENCE OF TemperatureInfoEntry
		MAX-ACCESS 	not-accessible 
		STATUS 		current 
		DESCRIPTION 	"table of temperature information"	         	         
		::=	{ temperatureInfoGroup 1 }

	temperatureInfoEntry		OBJECT-TYPE 
		SYNTAX 			TemperatureInfoEntry
		MAX-ACCESS 		not-accessible 
		STATUS 			current 
		DESCRIPTION 	"An entry in the table,containing status about temperature information"	       	           	              	       
		INDEX			{temperatureDeviceIndex}
		::={ temperatureInfoTable 1 }

	TemperatureInfoEntry ::= SEQUENCE {
		temperatureDeviceIndex	INTEGER,
		devTemperature		INTEGER  ,
		devTemperatureHighThresholds 	Integer32 ,
		devTemperatureLowThreshold		Integer32,
		devTemperatureSpyEnable           INTEGER
	}


	temperatureDeviceIndex OBJECT-TYPE
		SYNTAX    INTEGER
		MAX-ACCESS   read-only
		STATUS   current
		DESCRIPTION  "The value indicates the device temperature"
		::={temperatureInfoEntry  1}
	
	devTemperature  OBJECT-TYPE
		SYNTAX    INTEGER
		MAX-ACCESS   read-only
		STATUS   current
		DESCRIPTION  "The value indicates the device temperature"
		::={temperatureInfoEntry  2}

	devTemperatureHighThresholes  OBJECT-TYPE
		SYNTAX    Integer32 
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION  "The value indicates the device temperature high "
		::={temperatureInfoEntry  3}

	devTemperatureLowThresholes  OBJECT-TYPE
		SYNTAX   Integer32
		MAX-ACCESS  read-write
		STATUS current
		DESCRIPTION  "The value indicates the device temperature low "
		::={temperatureInfoEntry  4}

	devTemperatureSpyEnable   OBJECT-TYPE
		SYNTAX    INTEGER  { enable(1), disable(2), notSupport(3)}
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION  "The value indicates the device temperature spy enable"
		::={temperatureInfoEntry  5}
	------------- onuAlarmMaskGroup  ---------------------------------------------------
	onuAlarmMaskTable  OBJECT-TYPE 
		SYNTAX 		SEQUENCE OF OnuAlarmMaskEntry
		MAX-ACCESS 	not-accessible 
		STATUS 		current 
		DESCRIPTION 	"table of onu alarm mask information"	         	         
		::=	{ onuAlarmMaskGroup  1 }

	onuAlarmMaskEntry		OBJECT-TYPE 
		SYNTAX 			OnuAlarmMaskEntry
		MAX-ACCESS 		not-accessible 
		STATUS 			current 
		DESCRIPTION 	"An entry in the table,containing status about onu alarm mask information"	       	           	              	       
		INDEX			{onutypeIndex}
		::={ onuAlarmMaskTable  1 }

	OnuAlarmMaskEntry::= SEQUENCE {
		onutypeIndex	EponDeviceType,
		onualarmMask	BITS  ,
		onualarmMaskrowstatus 	RowStatus 
		}

	onutypeIndex OBJECT-TYPE
		SYNTAX    EponDeviceType
		MAX-ACCESS   read-only
		STATUS   current
		DESCRIPTION  "onu type vlaue"
		::={onuAlarmMaskEntry  1}

	onualarmMask OBJECT-TYPE
		SYNTAX    BITS{power(0),fan(1),cpu(2),temperature(3),register(4),present(5),ethlink(6),ethfer(7),ethflr(8),ethti(9),ethloop(10),ponber(11),ponfer(12),ponabnormal(13),ponaps(14),ponlink(15),onuLaserAlwayOn(16),onuOpticalPowerLow(17),onuOpticalPowerHigh(18)}
		MAX-ACCESS   read-write
		STATUS   current
		DESCRIPTION  "onu alarm mask type"
		::={onuAlarmMaskEntry  2}
	
	onualarmMaskrowstatus  OBJECT-TYPE
		SYNTAX    RowStatus 
		MAX-ACCESS   read-write
		STATUS   current
		DESCRIPTION  "onu alarm mask table  row status"
		::={onuAlarmMaskEntry  3}		           	       	   
		           	       	   
END