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
|
NETGEAR-QOS-AUTOVOIP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress,
Integer32, Unsigned32 FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus FROM SNMPv2-TC
InterfaceIndexOrZero,InterfaceIndex FROM IF-MIB
fastPathQOS FROM NETGEAR-QOS-MIB;
fastPathQOSAUTOVOIP MODULE-IDENTITY
LAST-UPDATED "201101260000Z" -- 26 Jan 2011 12:00:00 GMT
ORGANIZATION "Netgear Inc"
CONTACT-INFO ""
DESCRIPTION
"The MIB definitions for Quality of Service - VoIP Flex package."
-- Revision history.
REVISION
"201202180000Z" -- 21 Feb 2012 12:00:00 GMT
DESCRIPTION
"Added OUI based auto VoIP support."
REVISION
"201101260000Z" -- 26 Jan 2011 12:00:00 GMT
DESCRIPTION
"Postal address updated."
REVISION
"200711230000Z" -- 23 Nov 2007 12:00:00 GMT
DESCRIPTION
"Netgear branding related changes."
REVISION
"200711230000Z" -- 3 Nov 2004 12:00:00 GMT
DESCRIPTION
"Initial revision."
::= { fastPathQOS 4 }
--*********************************************************************
-- agentAutoVoIPCfgGroup
--
-- Note: System-wide configuration is supported for this
-- group by using an index value of 0.
--*********************************************************************
agentAutoVoIPCfgGroup OBJECT IDENTIFIER ::= { fastPathQOSAUTOVOIP 1 }
agentAutoVoIPVLAN OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VLAN to which all VoIP traffic is mapped to."
::= { agentAutoVoIPCfgGroup 1 }
agentAutoVoIPOUIPriority OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority to which all VoIP traffic with known OUI is mapped to."
::= { agentAutoVoIPCfgGroup 2 }
agentAutoVoIPProtocolPriScheme OBJECT-TYPE
SYNTAX INTEGER {
trafficClass(1),
remark(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priotization scheme which is used to priritize the voice data.
"
::= { agentAutoVoIPCfgGroup 3}
agentAutoVoIPProtocolTcOrRemarkValue OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If 'agentAutoVoIPProtocolPriScheme' is traffic class,
then the object 'agentAutoVoIPProtocolTcOrRemarkValue' is
CoS Queue value to which all VoIP traffic is mapped to.
if 'agentAutoVoIPProtocolPriScheme' is remark,
then the object 'agentAutoVoIPProtocolTcOrRemarkValue' is
802.1p priority to which all VoIP traffic is remarked at the ingress port.
This is used by Protocol based Auto VoIP"
::= { agentAutoVoIPCfgGroup 4}
-- Auto VoIP Profile Configuration table (global and per-port)
agentAutoVoIPTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentAutoVoIPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table providing configuration of Auto VoIP Profile."
::= { agentAutoVoIPCfgGroup 5 }
--************** Auto VoIP Interface Table **************
agentAutoVoIPEntry OBJECT-TYPE
SYNTAX AgentAutoVoIPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Auto VoIP Profile configuration for a port."
INDEX { agentAutoVoIPIntfIndex }
::= { agentAutoVoIPTable 1 }
AgentAutoVoIPEntry::=
SEQUENCE {
agentAutoVoIPIntfIndex
InterfaceIndex,
agentAutoVoIPProtocolMode
INTEGER,
agentAutoVoIPOUIMode
INTEGER,
agentAutoVoIPProtocolPortStatus
INTEGER,
agentAutoVoIPOUIPortStatus
INTEGER
}
agentAutoVoIPIntfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a unique index for an entry in the
agentAutoVoIPTable. A non-zero value indicates
the ifIndex for the corresponding interface entry
in the ifTable. A value of zero represents global
configuration, which in turn causes all interface
entries to be updated for a set operation, or
reflects the most recent global setting for a get
operation."
::= { agentAutoVoIPEntry 1 }
agentAutoVoIPProtocolMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables / disables AutoVoIP Protocol profile on an interface."
DEFVAL { 2 }
::= { agentAutoVoIPEntry 2 }
agentAutoVoIPOUIMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables / disables AutoVoIP OUI profile on an interface."
DEFVAL { 2 }
::= { agentAutoVoIPEntry 3 }
agentAutoVoIPProtocolPortStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AutoVoIP protocol profile operational status of an interface."
::= { agentAutoVoIPEntry 4 }
agentAutoVoIPOUIPortStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AutoVoIP OUI profile operational status of an interface."
::= { agentAutoVoIPEntry 5 }
--************** Auto VoIP OUI Table **************
agentAutoVoIPOUITable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentAutoVoIPOUIEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table providing configuration of Auto VoIP Profile."
::= { agentAutoVoIPCfgGroup 6 }
agentAutoVoIPOUIEntry OBJECT-TYPE
SYNTAX AgentAutoVoIPOUIEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Auto VoIP Profile OUI configuration."
INDEX { agentAutoVoIPOUIIndex }
::= { agentAutoVoIPOUITable 1 }
AgentAutoVoIPOUIEntry::=
SEQUENCE {
agentAutoVoIPOUIIndex
Integer32,
agentAutoVoIPOUI
OCTET STRING,
agentAutoVoIPOUIDesc
OCTET STRING,
agentAutoVoIPOUIRowStatus
RowStatus
}
agentAutoVoIPOUIIndex OBJECT-TYPE
SYNTAX Integer32 (1..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Auto VoIP OUI table index."
::= { agentAutoVoIPOUIEntry 1 }
agentAutoVoIPOUI OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Organizationally Unique Identifier (OUI), as defined
in IEEE std 802-2001, is a 24 bit (three octets) globally
unique assigned number referenced by various standards,
of the information received from the remote system."
::= { agentAutoVoIPOUIEntry 2 }
agentAutoVoIPOUIDesc OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Description of the Organizationally Unique Identifier (OUI),
as defined in IEEE std 802-2001(up to 32 characters)"
::= { agentAutoVoIPOUIEntry 3 }
agentAutoVoIPOUIRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable is used according to installation and removal conventions for conceptual rows."
::= { agentAutoVoIPOUIEntry 4 }
--************** Auto VoIP Sessions Table **************
agentAutoVoIPSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentAutoVoIPSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table providing configuration of Auto VoIP Profile."
::= { agentAutoVoIPCfgGroup 7 }
agentAutoVoIPSessionEntry OBJECT-TYPE
SYNTAX AgentAutoVoIPSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Auto VoIP Session Table."
INDEX { agentAutoVoIPSessionIndex }
::= { agentAutoVoIPSessionTable 1 }
AgentAutoVoIPSessionEntry::=
SEQUENCE {
agentAutoVoIPSessionIndex
INTEGER,
agentAutoVoIPSourceIP
IpAddress,
agentAutoVoIPDestinationIP
IpAddress,
agentAutoVoIPSourceL4Port
INTEGER,
agentAutoVoIPDestinationL4Port
INTEGER,
agentAutoVoIPProtocol
INTEGER
}
agentAutoVoIPSessionIndex OBJECT-TYPE
SYNTAX INTEGER (0..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Auto VoIP session index."
::= { agentAutoVoIPSessionEntry 1 }
agentAutoVoIPSourceIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source IP address of the VoIP session."
::= { agentAutoVoIPSessionEntry 2 }
agentAutoVoIPDestinationIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination IP address of the VoIP session."
::= { agentAutoVoIPSessionEntry 3 }
agentAutoVoIPSourceL4Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source L4 Port of the VoIP session."
::= { agentAutoVoIPSessionEntry 4 }
agentAutoVoIPDestinationL4Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination L4 Port of the VoIP session."
::= { agentAutoVoIPSessionEntry 5 }
agentAutoVoIPProtocol OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Protocol of the VoIP session."
::= { agentAutoVoIPSessionEntry 6 }
END
|