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
353
354
355
356
357
358
359
360
361
362
363
364
|
QOS DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
VlanIdT, QosTagT, EnableStatusT
FROM ExaltComm
radioConfig
FROM ExaltComProducts;
QosPriorityT ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This MIB variable sets Qos priority, the higher number
the higher priority"
SYNTAX INTEGER {
priority0(0),
priority1(1),
priority2(2),
priority3(3)
}
QosModeT ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This MIB variable sets Qos Mode"
SYNTAX INTEGER {
disable(0),
qos-mode-802-1p(4),
qos-mode-diffserv(5),
qos-mode-port(6)
}
QosScheduleModeT ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This MIB variable defines available QoS Scheduler modes"
SYNTAX INTEGER {
weighted-round-robin(0),
hybrid1-mode-3sp-2wrr-1wrr-0wrr(1),
hybrid2-mode-3sp-2sp-1wrr-0wrr(2),
strict-priority(3)
}
QosCos3WeightT ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This MIB variable defines available weights for Queue 3"
SYNTAX INTEGER {
w-8(8),
w-16(16),
w-32(32)
}
QosCos2WeightT ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This MIB variable defines available weights for Queue 2"
SYNTAX INTEGER {
w-4(4),
w-8(8),
w-16(16)
}
QosCos1WeightT ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This MIB variable defines available weights for Queue 1"
SYNTAX INTEGER {
w-2(2),
w-4(4),
w-8(8)
}
QosCos0WeightT ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This MIB variable defines available weights for Queue 0"
SYNTAX INTEGER {
w-1(1),
w-2(2),
w-4(4)
}
-- define advSystemConfig here to allow modular inclusion of feature
-- same definition could exist in other features such as Aggregation that belong
-- to advSystemConfig
advSystemConfig OBJECT-IDENTITY
STATUS current
DESCRIPTION "This is the device specific advanced configuration section."
::= { radioConfig 5 }
extAirG2QoS OBJECT-IDENTITY
STATUS current
DESCRIPTION "QOS configuration."
::= { advSystemConfig 8 }
qosDefaultQueue OBJECT-TYPE
SYNTAX QosPriorityT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The default queue to catch all traffic that don't belong to any queue."
::= { extAirG2QoS 1 }
qosEth1Mode OBJECT-TYPE
SYNTAX QosModeT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This setting set the qos mode or disable QoS on ETH1."
::= { extAirG2QoS 2 }
qosEth2Mode OBJECT-TYPE
SYNTAX QosModeT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This setting set the qos mode or disable QoS on ETH2."
::= { extAirG2QoS 3 }
qosDiffServList OBJECT-TYPE
SYNTAX SEQUENCE OF QosDiffServEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a table of Qos DiffServ value and proiority."
::= { extAirG2QoS 4 }
qosScheduler OBJECT-IDENTITY
STATUS current
DESCRIPTION "QOS Scheduler configuration."
::= { extAirG2QoS 7 }
qosDiffServEntry OBJECT-TYPE
SYNTAX QosDiffServEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is DiffServ table entry."
INDEX {
diffServValue, diffServPriority, diffServEnable
}
::= { qosDiffServList 1 }
QosDiffServEntry ::= SEQUENCE {
diffServValue INTEGER,
diffServPriority QosPriorityT,
diffServEnable EnableStatusT
}
diffServValue OBJECT-TYPE
SYNTAX Integer32 (0..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the value for the corresponding DiffServ table entry."
::= { qosDiffServEntry 1 }
diffServPriority OBJECT-TYPE
SYNTAX QosPriorityT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the priority for the corresponding DiffServ table entry."
::= { qosDiffServEntry 2 }
diffServEnable OBJECT-TYPE
SYNTAX EnableStatusT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the status for the corresponding DiffServ table entry."
::= { qosDiffServEntry 3 }
qosPortETH1Conf OBJECT IDENTIFIER ::= { extAirG2QoS 5 }
qosEth1m802dot1pList OBJECT-TYPE
SYNTAX SEQUENCE OF QosEth1m802dot1pEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a table of Qos 802.1p tag and proiority."
::= { qosPortETH1Conf 1 }
qosEth1m802dot1pEntry OBJECT-TYPE
SYNTAX QosEth1m802dot1pEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a 802.1p table entry."
INDEX {
tagEth1Priority, tagEth1Status
}
::= { qosEth1m802dot1pList 1 }
QosEth1m802dot1pEntry ::= SEQUENCE {
tagEth1Priority
QosPriorityT,
tagEth1Status
EnableStatusT
}
tagEth1Priority OBJECT-TYPE
SYNTAX QosPriorityT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the priority for the corresponding ETH1 802.1p tag entry."
::= { qosEth1m802dot1pEntry 1 }
tagEth1Status OBJECT-TYPE
SYNTAX EnableStatusT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the status for the corresponding ETH1 802.1p tag entry."
::= { qosEth1m802dot1pEntry 2 }
qosEth1PortList OBJECT-TYPE
SYNTAX SEQUENCE OF QosEth1PortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a table of Qos Port mode."
::= { qosPortETH1Conf 2 }
qosEth1PortEntry OBJECT-TYPE
SYNTAX QosEth1PortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a Port mode table entry."
INDEX {
portEth1Priority, portEth1Status
}
::= { qosEth1PortList 1 }
QosEth1PortEntry ::= SEQUENCE {
portEth1Priority
QosPriorityT,
portEth1Status
EnableStatusT
}
portEth1Priority OBJECT-TYPE
SYNTAX QosPriorityT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the priority for the corresponding ETH1 Port mode entry."
::= { qosEth1PortEntry 1 }
portEth1Status OBJECT-TYPE
SYNTAX EnableStatusT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the status for the corresponding ETH1 Port mode entry."
::= { qosEth1PortEntry 2 }
qosPortETH2Conf OBJECT IDENTIFIER ::= { extAirG2QoS 6 }
qosEth2m802dot1pList OBJECT-TYPE
SYNTAX SEQUENCE OF QosEth2m802dot1pEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a table of Qos 802.1p tag and proiority."
::= { qosPortETH2Conf 1 }
qosEth2m802dot1pEntry OBJECT-TYPE
SYNTAX QosEth2m802dot1pEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a 802.1p table entry."
INDEX {
tagEth2Priority, tagEth2Status
}
::= { qosEth2m802dot1pList 1 }
QosEth2m802dot1pEntry ::= SEQUENCE {
tagEth2Priority
QosPriorityT,
tagEth2Status
EnableStatusT
}
tagEth2Priority OBJECT-TYPE
SYNTAX QosPriorityT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the priority for the corresponding ETH2 802.1p tag entry."
::= { qosEth2m802dot1pEntry 1 }
tagEth2Status OBJECT-TYPE
SYNTAX EnableStatusT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the status for the corresponding ETH2 802.1p tag entry."
::= { qosEth2m802dot1pEntry 2 }
qosEth2PortList OBJECT-TYPE
SYNTAX SEQUENCE OF QosEth2PortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a table of Qos Port mode."
::= { qosPortETH2Conf 2 }
qosEth2PortEntry OBJECT-TYPE
SYNTAX QosEth2PortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a ETH2 Port mode table entry."
INDEX {
portEth2Priority, portEth2Status
}
::= { qosEth2PortList 1 }
QosEth2PortEntry ::= SEQUENCE {
portEth2Priority
QosPriorityT,
portEth2Status
EnableStatusT
}
portEth2Priority OBJECT-TYPE
SYNTAX QosPriorityT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the priority for the corresponding ETH2 Port mode entry."
::= { qosEth2PortEntry 1 }
portEth2Status OBJECT-TYPE
SYNTAX EnableStatusT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the status for the corresponding ETH2 Port mode entry."
::= { qosEth2PortEntry 2 }
qosScheduleMode OBJECT-TYPE
SYNTAX QosScheduleModeT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The QoS queues scheduler mode"
::= { qosScheduler 1 }
qosCos3Weight OBJECT-TYPE
SYNTAX QosCos3WeightT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "QoS queue 3 weight."
::= { qosScheduler 2 }
qosCos2Weight OBJECT-TYPE
SYNTAX QosCos2WeightT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "QoS queue 2 weight."
::= { qosScheduler 3 }
qosCos1Weight OBJECT-TYPE
SYNTAX QosCos1WeightT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "QoS queue 1 weight."
::= { qosScheduler 4 }
qosCos0Weight OBJECT-TYPE
SYNTAX QosCos0WeightT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "QoS queue 0 weight."
::= { qosScheduler 5 }
commitQosSettings OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This command allows saving or clear configuration.
Options are: save, clear, correspondingly saving changes to
configuration to the persistent storage or clearing unsaved changes."
::= { extAirG2QoS 1000 }
END
|