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
|
-- ----------------------------------------------------------------------------
--
-- SIAE MICROELETTRONICA s.p.a.
--
-- Via Michelangelo Buonarroti, 21
-- 20093 - Cologno Monzese
-- Milano
-- ITALY
--
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------
SIAE-LLF-MIB
DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
siaeMib
FROM SIAE-TREE-MIB
AlarmStatus, AlarmSeverityCode
FROM SIAE-ALARM-MIB;
llf MODULE-IDENTITY
LAST-UPDATED "201409020000Z"
ORGANIZATION "SIAE MICROELETTRONICA spa"
CONTACT-INFO
"SIAE MICROELETTONICA s.p.a.
Via Michelangelo Buonarroti, 21
20093 - Cologno Monzese
Milano - ITALY
Phone : +39-02-27325-1
E-mail: tbd@siaemic.com
"
DESCRIPTION
"SIAE's Link Loss Forwarding MIB.
"
::= { siaeMib 85 }
--------------------------------------------------------------------------------
-- llf GROUP
--------------------------------------------------------------------------------
--
-- This group is used for Link Loss Forwarding configuration and alarm reporting
--
-- Each physical interface (LAN) can be assigned to a LLF circuit in order to
-- propagate its LOS alarm through a radio link.
--
-- For each radio link, there are several circuits.
-- Each interface can insert into a circuit its LOS alarm to be propagate to the
-- other endpoint of a radio link.
-- In each directions, the circuit has an signal failure if at least the
-- operative status of one LAN connected to the circuit is down (LOS).
-- In the local terminal, a LAN interface uses the signal failure of the circuit
-- to propagate the LOS alarm by turning off physical level.
--
-- In order to propagate in both direction a LOS to an interface, a SNMP manager
-- must (in both link terminals):
-- 1) Create an entry in llfTable with index equal to the ifIndex of interface.
-- 2) Attach this entry to a circuit creating an entry in llfMapTable.
-- 3) Insert the LOS alarm in the circuit setting llfMapLosInsertion to
-- enable.
--
--------------------------------------------------------------------------------
------ Beginning --------------------------------------------------------------
llfMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numerical version of this module.
The string version of this MIB have the following format:
XX.YY.ZZ
so, for example, the value 1 should be interpreted as 00.00.01
and the value 10001 should be interpreted as 01.00.01."
DEFVAL {1}
::= {llf 1}
------- Begin of llfTable
--
llfTable OBJECT-TYPE
SYNTAX SEQUENCE OF LlfInterface
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table with SIAE's LLF entries."
::= {llf 2}
llfEntry OBJECT-TYPE
SYNTAX LlfInterface
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SIAE's LLF entry."
INDEX {llfIndex}
::= {llfTable 1}
LlfInterface ::=
SEQUENCE {
llfIndex InterfaceIndex,
llfEnable INTEGER,
llfUnidirectionalFault INTEGER,
llfDelayTime INTEGER,
llfProtectionMode INTEGER,
llfAlarm AlarmStatus,
llfRowStatus RowStatus
}
llfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each
interface supporting LLF. This object is identical to the ifIndex
of the standard MIB-2 ifTable."
::= {llfEntry 1}
llfEnable OBJECT-TYPE
SYNTAX INTEGER {
disable (1),
enable (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"On interfaces supporting LLF, this object is used to disable
or enable LLF towards local LAN interfaces."
DEFVAL {disable}
::= {llfEntry 2}
llfUnidirectionalFault OBJECT-TYPE
SYNTAX INTEGER {
disable (1),
enable (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When enable is set, a local link fault causes LLF on both local
and remote interfaces."
DEFVAL {disable}
::= {llfEntry 3}
llfDelayTime OBJECT-TYPE
SYNTAX INTEGER (0..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The LLF delay time specifies the time interval (in seconds)
to wait for to actuate or to remove the Link Loss Forwarding
condition.
"
DEFVAL {0}
::= {llfEntry 4}
llfProtectionMode OBJECT-TYPE
SYNTAX INTEGER {
disable (1),
enable (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When protection mode is enabled, LLF alarm is issued only when
all radio links or circuits connected to interface are alarmed.
"
DEFVAL {disable}
::= {llfEntry 5}
llfAlarm OBJECT-TYPE
SYNTAX AlarmStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface Link Loss Forwarding alarm status."
::= {llfEntry 6}
llfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row of llfTable.
This object may not be set to destroy until at least a circuit
belong to this LLF interface. In other words, circuits must be
deleted before a LLF interface.
"
::= {llfEntry 7}
--
------- End of llfTable
------- Begin of llfMapTable
--
llfMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF LlfMap
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table map llf interface on llf circuits."
::= {llf 3}
llfMapEntry OBJECT-TYPE
SYNTAX LlfMap
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SIAE's llf cross-connection entry."
INDEX {llfIndex, llfMapLinkIndex, llfMapPolIndex, llfMapCircuitIndex}
::= {llfMapTable 1}
LlfMap ::=
SEQUENCE {
llfMapLinkIndex INTEGER,
llfMapPolIndex INTEGER,
llfMapCircuitIndex INTEGER,
llfMapLosInsertion INTEGER,
llfMapInsertionMode INTEGER,
llfMapSignalFail TruthValue,
llfMapRowStatus RowStatus
}
llfMapLinkIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio link identifier. With llfMapPolIndex and llfMapCircuitIndex it points to a
specific instance of llfCircuitTable."
::= {llfMapEntry 1}
llfMapPolIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio polarization identifier. With llfMapLinkIndex and llfMapCircuitIndex it points to a
specific instance of llfCircuitTable."
::= {llfMapEntry 2}
llfMapCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"LLF circuit identifier. With llfMapLinkIndex and llfMapPolIndex it points to a
specific instance of llfCircuitTable."
::= {llfMapEntry 3}
llfMapLosInsertion OBJECT-TYPE
SYNTAX INTEGER {
disable (1),
enable (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable or disable insertion of interface LOS into a specified
circuit. The inserted LOS is transported through the radio link."
DEFVAL { enable }
::= {llfMapEntry 4}
llfMapInsertionMode OBJECT-TYPE
SYNTAX INTEGER {
single (1),
group (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"In single mode, LOS is inserted in the circuit if the relative
interface has a LOS alarm.
In group mode, LOS is inserted when all (grouped) interfaces
mapped to the same circuit have a LOS alarm."
DEFVAL { single }
::= {llfMapEntry 5}
llfMapSignalFail OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm condition detected on specified circuit."
::= {llfMapEntry 6}
llfMapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row of llfMapTable"
::= {llfMapEntry 7}
--
------- End of llfMapTable
------- Begin of llfCircuitTable
--
llfCircuitTable OBJECT-TYPE
SYNTAX SEQUENCE OF LlfCircuit
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table describing llf circuits available over each link.
This circuits can be connected to available interfaces via
llfMapTable."
::= {llf 4}
llfCircuitEntry OBJECT-TYPE
SYNTAX LlfCircuit
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SIAE's llf circuit entry."
INDEX {llfCircuitLinkIndex, llfCircuitPolIndex, llfCircuitIndex}
::= {llfCircuitTable 1}
LlfCircuit ::=
SEQUENCE {
llfCircuitLinkIndex INTEGER,
llfCircuitPolIndex INTEGER,
llfCircuitIndex INTEGER,
llfCircuitLinkLabel DisplayString,
llfCircuitRowStatus RowStatus
}
llfCircuitLinkIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio link identifier."
::= {llfCircuitEntry 1}
llfCircuitPolIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio polarization identifier."
::= {llfCircuitEntry 2}
llfCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"LLF circuit identifier."
::= {llfCircuitEntry 3}
llfCircuitLinkLabel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string used to assign a name to the radio link and polarization."
::= {llfCircuitEntry 4}
llfCircuitRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row of llfCircuitTable"
::= {llfCircuitEntry 5}
--
------- End of llfCircuitTable
llfAlarmSeverityCode OBJECT-TYPE
SYNTAX AlarmSeverityCode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the severity associated to the llfAlarm
and enables/disables the trap generation on status change event."
DEFVAL {majorTrapEnable}
::= {llf 5}
END
|