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
|
-- *****************************************************************
-- UBQS-SLD-MIB
--
-- July 2011, Park Hyung Eun
--
-- Copyright (c) 2009 by Ubiquoss, Corp.
--
-- All rights reserved.
-- ***************************************************************
UBQS-SLD-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Gauge32,
Unsigned32,
Integer32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
RowStatus,
TruthValue,
TimeStamp,
DisplayString,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
ifIndex,
ifName,
ifType,
ifAdminStatus,
ifOperStatus
FROM IF-MIB
ubiMgmtv2
FROM UBQS-SMI;
ubiSldMIB MODULE-IDENTITY
LAST-UPDATED "201107190000Z"
ORGANIZATION "Ubiquoss Corp."
CONTACT-INFO
" Ubiquoss
Customer Service
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
Tel: 82-2-2190-3100"
DESCRIPTION
"The UBQS-SLD-MIB is used for getting
the information about self loop detect(SLD)."
::= { ubiMgmtv2 25 }
-- ***********************************************************
-- Textual Conventions
-- ***********************************************************
-- ***************************************************************
-- ubiInterfaceMIB
-- ***************************************************************
ubiSldMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiSldMIB 0 }
ubiSldMIBObjects OBJECT IDENTIFIER ::= { ubiSldMIB 1 }
ubiSldMIBConformance OBJECT IDENTIFIER ::= { ubiSldMIB 2 }
ubiSldGlobal OBJECT IDENTIFIER ::= { ubiSldMIBObjects 1 }
-- ***********************************************************
-- ubiSldMIBNotificationPrefix
-- ***********************************************************
ubiSelfLoopDetectStateChange NOTIFICATION-TYPE
OBJECTS
{
ifDescr,
ubiSldIfState,
ubiSldIfRecoveryMethod
}
STATUS current
DESCRIPTION
"When SLD status is changed, this notification is occured."
::= { ubiSldMIBNotificationPrefix 1 }
-- ***********************************************************
-- ubiSldMIBObjects
-- ***********************************************************
ubiSldEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is enable function of SLD."
::= { ubiSldGlobal 1 }
ubiSldHelloInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global SLD hello interval."
::= { ubiSldGlobal 2 }
ubiSldRecoveryTime OBJECT-TYPE
SYNTAX Integer32 {
disable(0)
}
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global SLD Recovery time."
::= { ubiSldGlobal 3 }
ubiSldNotifyOnlyEnbaled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is enable Global function of
only notification without SLD."
::= { ubiSldGlobal 4 }
ubiSldPortCheckEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is enable global configuration of
SLD without checking port."
::= { ubiSldGlobal 5 }
ubiSldIfStateChangeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is enable to sending SLD SNMP trap message"
::= { ubiSldGlobal 6 }
-- ***********************************************************
-- ubiSldIfTable
-- ***********************************************************
ubiSldIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSldIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiSldMIBObjects 2 }
ubiSldIfEntry OBJECT-TYPE
SYNTAX UbiSldIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { ifIndex }
::= { ubiSldIfTable 1 }
UbiSldIfEntry ::= SEQUENCE
{
ubiSldIfEnabled TruthValue,
ubiSldIfHelloInterval Integer32,
ubiSldIfRecoveryTime Integer32,
ubiSldIfNotifyOnlyEnabled TruthValue,
ubiSldIfPortCheckEnabled TruthValue,
ubiSldIfState INTEGER,
ubiSldIfRecoveryMethod INTEGER,
ubiSldIfLastStateChangeTime TimeStamp,
ubiSldIfErrorDisabledCount Integer32,
ubiSldIfStateReset INTEGER
}
ubiSldIfEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is enable to transmit SLD hello PDU in interface."
::= { ubiSldIfEntry 1 }
ubiSldIfHelloInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is changed SLD hello interval."
::= { ubiSldIfEntry 2 }
ubiSldIfRecoveryTime OBJECT-TYPE
SYNTAX Integer32 {
disable(0)
}
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When it is configured, if interface is disabled by SLD,
interface automatically recover after recovery time."
::= { ubiSldIfEntry 3 }
ubiSldIfNotifyOnlyEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When it is configured, if self-loop is detected,
only notification is occured without disable interface."
::= { ubiSldIfEntry 4 }
ubiSldIfPortCheckEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When it is enabled, if it receive SLD hello PDU
of anothor interface, it regards SLD."
::= { ubiSldIfEntry 5 }
ubiSldIfState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
errDisable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current interface status
enable(1) : interface is active
errDisable(2) : interface is disable by SLD."
::= { ubiSldIfEntry 6 }
ubiSldIfRecoveryMethod OBJECT-TYPE
SYNTAX INTEGER {
none(1),
autoRecovery(2),
manualRecovery(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Recorvery status
none(1) : none
autoRecovery(2) : Auto recovery
manualRecovery(3): Manual recoery"
::= { ubiSldIfEntry 7 }
ubiSldIfLastStateChangeTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last time of changing interface status by SLD."
::= { ubiSldIfEntry 8 }
ubiSldIfErrorDisabledCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of occurence self-loop detection."
::= { ubiSldIfEntry 9 }
ubiSldIfStateReset OBJECT-TYPE
SYNTAX INTEGER {
none(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It manually clear interface status by SLD.
none(0) : Do nothing
reset(1) : Clear interface."
::= { ubiSldIfEntry 10 }
-- ***********************************************************
-- ubiSldMIBConformance
-- ***********************************************************
ubiSldMIBCompliances OBJECT IDENTIFIER ::= { ubiSldMIBConformance 1 }
ubiSldMIBGroups OBJECT IDENTIFIER ::= { ubiSldMIBConformance 2 }
-- Compliance
ubiSldMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which
implement the UBQS-SLD-MIB"
MODULE -- this module
MANDATORY-GROUPS {
ubiSldGroup
}
::= { ubiSldMIBCompliances 1 }
ubiSldGroup OBJECT-GROUP
OBJECTS {
}
STATUS current
DESCRIPTION
"A collection of objects containing
information about self loop detect."
::= { ubiSldMIBGroups 1 }
END
|