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
|
-- *****************************************************************
-- DLINKSW-CABLE-DIAG-MIB.mib : Cable Diagnostic MIB
--
-- Copyright (c) 2013 D-Link Corporation, all rights reserved.
--
-- *****************************************************************
DLINKSW-CABLE-DIAG-MIB DEFINITIONS ::= BEGIN
IMPORTS
TEXTUAL-CONVENTION FROM SNMPv2-TC
MODULE-IDENTITY,OBJECT-TYPE,
Integer32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
ifIndex FROM IF-MIB
dlinkIndustrialCommon FROM DLINK-ID-REC-MIB;
dlinkSwCableDiagMIB MODULE-IDENTITY
LAST-UPDATED "201301180000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
" D-Link Corporation
Postal: No. 289, Sinhu 3rd Rd., Neihu District,
Taipei City 114, Taiwan, R.O.C
Tel: +886-2-66000123
E-mail: tsd@dlink.com.tw
"
DESCRIPTION
"The MIB module for determining the status of
the cables attached to the device."
REVISION "201301180000Z"
DESCRIPTION
" This is the first version of this MIB file.
"
::= {dlinkIndustrialCommon 58}
DlinkCableDiagStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status of a pair of the cable.
other(0) - Other status is not specified here. E.g. the
diagnostics has never been performed, or the previous
result is cleared.
ok(1) - The pair or cable has no error.
open(2) - The cable in the error pair does not have a connection
at the specified position.
short(3) - The cable in the error pair has a short problem at the
specified position.
openOrShort(4) - The PHY has no capability to distinguish between
open and short state.
crosstalk(5)- The cable in the error pair has a crosstalk problem
at the specified position.
unKnown(6) - The diagnostics got an unknown status.
noCable(7) - The port does not have any cable connection to the
remote partner.
shutdown(8)- The remote partner is powered off.
"
SYNTAX INTEGER {
other(0),
ok(1),
open(2),
short(3),
openOrShort(4),
crosstalk(5),
unKnown(6),
noCable(7),
shutdown(8)
}
-- -----------------------------------------------------------------------------
dCableDiagNotifications OBJECT IDENTIFIER ::= { dlinkSwCableDiagMIB 0 }
dCableDiagObjects OBJECT IDENTIFIER ::= { dlinkSwCableDiagMIB 1 }
dCableDiagConformance OBJECT IDENTIFIER ::= { dlinkSwCableDiagMIB 2 }
-- -----------------------------------------------------------------------------
-- Notifications
-- -----------------------------------------------------------------------------
-- -----------------------------------------------------------------------------
-- Objects
-- -----------------------------------------------------------------------------
dCableDiagIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DCableDiagIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains a list of information about test on the device's
interfaces. Note that entries will exist in this table when the
corresponding interface is capable to run test."
::= { dCableDiagObjects 1 }
dCableDiagIfEntry OBJECT-TYPE
SYNTAX DCableDiagIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dCableDiagIfTable, contains the
testing controls on an interface."
INDEX { ifIndex }
::= { dCableDiagIfTable 1 }
DCableDiagIfEntry ::= SEQUENCE {
dCableDiagIfAction INTEGER
}
dCableDiagIfAction OBJECT-TYPE
SYNTAX INTEGER {
noOp(1),
test(2),
clear(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object control the action to be executed on the interface.
noOp(1) - No action is taken if this object is set to 'noOp'.
When read, the value 'noOp' is returned.
test(2) - Start the test on the interface.
clear(3) - Clear all the test results on the interface.
The value of the following objects of the entry will
become 'other'.
-- dCableDiagResultPair1Status
-- dCableDiagResultPair2Status
-- dCableDiagResultPair3Status
-- dCableDiagResultPair4Status
The value of the following objects of the entry will
become -1 (unavailable)
-- dCableDiagResultPair1Length
-- dCableDiagResultPair2Length
-- dCableDiagResultPair3Length
-- dCableDiagResultPair4Length
The value of dCableDiagResultStatus of the entry will
become 'notRun'.
"
::= { dCableDiagIfEntry 1 }
-- -----------------------------------------------------------------------------
dCableDiagResultTable OBJECT-TYPE
SYNTAX SEQUENCE OF DCableDiagResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains a list of interface's cable situation.
Note that entries will exist in this table when the
corresponding interface is a copper Ethernet port.
"
::= { dCableDiagObjects 2 }
dCableDiagResultEntry OBJECT-TYPE
SYNTAX DCableDiagResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dCableDiagResultTable contains cable situation
of an interface."
INDEX { ifIndex }
::= { dCableDiagResultTable 1 }
DCableDiagResultEntry ::= SEQUENCE {
dCableDiagResultPair1Status DlinkCableDiagStatus,
dCableDiagResultPair2Status DlinkCableDiagStatus,
dCableDiagResultPair3Status DlinkCableDiagStatus,
dCableDiagResultPair4Status DlinkCableDiagStatus,
dCableDiagResultPair1Length Integer32,
dCableDiagResultPair2Length Integer32,
dCableDiagResultPair3Length Integer32,
dCableDiagResultPair4Length Integer32,
dCableDiagResultStatus INTEGER
}
dCableDiagResultPair1Status OBJECT-TYPE
SYNTAX DlinkCableDiagStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of pair 1 of the cable."
::= { dCableDiagResultEntry 1 }
dCableDiagResultPair2Status OBJECT-TYPE
SYNTAX DlinkCableDiagStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of pair 2 of the cable."
::= { dCableDiagResultEntry 2 }
dCableDiagResultPair3Status OBJECT-TYPE
SYNTAX DlinkCableDiagStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of pair 3 of the cable."
::= { dCableDiagResultEntry 3 }
dCableDiagResultPair4Status OBJECT-TYPE
SYNTAX DlinkCableDiagStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of pair 4 of the cable."
::= { dCableDiagResultEntry 4 }
dCableDiagResultPair1Length OBJECT-TYPE
SYNTAX Integer32
UNITS "meters"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the approximate length or length to the failure of
pair 1 of the cable. This value is in meter units.
The special value of -1 indicates the length is unavailable."
::= { dCableDiagResultEntry 5 }
dCableDiagResultPair2Length OBJECT-TYPE
SYNTAX Integer32
UNITS "meters"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the approximate length or length to the failure of
pair 2 of the cable. This value is in meter units.
The special value of -1 indicates the length is unavailable."
::= { dCableDiagResultEntry 6 }
dCableDiagResultPair3Length OBJECT-TYPE
SYNTAX Integer32
UNITS "meters"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the approximate length or length to the failure of
pair 3 of the cable. This value is in meter units.
The special value of -1 indicates the length is unavailable."
::= { dCableDiagResultEntry 7 }
dCableDiagResultPair4Length OBJECT-TYPE
SYNTAX Integer32
UNITS "meters"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the approximate length or length to the failure of
pair 4 of the cable. This value is in meter units.
The special value of -1 indicates the length is unavailable."
::= { dCableDiagResultEntry 8 }
dCableDiagResultStatus OBJECT-TYPE
SYNTAX INTEGER {
notRun(0),
processing(1),
lastTestOk(2),
lastTestFailed(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of cable diagnostics on the interface.
notRun(0) - the cable diagnostics has never been run for this
interface or the previous result is cleared.
processing(1) - the cable diagnostics is currently running on the
interface.
lastTestOk(2) - the last cable diagnostics was performed successfully
on the interface.
lastTestFailed(3) - the last cable diagnostics failed on the interface."
::= { dCableDiagResultEntry 9 }
-- -----------------------------------------------------------------------------
-- Conformance
-- -----------------------------------------------------------------------------
dCableDiagCompliances OBJECT IDENTIFIER ::= { dCableDiagConformance 1 }
dCableDiagCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the
DLINKSW-CABLE-DIAG-MIB."
MODULE -- this module
MANDATORY-GROUPS {
dCableDiagBasicGroup
}
::= { dCableDiagCompliances 1 }
dCableDiagGroups OBJECT IDENTIFIER ::= { dCableDiagCompliances 2 }
dCableDiagBasicGroup OBJECT-GROUP
OBJECTS {
dCableDiagIfAction,
dCableDiagResultPair1Status,
dCableDiagResultPair2Status,
dCableDiagResultPair3Status,
dCableDiagResultPair4Status,
dCableDiagResultPair1Length,
dCableDiagResultPair2Length,
dCableDiagResultPair3Length,
dCableDiagResultPair4Length,
dCableDiagResultStatus
}
STATUS current
DESCRIPTION
"This group contains the collection of objects related to
configuration and information of fundamental cable diagnostics feature."
::= { dCableDiagGroups 1 }
END
|