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
|
-- ===========================================================================
--
-- Extreme Dynamic-Link Context System (DLCS) reporting
--
EXTREME-DLCS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, TimeTicks
FROM SNMPv2-SMI
TruthValue FROM SNMPv2-TC
DisplayString FROM RFC1213-MIB
extremeAgent
FROM EXTREME-BASE-MIB;
extremeDlcs MODULE-IDENTITY
LAST-UPDATED "9903040000Z"
ORGANIZATION "Extreme Networks, Inc."
CONTACT-INFO "www.extremenetworks.com"
DESCRIPTION
"Extreme Dynamic-Link Context System (DLCS) status objects"
::= { extremeAgent 8 }
--
-- Enable/disable DLCS
--
extremeDlcsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to true will allow the agent to start
collecting DLCS binding information."
::= { extremeDlcs 1 }
extremeDlcsNetbiosEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to true will allow the agent to start
collecting DLCS binding information using the
NetBios protocol."
::= { extremeDlcs 2 }
extremeDlcsKerberos5Enable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to true will allow the agent to start
collecting DLCS binding information using the
Kerberos V5 protocol."
::= { extremeDlcs 3 }
extremeDlcsRsvpEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to true will allow the agent to start
collecting DLCS binding information using the RSVP
protocol."
::= { extremeDlcs 4 }
extremeDlcsDnsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this to true will allow the agent to start
collecting DLCS binding information using the
DNS protocol."
::= { extremeDlcs 5 }
--
-- DLCS Binding Table
--
--
-- How is this table used?
--
-- (1) Manager creates extremeSmartTrapRulesEntry with
-- extremeSmartTrapRulesIndex = XXXX
-- extremeSmartTrapRulesDesiredOID = extremeDlcsBindingTable
-- extremeSmartTrapRulesOperation = any
--
-- (2) Events are reported by agent creating a extremeSmartTrapInstanceEntry with:
--
-- extremeSmartTrapInstanceRule = XXXX
-- extremeSmartTrapInstanceChangedOid = extremeDlcsBindingIndex
-- extremeSmartTrapInstanceActualOperation = add, delete or modify
--
-- and generating the actual trap.
--
extremeDlcsBindingTable OBJECT-TYPE
SYNTAX SEQUENCE OF ExtremeDlcsBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of DLCS Binding information. Entries are added and deleted
by the agent based on information gathered from the local network
environment. Multiple entries may exist for almost identical sets
of bindings although the agent will ensure that exactly matching
entries are coalesced."
::= { extremeDlcs 6 }
extremeDlcsBindingEntry OBJECT-TYPE
SYNTAX ExtremeDlcsBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in table of DLCS bindings."
INDEX { extremeDlcsBindingIndex }
::= { extremeDlcsBindingTable 1 }
ExtremeDlcsBindingEntry ::= SEQUENCE
{
extremeDlcsBindingIndex INTEGER,
extremeDlcsBindingType BITS,
extremeDlcsBindingSource INTEGER,
extremeDlcsBindingUser DisplayString,
extremeDlcsBindingGroup DisplayString,
extremeDlcsBindingApplication DisplayString,
extremeDlcsBindingHost DisplayString,
extremeDlcsBindingIpAddress IpAddress,
extremeDlcsBindingPhysPort INTEGER,
extremeDlcsBindingUpdateTime TimeTicks
}
extremeDlcsBindingIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index into this table, chosen by the agent. This has
no significance to the manager beyond its uniqueness
within this agent."
::= { extremeDlcsBindingEntry 1 }
extremeDlcsBindingType OBJECT-TYPE
SYNTAX BITS { user2ip(0), user2port(1), ip2port(2),
application2user(3), application2ip(4),
host2ip(5), group2ip(6), group2port(7),
user2group(8) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of binding expressed here. A given bit is set if DLCS
has detected that the two relevant items are bound together.
e.g. an entry with application2user(3) set to 1 implies that
the username extremeDlcsBindingUser has been seen to be using
the application extremeDlcsBindingApplication. In addition, if
this entry also has user2port(1) set to 1 then this user and
application have been detected as running on the physical
switch port extremeDlcsBindingPhysPort."
::= { extremeDlcsBindingEntry 2 }
extremeDlcsBindingSource OBJECT-TYPE
SYNTAX INTEGER { other (1), local(2), netbiosquery(3),
netbiosbind (4), dns(5), kerberos5(6), rsvp(7) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source of the information binding."
::= { extremeDlcsBindingEntry 3 }
extremeDlcsBindingUser OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The User name detected by DLCS. A string of length zero
indicates no valid User name has been detected for this
binding."
::= { extremeDlcsBindingEntry 4 }
extremeDlcsBindingGroup OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Group name detected by DLCS. A string of length zero
indicates no valid Group name has been detected for this
binding."
::= { extremeDlcsBindingEntry 5 }
extremeDlcsBindingApplication OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Application name detected by DLCS. A string of length
zero indicates no valid Application name has been detected
for this binding."
::= { extremeDlcsBindingEntry 6 }
extremeDlcsBindingHost OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Host name detected by DLCS. A string of length
zero indicates no valid Host name has been detected
for this binding."
::= { extremeDlcsBindingEntry 7 }
extremeDlcsBindingIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address detected by DLCS. A value of 0.0.0.0
indicates no valid IP address has been detected
for this binding."
::= { extremeDlcsBindingEntry 8 }
extremeDlcsBindingPhysPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical port number (ifIndex) detected by DLCS.
This is valid in all bindings."
::= { extremeDlcsBindingEntry 9 }
extremeDlcsBindingUpdateTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this entry was last updated."
::= { extremeDlcsBindingEntry 10 }
END
|