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
|
-- *****************************************************************
-- SiteLight EDFA MIB
-- *****************************************************************
SL-EDFA-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, Integer32, TimeTicks
FROM SNMPv2-SMI
DisplayString, TruthValue,
TimeStamp FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
InterfaceIndex FROM IF-MIB
PerfCurrentCount, PerfIntervalCount,
PerfTotalCount FROM PerfHist-TC-MIB
sitelight FROM SL-NE-MIB;
slEdfa MODULE-IDENTITY
LAST-UPDATED "200202040000Z"
ORGANIZATION "PacketLight Networks Ltd."
CONTACT-INFO
"Omri_Viner@PacketLight.com"
DESCRIPTION
"This MIB module describes the EDFA Cards"
::= { sitelight 9 }
-- The EDFA MIB consists of the following groups:
-- EDFA Configuration Table
-- EDFA Traps
edfaConfig OBJECT IDENTIFIER ::= { slEdfa 1 }
edfaTraps OBJECT IDENTIFIER ::= { slEdfa 2 }
edfaTraps0 OBJECT IDENTIFIER ::= { edfaTraps 0 }
-- ----------------------------------------------------
--
-- The Edfa Configuration Table
--
-- ----------------------------------------------------
edfaConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF EdfaConfigEntry
MAX-ACCESS not-accessible
STATUS current -- deprecated
DESCRIPTION
"The EDFA configuration table."
::= { edfaConfig 1 }
edfaConfigEntry OBJECT-TYPE
SYNTAX EdfaConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the EDFA interface configuration table.
The index to this table is the same as the
an ifIndex."
INDEX { edfaIfIndex }
::= { edfaConfigTable 1 }
EdfaConfigEntry ::=
SEQUENCE {
edfaIfIndex InterfaceIndex,
edfaPumpTemp Integer32,
edfaRxPower INTEGER,
edfaPumpAdminStatus INTEGER,
edfaPumpOperStatus INTEGER,
edfaStatus INTEGER,
edfaVoa INTEGER,
edfaAutomaticMode TruthValue,
edfaAdminControlMode INTEGER,
edfaOperControlMode INTEGER,
edfaAdminGain INTEGER,
edfaOperGain INTEGER,
edfaAdminOutputPower INTEGER,
edfaOperOutputPower INTEGER,
edfaChannelsNumber INTEGER,
edfaTotalChannelsNumber INTEGER,
edfaEyeSafetyMode TruthValue,
edfaShutDownLipEnable TruthValue,
edfaAutoPowerUpLipEnable TruthValue,
edfaMaxGain INTEGER,
-- Gain In Range from-to
edfaGainInFrom INTEGER,
edfaGainInTo INTEGER,
-- Gain Out Range from-to
edfaGainOutFrom INTEGER,
edfaGainOutTo INTEGER,
-- Power In Range from-to
edfaPowerInFrom INTEGER,
edfaPowerInTo INTEGER,
-- Power Out Range from-to
edfaPowerOutFrom INTEGER,
edfaPowerOutTo INTEGER,
-- Channel information
edfaFromChannel INTEGER,
edfaToChannel INTEGER,
edfaOscChannel INTEGER,
edfaRedBlueType INTEGER,
edfaRole INTEGER,
-- A description string
edfaFreeDescription DisplayString,
edfaConfigSafetyThreshold INTEGER
}
edfaIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amplifier interface index."
::= { edfaConfigEntry 1 }
edfaPumpTemp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The pump temperture (in Kelvin)."
::= { edfaConfigEntry 2 }
edfaRxPower OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured Rx Power.
The value is specified in ten'th of Dbm units increments, starting
from -30.0 dbm (e.g. value 0 means -30.0 dbm)."
::= { edfaConfigEntry 3 }
edfaPumpAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready
down(2),
restart(3) --
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the laser. The restart(3)
state indicates that the edfa pump should be restarted.
The restart(3) is not a state, thus it is not kept
in the configuration file."
::= { edfaConfigEntry 4 }
edfaPumpOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
restart(3), --
unknown(4) -- status can not be determined
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the laser.
If edfaPumpAdminStatus is down(2) then
edfaPumpOperStatus should be down(2).
If edfaPumpAdminStatus is changed to up(1) then
edfaPumpOperStatus should change to
up(1) if the interface is ready to transmit and
receive network traffic; it should remain in the down(2) state if
and only if there is a fault that prevents it from
going to the up(1) state.
The operational status is equal to restart(3) if the edfa pump
is still in restart process."
::= { edfaConfigEntry 5 }
edfaStatus OBJECT-TYPE
SYNTAX INTEGER (1..8191)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the Line Status of the
Edfa module.
The edfaStatus is a bit map represented as a
sum, therefore, it can represent multiple failures (alarms)
simultaneously.
edfaNoAlarm must be set if and only if no other
flag is set.
The various bit positions are:
1 edfaNoAlarm No alarm present
2 edfaPumpTemperuture Pump temperatur is out-of-bound
4 edfaPumpWavelength Pump wavelength is out-of-bound
8 edfaHwFail Pump HW failure
16 edfaRvcSignalDetect Loss of input signal
32 edfaPumpPower Pump power is out-of-bound
64 edfaRcvPower Rx Power is out-of-bound
128 edfaTemprature Edfa temperature is out-of-bound
256 edfaEyeSafty Eye safety alarm (available only in eye-safety mode)
512 edafGainFlatness Gain flatness alarm
1024 edfaXmtPower Tx Power is out-of-bound
2048 edfaGain Edfa Gain is out-of-bound
4096 edfaEol Pump End Of Life"
::= { edfaConfigEntry 6 }
edfaVoa OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The computed VOA output attenuation specified in
0.1 dB units. From 0.0 to +15.0 dB."
::= { edfaConfigEntry 7 }
edfaAutomaticMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the Edfa automatic mode. If equals TRUE,
the Edfa control mode should selected automaticaly.
Otherwise it should be selected manualy."
::= { edfaConfigEntry 8 }
edfaAdminControlMode OBJECT-TYPE
SYNTAX INTEGER {
apc(1), -- automatic power control (the default)
agc(2) -- automatic gain control
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the Edfa control mode. This object
may be set only when edfaAtomaticMode is FALSE."
::= { edfaConfigEntry 9 }
edfaOperControlMode OBJECT-TYPE
SYNTAX INTEGER {
apc(1), -- automatic power control (the default)
agc(2) -- automatic gain control
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Edfa control mode. Initialy the Edfa
starts in APC mode. The AGC mode is used only when
selected manualy or after transient input power change."
::= { edfaConfigEntry 10 }
edfaAdminGain OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The required Edfa Gain value given in 0.1 dB units. This value
may be configured only when the edfa automatic mode is FALSE
and the edfa control mode is Agc."
::= { edfaConfigEntry 11 }
edfaOperGain OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual Edfa Gain value given in 0.1 dB units.
Value range starts with 0.0 dbm"
::= { edfaConfigEntry 12 }
edfaAdminOutputPower OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The required Edfa output power value given in 0.1 dBm units.
The range starts with -30.0 dBm. This value
may be configured only when the edfa control mode is Apc."
::= { edfaConfigEntry 13 }
edfaOperOutputPower OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual Edfa output power value specified in 0.1 dBm units.
Valid valuse are in the range of 0.0 dBm upto +15.0 dBm."
::= { edfaConfigEntry 14 }
edfaChannelsNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of optical channels on this signal."
::= { edfaConfigEntry 15 }
edfaTotalChannelsNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of optical channels on this fiber."
::= { edfaConfigEntry 16 }
edfaEyeSafetyMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When in Eye-Safety mode the edfa reduces the laser
power budget down to safe level upon detection of an
output fiber cut."
::= { edfaConfigEntry 17 }
edfaShutDownLipEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EDFA shout-down on LIP (Loss of signal) -
enable/disable."
::= { edfaConfigEntry 18 }
edfaAutoPowerUpLipEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EDFA automatic power up (after signal returns) -
enable/disable."
::= { edfaConfigEntry 19 }
edfaMaxGain OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The EDFA max gain is determined by the result of the VER command.
Legal values:
gainUnknown(1)
gain14dbm(2) - Booster/Inline, (-2)-14dBm output power, gain (-5)-22dB
gain17dbm(3) - Booster/Inline, (-2)-17dBm output power, gain (-5)-22dB
gain20dbm(4) - Booster/Inline, (-2)-20dBm output power, gain (-5)-22dB
gain23dbm(5) - Booster/Inline, 5-23dBm output power, gain (-5)-22dB, 16 channels
gain18dbmPreAmp8Ch(6) - Preamp (-18)-5dBm output power, fixed gain 18dB
gain18dbmPreAmp16ChRed(7) - Preamp (-18)-5dBm output power, fixed gain 18dB
gain18dbmPreAmp16ChBlue(8)- Preamp (-18)-0dBm output power, fixed gain 18dB
gain23dbmGain10(9) - Booster/Inline, 23dBm output power with fixed gain of 10dB, 32 channels
"
::= { edfaConfigEntry 20 }
-- Gain In Range from-to
edfaGainInFrom OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lower input gain range of the edfa in units of 0.1 db."
::= { edfaConfigEntry 21 }
edfaGainInTo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Upper input gain range of the edfa in units of 0.1 db."
::= { edfaConfigEntry 22 }
-- Gain Out Range from-to
edfaGainOutFrom OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lower output gain range of the edfa in units of 0.1 db."
::= { edfaConfigEntry 23 }
edfaGainOutTo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Upper output gain range of the edfa in units of 0.1 db."
::= { edfaConfigEntry 24 }
-- Power In Range from-to
edfaPowerInFrom OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lower input power range of the edfa in units of 0.1 dbm."
::= { edfaConfigEntry 25 }
edfaPowerInTo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Upper input power range of the edfa in units of 0.1 dbm."
::= { edfaConfigEntry 26 }
-- Power Out Range from-to
edfaPowerOutFrom OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lower output power range of the edfa in units of 0.1 dbm."
::= { edfaConfigEntry 27 }
edfaPowerOutTo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Upper output power range of the edfa in units of 0.1 dbm."
::= { edfaConfigEntry 28 }
-- Channel information
edfaFromChannel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The first channel number supported by the edfa; 0 to ignore."
::= { edfaConfigEntry 29 }
edfaToChannel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last channel number supported by the edfa; 0 to ignore."
::= { edfaConfigEntry 30 }
edfaOscChannel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The wavelenght of the optical supervisory channel e.g. 1510, 1490."
::= { edfaConfigEntry 31 }
edfaRedBlueType OBJECT-TYPE
SYNTAX INTEGER {
red(1),
blue(2),
none(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the edaf."
::= { edfaConfigEntry 32 }
edfaRole OBJECT-TYPE
SYNTAX INTEGER {
booster(1),
boosterInline(2),
preamp(3),
inline(4),
raman(5),
other(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The role of the edaf."
::= { edfaConfigEntry 33 }
-- A description string
edfaFreeDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A free text with additional edfa information."
::= { edfaConfigEntry 34 }
edfaConfigSafetyThreshold OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Eye Safety threshold level specified in dBm units.
The value given in 0.1 dBm units. The range starts with -50.0 dBm."
::= { edfaConfigEntry 35 }
-- ----------------------------------------------------
--
-- The Edfa Traps
--
-- ----------------------------------------------------
edfaStatusChange NOTIFICATION-TYPE
OBJECTS { edfaIfIndex,
edfaStatus }
STATUS current
DESCRIPTION
"A edfaStatusChange trap is sent when the
value of an instance edfaStatus changes. It
can be utilized by an NMS to trigger polls."
::= { edfaTraps 1 }
edfaControlModeChange NOTIFICATION-TYPE
OBJECTS { edfaIfIndex,
edfaOperControlMode }
STATUS current
DESCRIPTION
"A edfaControlModeChange trap is sent when the
value of an instance edfaOperControlMode when going
from APC to AGC (both directions) in automatic mode."
::= { edfaTraps 2 }
edfaStatusChange0 NOTIFICATION-TYPE
OBJECTS { edfaIfIndex,
edfaStatus }
STATUS current
DESCRIPTION
"A edfaStatusChange trap is sent when the
value of an instance edfaStatus changes. It
can be utilized by an NMS to trigger polls.
It is defined to support browsers that don't recognize RFC 2576."
::= { edfaTraps0 1 }
edfaControlModeChange0 NOTIFICATION-TYPE
OBJECTS { edfaIfIndex,
edfaOperControlMode }
STATUS current
DESCRIPTION
"A edfaControlModeChange trap is sent when the
value of an instance edfaOperControlMode when going
from APC to AGC (both directions) in automatic mode.
It is defined to support browsers that don't recognize RFC 2576."
::= { edfaTraps0 2 }
END
|