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
|
-- *****************************************************************
-- TN-UDLD-MIB.mib : TN UDLD private MIB
--
-- Copyright (c) 2015 by Transition Networks, Inc.
-- All rights reserved.
--
-- *****************************************************************
TN-UDLD-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC
tnProducts
FROM TRANSITION-SMI
Unsigned32 FROM SNMPv2-SMI
TNDisplayString FROM TN-TC
TNInterfaceIndex FROM TN-TC
;
tnUdldMib MODULE-IDENTITY
LAST-UPDATED "201507080000Z"
ORGANIZATION "Transition Networks, Inc."
CONTACT-INFO
"Transition Networks
Technical Support
10900 Red Circle Drive
Minnetonka, MN 55343 USA
Tel: +1-800-526-9267
E-mail: techsupport@transition.com"
DESCRIPTION
"This is a private MIB for udld"
REVISION "201507080000Z"
DESCRIPTION
"Initial version"
::= { tnProducts 124 }
TNUdldDetectionState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This enumeration defines the link detection state."
SYNTAX INTEGER { inDeterminant(0), uniDirectional(1), biDirectional(2), neighborMismatch(3), loopback(4), multipleNeighbor(5) }
TNUdldMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This enumeration defines the available udld mode."
SYNTAX INTEGER { disable(0), normal(1), aggressive(2) }
tnUdldConfigInterfaceParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNUdldConfigInterfaceParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a table of udld interface conf parameters"
::= { tnUdldMib 1 }
tnUdldConfigInterfaceParamEntry OBJECT-TYPE
SYNTAX TNUdldConfigInterfaceParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each physical interface has a set of configurable parameters"
INDEX { tnUdldConfigInterfaceParamIfIndex }
::= { tnUdldConfigInterfaceParamTable 1 }
TNUdldConfigInterfaceParamEntry ::= SEQUENCE {
tnUdldConfigInterfaceParamIfIndex TNInterfaceIndex,
tnUdldConfigInterfaceParamUdldMode TNUdldMode,
tnUdldConfigInterfaceParamProbeMsgInterval Unsigned32
}
tnUdldConfigInterfaceParamIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Logical interface number."
::= { tnUdldConfigInterfaceParamEntry 1 }
tnUdldConfigInterfaceParamUdldMode OBJECT-TYPE
SYNTAX TNUdldMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port udld mode disable/normal/aggresive.
disable(0), normal(1), aggressive(2)"
::= { tnUdldConfigInterfaceParamEntry 2 }
tnUdldConfigInterfaceParamProbeMsgInterval OBJECT-TYPE
SYNTAX Unsigned32 (7..90)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port probe message interval(seconds). Valid range: 7 to 90 seconds."
::= { tnUdldConfigInterfaceParamEntry 3 }
tnUdldStatusInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNUdldStatusInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a table of udld interface local device information"
::= { tnUdldMib 2 }
tnUdldStatusInterfaceEntry OBJECT-TYPE
SYNTAX TNUdldStatusInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each udld enabled interface has a local device information"
INDEX { tnUdldStatusInterfaceIfIndex }
::= { tnUdldStatusInterfaceTable 1 }
TNUdldStatusInterfaceEntry ::= SEQUENCE {
tnUdldStatusInterfaceIfIndex TNInterfaceIndex,
tnUdldStatusInterfaceDeviceID TNDisplayString,
tnUdldStatusInterfaceDeviceName TNDisplayString,
tnUdldStatusInterfaceLinkState TNUdldDetectionState
}
tnUdldStatusInterfaceIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Logical interface number."
::= { tnUdldStatusInterfaceEntry 1 }
tnUdldStatusInterfaceDeviceID OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..254))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Local device id."
::= { tnUdldStatusInterfaceEntry 2 }
tnUdldStatusInterfaceDeviceName OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..254))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Local device name."
::= { tnUdldStatusInterfaceEntry 3 }
tnUdldStatusInterfaceLinkState OBJECT-TYPE
SYNTAX TNUdldDetectionState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Local device link detected state."
::= { tnUdldStatusInterfaceEntry 4 }
tnUdldStatusInterfaceNeighborTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNUdldStatusInterfaceNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a table of udld interface neighbor cache information"
::= { tnUdldMib 3 }
tnUdldStatusInterfaceNeighborEntry OBJECT-TYPE
SYNTAX TNUdldStatusInterfaceNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each udld enabled interface has a neighbor cache information"
INDEX { tnUdldStatusInterfaceNeighborIfIndex }
::= { tnUdldStatusInterfaceNeighborTable 1 }
TNUdldStatusInterfaceNeighborEntry ::= SEQUENCE {
tnUdldStatusInterfaceNeighborIfIndex TNInterfaceIndex,
tnUdldStatusInterfaceNeighborNeighborDeviceID TNDisplayString,
tnUdldStatusInterfaceNeighborNeighborPortID TNDisplayString,
tnUdldStatusInterfaceNeighborNeighborDeviceName TNDisplayString,
tnUdldStatusInterfaceNeighborLinkDetectionState TNUdldDetectionState
}
tnUdldStatusInterfaceNeighborIfIndex OBJECT-TYPE
SYNTAX TNInterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Logical interface number."
::= { tnUdldStatusInterfaceNeighborEntry 1 }
tnUdldStatusInterfaceNeighborNeighborDeviceID OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..254))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Neighbor device id."
::= { tnUdldStatusInterfaceNeighborEntry 2 }
tnUdldStatusInterfaceNeighborNeighborPortID OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..254))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Neighbor port id."
::= { tnUdldStatusInterfaceNeighborEntry 3 }
tnUdldStatusInterfaceNeighborNeighborDeviceName OBJECT-TYPE
SYNTAX TNDisplayString (SIZE(0..254))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Neighbor device name."
::= { tnUdldStatusInterfaceNeighborEntry 4 }
tnUdldStatusInterfaceNeighborLinkDetectionState OBJECT-TYPE
SYNTAX TNUdldDetectionState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Neighbor device link detected state."
::= { tnUdldStatusInterfaceNeighborEntry 5 }
END
|