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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
|
-- ****************************************************************************
-- aviatModem.mib: Aviat Networks Modem Configuration MIB
--
-- Copyright © 2014-2015,2017 Aviat U.S, Inc. All rights reserved.
-- Certain information and content may be provided by third parties to AVIAT,
-- and in each case, such copyrighted work remains the property of that third
-- party creator/licensor.
-- All rights not expressly granted herein are reserved. Except as otherwise
-- required by applicable law, any reproduction, distribution, modification,
-- retransmission, or publication of any copyrighted material is strictly
-- prohibited without the express written consent of the copyright owner.
-- "AVIAT", "AVIAT NETWORKS" and the AVIAT logo are trademarks of Aviat
-- Networks, Inc. All other trademarks or brand names may be trademarks or
-- registered trademarks of AVIAT's affiliated companies in the United States
-- and/or other countries.
--
-- ****************************************************************************
AVIAT-MODEM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Gauge32, Integer32, Counter32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue
FROM SNMPv2-TC
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
entPhysicalIndex
FROM ENTITY-MIB
AviatModulationType
FROM AVIAT-TEXTCONVENTION-MIB
aviatModules
FROM STXN-GLOBALREGISTER-MIB;
aviatModemModule MODULE-IDENTITY
LAST-UPDATED "201703280119Z"
ORGANIZATION "Aviat Networks"
CONTACT-INFO "Aviat Networks
Customer Service
Postal: 5200 Great America Parkway
Santa Clara
California 95054
United States of America
Tel: 408 567 7000
E-mail: mibsupport@aviatnet.com"
DESCRIPTION
"This MIB module defines the Modem configuration objects for
Aviat Networks radios."
REVISION "201809201130Z"
DESCRIPTION
"Added aviatModemStatusOper"
REVISION "201703280119Z"
DESCRIPTION
"Added aviatModemModulationStatsTable, aviatModemCurCapacityTx/Rx
and aviatModemCurModulationTx/Rx.
Fixed descriptions of module and previous revision."
REVISION "201504281530Z"
DESCRIPTION
"Add MLHC support"
REVISION "201409191505Z"
DESCRIPTION
"L1LA-Lite support added."
REVISION "201402032220Z"
DESCRIPTION
"Added aviatModemStatusMaxCapacity to show the maximum possible
capacity of the radio link."
REVISION "201401210157Z"
DESCRIPTION
"Initial Version."
::= { aviatModules 3 }
-- ****************************************************************************
-- Conformance area, containing groups and compliance specifications
-- ****************************************************************************
aviatModemConformance OBJECT IDENTIFIER ::= { aviatModemModule 1 }
aviatModemGroups OBJECT IDENTIFIER ::= { aviatModemConformance 1 }
aviatModemCompliance OBJECT IDENTIFIER ::= { aviatModemConformance 2 }
-- ****************************************************************************
-- Sub-tree for Modem MIB objects
-- ****************************************************************************
aviatModemMIBObjects OBJECT IDENTIFIER ::= { aviatModemModule 2 }
-- ****************************************************************************
-- Textual Conventions
-- ****************************************************************************
AviatModemCapacityType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Represents the capacity of a modem in one direction.
This value is reported in kilobits per second, rounded to the
nearest multiple of 1 kbps. Therefore, if the value of this object
is equal to `n' then the capacity is somewhere in the range of
`n*1000 - 500` to `n*1000 + 499` bits per second.
If the capacity is greater than 4,294,967,295,499 bits per second
then the value of this object shall be 4,294,967,295."
SYNTAX Gauge32
-- ****************************************************************************
-- Modem Table
-- ****************************************************************************
aviatModemTable OBJECT-TYPE
SYNTAX SEQUENCE OF AviatModemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing the modem configuration objects for
a particular entity of the system."
::= { aviatModemMIBObjects 1 }
aviatModemEntry OBJECT-TYPE
SYNTAX AviatModemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a row in the modem table."
INDEX { entPhysicalIndex }
::= { aviatModemTable 1 }
AviatModemEntry ::=
SEQUENCE {
aviatModemBandwidth
Gauge32,
aviatModemModulationType
INTEGER,
aviatModemModulationBase
AviatModulationType,
aviatModemModulationMax
AviatModulationType,
aviatModemLicensedModulationMask
AviatModulationType,
aviatModemRegulatoryStandard
INTEGER,
aviatModemProfileVersion
Integer32,
aviatModemCapacity
Integer32,
aviatModemL1laLiteEnabled
INTEGER,
aviatModemMLHCEnabled
INTEGER,
aviatModemCurCapacityTx
AviatModemCapacityType,
aviatModemCurCapacityRx
AviatModemCapacityType,
aviatModemCurModulationTx
AviatModulationType,
aviatModemCurModulationRx
AviatModulationType
}
aviatModemBandwidth OBJECT-TYPE
SYNTAX Gauge32
UNITS "kHz"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The modem channel bandwidth currently in use, in
kilohertz."
::= { aviatModemEntry 1 }
aviatModemModulationType OBJECT-TYPE
SYNTAX INTEGER {
fixed (0),
acm256 (1),
acm1024 (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This allocates an ACM license for this radio link
allowing modulation up to and including this
modulation."
DEFVAL { 0 }
::= { aviatModemEntry 2 }
aviatModemModulationBase OBJECT-TYPE
SYNTAX AviatModulationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This specifies the base modulation to use for modem.
Together with aviatModemModulationMax this is used to
define the range of modulations that can be active for
ACM. The modem will configure the ACM operation to
include the minimum and maximum modulations and an
appropriate set of intermediate modulations between
the minimum and maximum.
Some combinations of min and max modulations may not
be supported in which case an INCONSISTENT_VALUE error
will be reported."
::= { aviatModemEntry 3 }
aviatModemModulationMax OBJECT-TYPE
SYNTAX AviatModulationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This specifies the maximum modulation to use for ACM.
See the aviatModemModulationBase description for
details.
Setting Max without setting Acm mode to the
appropriate ACM mode will cause this command to fail
(i.e. 1024qam requires acm1024)."
::= { aviatModemEntry 4 }
aviatModemLicensedModulationMask OBJECT-TYPE
SYNTAX AviatModulationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When configured for adaptive modulation, this
specifies the licensed RF mask. Tx power output will
be controlled to maintain compliance with the
operator's licensed RF mask according to the active
modulation."
::= { aviatModemEntry 5 }
aviatModemRegulatoryStandard OBJECT-TYPE
SYNTAX INTEGER {
none (1),
ansi (2),
etsi (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This specifies the regulatory standard to use."
::= { aviatModemEntry 6 }
aviatModemProfileVersion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This sets the profile version to use. If a new profile
comes out with the same characteristics to a previous
one but not over air compatible, the new one will have
a different version."
DEFVAL { 1 }
::= { aviatModemEntry 7 }
aviatModemCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This specifies the capacity to license for this
interface. Set to 0 to unlicense."
DEFVAL { 0 }
::= { aviatModemEntry 8 }
aviatModemL1laLiteEnabled OBJECT-TYPE
SYNTAX INTEGER {
disabled (0),
enabled (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enabled L1laLite for this interface and it's partner"
DEFVAL { 0 }
::= { aviatModemEntry 9 }
aviatModemMLHCEnabled OBJECT-TYPE
SYNTAX INTEGER {
disabled (0), -- Disable header compression
enabled(1) -- Enable MLHC
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable multilayer header compression for this radio interface."
DEFVAL { 0 }
::= { aviatModemEntry 10 }
aviatModemCurCapacityTx OBJECT-TYPE
SYNTAX AviatModemCapacityType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current capacity in the transmit direction."
::= { aviatModemEntry 11 }
aviatModemCurCapacityRx OBJECT-TYPE
SYNTAX AviatModemCapacityType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current capacity in the receive direction."
::= { aviatModemEntry 12 }
aviatModemCurModulationTx OBJECT-TYPE
SYNTAX AviatModulationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current modulation used to transmit."
::= { aviatModemEntry 13 }
aviatModemCurModulationRx OBJECT-TYPE
SYNTAX AviatModulationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current modulation used to receive."
::= { aviatModemEntry 14 }
-- ****************************************************************************
-- Modem Modulation Table
-- ****************************************************************************
aviatModemModulationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AviatModemModulationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a table containing the list of modem
modulations configured for use with adaptive
modulation. This list is based on the settings of
aviatModemModulationBase and aviatModemModulationMax,
and a set of automatically selected intermediate
modulations.
If configured for static modulation, this list will
contain only one entry, the configured static
modulation."
::= { aviatModemMIBObjects 2 }
aviatModemModulationEntry OBJECT-TYPE
SYNTAX AviatModemModulationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A single modulation entry for an entity."
INDEX { entPhysicalIndex, aviatModemModulationIndex }
::= { aviatModemModulationTable 1 }
AviatModemModulationEntry ::=
SEQUENCE {
aviatModemModulationIndex
Gauge32,
aviatModemModulation
AviatModulationType
}
aviatModemModulationIndex OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An index representing a particular modulation entry
for an entity."
::= { aviatModemModulationEntry 1 }
aviatModemModulation OBJECT-TYPE
SYNTAX AviatModulationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A configured modem modulation of the system."
::= { aviatModemModulationEntry 2 }
-- ****************************************************************************
-- Modem Xpic Table
-- ****************************************************************************
aviatModemXpicTable OBJECT-TYPE
SYNTAX SEQUENCE OF AviatModemXpicEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing configuration objects for the cross
polarisation interference cancellation (XPIC)
functionality for a particular entity of the system."
::= { aviatModemMIBObjects 3 }
aviatModemXpicEntry OBJECT-TYPE
SYNTAX AviatModemXpicEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a row in the modem XPIC table."
INDEX { entPhysicalIndex }
::= { aviatModemXpicTable 1 }
AviatModemXpicEntry ::=
SEQUENCE {
aviatModemXpicEnable
TruthValue
}
aviatModemXpicEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This specifies whether the cross polarisation
interference cancellation (XPIC) function is enabled."
DEFVAL { false }
::= { aviatModemXpicEntry 1 }
-- ****************************************************************************
-- Modem Status Table
-- ****************************************************************************
aviatModemStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF AviatModemStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing read only information about the
modem."
::= { aviatModemMIBObjects 4 }
aviatModemStatusEntry OBJECT-TYPE
SYNTAX AviatModemStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a row in the modem status table."
INDEX { entPhysicalIndex }
::= { aviatModemStatusTable 1 }
AviatModemStatusEntry ::=
SEQUENCE {
aviatModemStatusMaxCapacity
Integer32,
aviatModemStatusOper
INTEGER
}
aviatModemStatusMaxCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the maximum radio link capacity."
DEFVAL { 0 }
::= { aviatModemStatusEntry 1 }
aviatModemStatusOper OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3), -- in some test mode
unknown(4), -- status can not be determined
-- for some reason.
dormant(5),
notPresent(6), -- some component is missing
lowerLayerDown(7) -- down due to state of
-- lower-layer interface(s)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Operational status of radio link.
Based off ifOperStatus"
::= { aviatModemStatusEntry 2 }
-- ****************************************************************************
-- Modulation Time Table
-- ****************************************************************************
aviatModemModulationStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AviatModemModulationStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is a table containing information about the
amount of time the radio spends at each modulation
level. Counters are cumulative. No means to reset
counters is provided within this MIB module.
If the radio has never used a particular modulation
since statistics were reset, then a row for that
modulation may or may not be present in this table."
::= { aviatModemMIBObjects 5 }
aviatModemModulationStatsEntry OBJECT-TYPE
SYNTAX AviatModemModulationStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is an entry in the table containing modulation
time counters for a particular entity at a particular
modulation level."
INDEX { entPhysicalIndex, aviatModemModStatsModulation }
::= { aviatModemModulationStatsTable 1 }
AviatModemModulationStatsEntry ::=
SEQUENCE {
aviatModemModStatsModulation
AviatModulationType,
aviatModemModStatsTxSecs
Counter32,
aviatModemModStatsTxPct
Gauge32,
aviatModemModStatsRxSecs
Counter32,
aviatModemModStatsRxPct
Gauge32
}
aviatModemModStatsModulation OBJECT-TYPE
SYNTAX AviatModulationType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is the modulation type to which the data in this
is row refers."
::= { aviatModemModulationStatsEntry 1 }
aviatModemModStatsTxSecs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the number of seconds in which the radio was
using the specified modulation to transmit."
::= { aviatModemModulationStatsEntry 2 }
aviatModemModStatsTxPct OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the fraction of the total time in which the
radio was receiving, where the radio was receiving in
the specified modulation, multiplied by 1000000
(10^7) and rounded in an unspecified manner."
::= { aviatModemModulationStatsEntry 4 }
aviatModemModStatsRxSecs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the number of seconds in which the radio was
using the specified modulation to receive."
::= { aviatModemModulationStatsEntry 5 }
aviatModemModStatsRxPct OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the fraction of the total time in which the
radio was transmitting, where the radio was
transmitting at the specified modulation, multiplied
by 1000000 (10^7) and rounded in an unspecified
manner."
::= { aviatModemModulationStatsEntry 6 }
-- ****************************************************************************
-- The Object and Event Groups
-- ****************************************************************************
aviatModemObjectGroup OBJECT-GROUP
OBJECTS {
aviatModemBandwidth,
aviatModemModulationType,
aviatModemModulationBase,
aviatModemModulationMax,
aviatModemLicensedModulationMask,
aviatModemRegulatoryStandard,
aviatModemProfileVersion,
aviatModemCapacity,
aviatModemL1laLiteEnabled,
aviatModemModulation,
aviatModemStatusMaxCapacity,
aviatModemMLHCEnabled
}
STATUS current
DESCRIPTION "These are objects in the Aviat Modem management MIB."
::= { aviatModemGroups 1 }
aviatModemXpicGroup OBJECT-GROUP
OBJECTS {
aviatModemXpicEnable
}
STATUS current
DESCRIPTION "These are objects for configuring the cross polar
interference cancellation (XPIC) functionality."
::= { aviatModemGroups 2 }
aviatModemModulationStatsGroup OBJECT-GROUP
OBJECTS {
aviatModemModStatsTxSecs,
aviatModemModStatsTxPct,
aviatModemModStatsRxSecs,
aviatModemModStatsRxPct
}
STATUS current
DESCRIPTION "These are the objects in the modulation stats table
introduced for WTM4000. They are not supported on
all modems."
::= { aviatModemGroups 3 }
aviatModemModulationCurrentGroup OBJECT-GROUP
OBJECTS {
aviatModemCurCapacityTx,
aviatModemCurCapacityRx,
aviatModemCurModulationTx,
aviatModemCurModulationRx
}
STATUS current
DESCRIPTION "These are the new 'current modulation' objects
introduced for WTM4000. They are not supported on
all modems."
::= { aviatModemGroups 4 }
aviatModemStatusGroup OBJECT-GROUP
OBJECTS {
aviatModemStatusOper
}
STATUS current
DESCRIPTION "These are the new 'status' objects
introduced for WTM4000. They are not supported on
all modems."
::= { aviatModemGroups 5 }
-- ****************************************************************************
-- The Compliance Specifications
-- ****************************************************************************
aviatModemComplV1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The implementation requirements for this MIB."
MODULE -- This module
MANDATORY-GROUPS {
aviatModemObjectGroup
}
GROUP aviatModemXpicGroup
DESCRIPTION "This group is mandatory for all modems that
support cross polar interference cancellation
(XPIC)."
GROUP aviatModemModulationStatsGroup
DESCRIPTION "This group is not supported on all modems."
GROUP aviatModemModulationCurrentGroup
DESCRIPTION "This group is not supported on all modems."
GROUP aviatModemStatusGroup
DESCRIPTION "This group is not supported on all modems."
::= { aviatModemCompliance 1 }
END
|