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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
|
APRISAXE-TC-4RF DEFINITIONS ::= BEGIN
--
-- File: $Id: 4RF-APRISAXE-TC.txt,v 1.111 2007/08/01 04:52:02 ma Exp $
--
-- Copyright: 2004 4RF COMMUNICATIONS LTD
--
-- Description:
-- Textual Conventions for AprisaXE project.
--
-- Versions:
--
-- Release 3
-- Added support for 4-wire cards and configurable cross-connections
--
-- Notes:
-- None
--
IMPORTS
-- Standard imports
MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, NOTIFICATION-TYPE,
Integer32, Unsigned32, Counter32, IpAddress
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
-- 4RF Specific imports
fourRFModules
FROM MIB-4RF;
-- Module Identification
fourRFAprisaXETCModule MODULE-IDENTITY
LAST-UPDATED "200704300000Z"
ORGANIZATION "www.4rf.com"
CONTACT-INFO
"postal: 4RF Communications Ltd
26 Glover Street
Ngauranga
PO Box 13-506
Wellington 6032
New Zealand
phone: +64 4 499 6000
email: support@4rf.com"
DESCRIPTION "Textual Conventions for the AprisaXE project"
-- Revision history
-- (in reverse chronological order)
REVISION "200704300000Z"
DESCRIPTION "Second draft"
REVISION "200412030152Z"
DESCRIPTION "First draft"
::= { fourRFModules 6 }
AprisaXESlotNumber ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents a slot number in the AprisaXE, the slots include
the modem, transmitter and receiver as well as the MUX cards.
H/W Slot Card Slot Name
0 Aux/Modem Aux
1 MUX Card H
2 MUX Card G
3 MUX Card F
4 MUX Card E
5 MUX Card D
6 MUX Card C
7 MUX Card B
8 MUX Card A
9 Transmitter Transmitter
10 Receiver Receiver
Slots may or may not be populated."
SYNTAX INTEGER { rxSlot (0),
txSlot (1),
-- MUX card slots
slotA (2),
slotB (3),
slotC (4),
slotD (5),
slotE (6),
slotF (7),
slotG (8),
slotH (9),
-- Modem
auxSlot (10),
noSlot (255)
}
AprisaXEHardwareVersion ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents a single byte hardware version number."
SYNTAX INTEGER ( 0..255 )
AprisaXECardType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to identify the type of MUX card in a slot.
The values for the enumerations match the hardware type
values returned from the MUX card FPGAs and EEPROMs."
SYNTAX INTEGER { none (0), -- No card present
motherboard ('E0'h),
transmitterCard ('E3'h),
receiverCard ('E4'h),
quadJETCard ('E5'h),
quadFourWireCard ('E7'h),
dualFXOCard ('E8'h),
dualFXSCard ('E9'h),
modemCard ('EA'h),
quadV24Card ('EB'h),
hssCard ('EC'h),
pscCard ('ED'h),
picCard ('EE'h),
dualJETCard ('D5'h),
singleJETCard ('C5'h)
}
AprisaXEAlarmSource ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to identify the source of an alarm."
SYNTAX INTEGER { none (0),
-- Card level alarms
modem (1),
transmitter (2),
receiver (3),
quadJET (4),
quadFourWire (5),
dualFxo (6),
dualFxs (7),
quadV24 (8),
highSpeedSync (9),
psc (10),
pic (11),
dualJET (12),
singleJET (13),
-- External alarms
external1 (50),
external2 (51),
-- Remote alarms
remote (60),
-- User specified
user1 (70),
user2 (71),
-- System level alarms, e.g. card mismatch, s/w upgrade
system (100),
swUpgrade (101)
}
AprisaXEPortNumber ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to identify a port e.g. reporting an alarm.
Not all alarms are associated with a port, in these cases
noPort will be used."
SYNTAX INTEGER { noPort (0),
-- We have up to four ports per MUX card
portOne (1),
portTwo (2),
portThree (3),
portFour (4)
}
AprisaXEAlarmOutput ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to map alarm to external outputs."
SYNTAX INTEGER { none (0),
-- Map to external outputs
externalOutput1 (1),
externalOutput2 (2),
externalOutput3 (3),
externalOutput4 (4)
}
AprisaXEAlarmMapping ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to map alarm to external outputs."
SYNTAX INTEGER { none (0),
localMajor (1),
localMinor (2),
remoteMajor (3),
remoteMinor (4),
remoteInput1 (5),
remoteInput2 (6)
}
AprisaXEAlarmPolarity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to indicate the polarity indicating an alarm
present on the external outputs."
SYNTAX INTEGER { polarityLow (0),
polarityHigh (1)
}
AprisaXEAdcVoltage ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-3"
STATUS current
DESCRIPTION "A voltage read from an ADC, in millivolts."
SYNTAX Integer32
AprisaXEDbValue ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-1"
STATUS current
DESCRIPTION "A value displayed in dB's."
SYNTAX Integer32
AprisaXEIQData ::= TEXTUAL-CONVENTION
DISPLAY-HINT "2x:"
STATUS current
DESCRIPTION "A sequence of IQ data pairs, each individual value is 16 bit
thus a single IQ pair is 32 bits."
SYNTAX OCTET STRING ( SIZE (0..200) )
AprisaXEAlarmType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The type of an alarm."
SYNTAX INTEGER { none (0),
-- Transmitter Alarms
txADCChZeroHi (1), -- ADC zero high threshold has been passed
txADCChZeroLo (2), -- ADC zero low threshold has been passed
txADCChOneHi (3), -- ADC one high threshold has been passed
txADCChOneLo (4), -- ADC one low threshold has been passed
txADCChTwoHi (5), -- ADC two high threshold has been passed
txADCChTwoLo (6), -- ADC two low threshold has been passed
txADCChThreeHi (7), -- ADC three high threshold has been passed
txADCChThreeLo (8), -- ADC three low threshold has been passed
txADCChFourHi (9), -- ADC four high threshold has been passed
txADCChFourLo (10), -- ADC four low threshold has been passed
txADCChFiveHi (11), -- ADC five high threshold has been passed
txADCChFiveLo (12), -- ADC five low threshold has been passed
txADCChSixHi (13), -- ADC six high threshold has been passed
txADCChSixLo (14), -- ADC six low threshold has been passed
txADCChSevenHi (15), -- ADC seven high threshold has been passed
txADCChSevenLo (16), -- ADC seven low threshold has been passed
txADCChEightHi (17), -- ADC eight high threshold has been passed
txADCChEightLo (18), -- ADC eight low threshold has been passed
txADCChNineHi (19), -- ADC nine high threshold has been passed
txADCCNineLo (20), -- ADC nine low threshold has been passed
txADCChTenHi (21), -- ADC ten high threshold has been passed
txADCChTenLo (22), -- ADC ten low threshold has been passed
txADCChElevenHi (23), -- ADC eleven high threshold has been passed
txADCChElevenLo (24), -- ADC eleven low threshold has been passed
txSynthLD (25), -- Synth is not locked
tx5VFail (26), -- 5V supply has failed
tx11VFail (27), -- 11V supply is off/has failed
tx28VFail (28), -- 28V supply has failed
txEEFail (29), -- EEPROM contents are corrupt
txTSensorFail (30), -- Temperature sensor has failed
txReturnLoss (31), -- Return loss is too high
txAmplifierBalance (32), -- One side of amplifier has failed
txMibFail (33), -- MIB is are corrupt in EEPROM
-- Receiver Alarms
rxADCChZeroHi (50), -- ADC zero high threshold has been passed
rxADCChZeroLo (51), -- ADC zero low threshold has been passed
rxADCChOneHi (52), -- ADC one high threshold has been passed
rxADCChOneLo (53), -- ADC one low threshold has been passed
rxADCChTwoHi (54), -- ADC two high threshold has been passed
rxADCChTwoLo (55), -- ADC two low threshold has been passed
rxADCChThreeHi (56), -- ADC three high threshold has been passed
rxADCChThreeLo (57), -- ADC three low threshold has been passed
rxADCChFourHi (58), -- ADC four high threshold has been passed
rxADCChFourLo (59), -- ADC four low threshold has been passed
rxADCChFiveHi (60), -- ADC five high threshold has been passed
rxADCChFiveLo (61), -- ADC five low threshold has been passed
rxADCChSixHi (62), -- ADC six high threshold has been passed
rxADCChSixLo (63), -- ADC six low threshold has been passed
rxADCChSevenHi (64), -- ADC seven high threshold has been passed
rxADCChSevenLo (65), -- ADC seven low threshold has been passed
rxADCChEightHi (66), -- ADC eight high threshold has been passed
rxADCChEightLo (67), -- ADC eight low threshold has been passed
rxADCChNineHi (68), -- ADC nine high threshold has been passed
rxADCCNineLo (69), -- ADC nine low threshold has been passed
rxADCChTenHi (70), -- ADC ten high threshold has been passed
rxADCChTenLo (71), -- ADC ten low threshold has been passed
rxRSSIHi (72),
rxRSSILo (73),
rx12VFail (74),
rxSynthLD (75),
rxEEFail (76),
rxOff (77),
rxMibFail (78), -- MIB is are corrupt in EEPROM
--Modem Alarms
mdLOS (100),
mdLink (101),
mdStatus (102),
mdDemodAlignmentLost (103),
mdTdmAlignmentLost (104),
mdRefAFail (105),
mdRefBFail (106),
mdClkSyncFail (107),
mdNetClkConfig (108),
mdUCEPresent (109),
mdInitFail (110),
mdEEFail (120),
--General Mux alarms
muxId (150),
muxInit (151),
muxStat (152),
muxClk (153),
muxMibEEFail (154),
muxCharEEFail (155),
--E1/T1 Mux Alarms
e1LOF (200), -- Loss of frame
e1AIS (201),
e1RAI (202),
e1RMAI (203),
e1TS16AIS (204),
e1TS16LOS (205),
e1LOS (206),
e1CRC4 (207),
t1LOF (220), -- Loss of frame
t1AIS (221),
t1RAI (222),
t1LOS (226),
t1CRC6 (227),
--motherboard alarms
mbHwHsc (250), -- Unsupported hardware version was detected
mbFan1Fail (251), -- Fan 1 has failed
mbFan2Fail (252), -- Fan 2 has failed
mbInvalidConfig (253),
mbCardMismatch (254), -- Expected and actual installed MUX card mismatch
mbEEFail (255), -- General EEPROM configuration problem
--cross connect alarms
ccDataFail (300), -- Cross-connection data is invalid
ccNoBandwidth (301), -- Insufficient bandwidth for specified cross-connects
--mhsb alarms
mhsbSwitchToStandby (325),
-- External alarms
externalAlarm1 (350), -- External Input alarm 1 is present
externalAlarm2 (351), -- External Input alarm 2 is present
externalOutputAlarm1 (352), -- An alarm is active on External Output 1
externalOutputAlarm2 (353), -- An alarm is active on External Output 2
externalOutputAlarm3 (354), -- An alarm is active on External Output 3
externalOutputAlarm4 (355), -- An alarm is active on External Output 4
-- Remote Alarms
remoteMajorAlarm (400), -- A major alarm is present on the remote terminal
remoteMinorAlarm (401), -- A minor alarm is present on the remote terminal
--FXO alarms
fxoCodecOvld (402),
fxoBillToneOvld (403),
fxoUnplug (404),
fxoCurrentOvld (405),
--FXS ALARMS
fxsCalibError (406),
fxsDCDCError (407),
fxsCASLock (408),
-- HSS Alarms
hssTdmLock (500),
hss32MhzReset (501),
hssTdmReset (502),
hssLoss (503),
hssRxFifoFull (504),
hssRxFifoEmpty (505),
hssTxFifoFull (506),
hssTxFifoEmpty (507),
hssRxClockInvalid (508),
hssTxClockInvalid (509),
-- V24 Alarms
v24CtrlLineLoss (525),
--Generic Alarms
altImageTableUsed (550),
defaultImageTableUsed (551),
uploadFail (552),
-- PSC Alarms
pscDemuxAlignmentLost (575),
pscTDMAlignmentLost (576),
pscMuxAlignmentError (577),
pscCompanionTxFail (578),
pscSoftwareOverride (579),
pscInvalidSwitchValue (580),
-- HSD Alarms
hsdParamMismatch (600),
hsdCompanionLost (601),
hsdPMTxFreq (602),
hsdPMRxFreq (603),
hsdPMTermModState (604),
hsdPMTermRfChWidth (605),
hsdPMTxPower (606),
hsdPMModemIntlvEna (607),
-- Used to check alarm ranges
lastAlarm (608)
}
AprisaXEChannelControlType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to set the control the channels, enabling and
disabling E1/T1 ports."
SYNTAX INTEGER { off (0),
on (1)
}
AprisaXETdmPortType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to set the port out to the TDM bus."
SYNTAX INTEGER { tdmAo (0),
tdmBo (1),
tdmCo (2),
tdmDo (3),
tdmAi (4),
tdmBi (5),
tdmCi (6),
tdmDi (7)
}
AprisaXETdmBus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to set the TDM bus to use."
SYNTAX INTEGER { tdmBusA (0),
tdmBusB (1),
tdmBusC (2),
tdmBusD (3)
}
AprisaXEQuadJetTrafficType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to set the traffic rate for the Quad JET card."
SYNTAX INTEGER { e1Traffic (0),
t1Traffic (1),
j1Traffic (2)
}
AprisaXEQuadJetLineEncoding ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to set the line encoding for the Quad JET card the
default is HDB3 for E1 and B8ZS for T1."
SYNTAX INTEGER { defaultLineEncoding (0),
hDB3LineEncoding (2),
b8ZSLineEncoding (4),
amiLineEncoding (1)
}
AprisaXEQuadJetWaveFormShapers ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to set the T1 Tx Waveform Shaper for a port;
The default value is 0~133 ft."
SYNTAX INTEGER { wfs0To133Ft (2),
wfs133To266Ft (3),
wfs266To399Ft (4),
wfs399To533Ft (5),
wfs533To655Ft (6)
}
AprisaXEQuadJetMultiframeEnable ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This is used to enable/disable support for transport of T1 SF
and ESF multiframe sync for a port."
SYNTAX INTEGER { t1MFOff (0),
t1MFOn (1)
}
AprisaXEDataStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This indicates the state of receiver, transmitter or MUX card
MIB orcharacterisation data."
SYNTAX INTEGER { invalid (0),
valid (1)
}
AprisaXEAdpcmCompression ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This defines the Compression available on ADPCM."
SYNTAX INTEGER { kbits16 (0),
kbits24 (1),
kbits32 (2),
kbits64 (3),
kbits0 (4)
}
AprisaXESignalState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This indicates the state of CAS signalling."
SYNTAX INTEGER { normal (0),
invert (1)
}
AprisaXEPcmLaw ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Type of PCM encoding available."
SYNTAX INTEGER { alaw (0),
ulaw (1)
}
AprisaXE4WRxGain ::= TEXTUAL-CONVENTION
STATUS obsolete
DESCRIPTION "The gain in half dB steps for 4wire mux cards."
SYNTAX INTEGER { dbpos40 (0),
dbpos35 (1),
dbpos30 (2),
dbpos25 (3),
dbpos20 (4),
dbpos15 (5),
dbpos10 (6),
dbpos05 (7),
dbpos0 (8),
dbneg05 (9),
dbneg10 (10),
dbneg15 (11),
dbneg20 (12),
dbneg25 (13),
dbneg30 (14),
dbneg35 (15),
dbneg40 (16),
dbneg45 (17),
dbneg50 (18),
dbneg55 (19),
dbneg60 (20),
dbneg65 (21),
dbneg70 (22),
dbneg75 (23),
dbneg80 (24),
dbneg85 (25),
dbneg90 (26),
dbneg95 (27),
dbneg100 (28),
dbneg105 (29),
dbneg110 (30),
dbneg115 (31),
dbneg120 (32),
dbneg125 (33),
dbneg130 (34),
dbneg135 (35),
dbneg140 (36)
}
AprisaXE4WTxGain ::= TEXTUAL-CONVENTION
STATUS obsolete
DESCRIPTION "The gain in half dB steps for 4wire mux cards."
SYNTAX INTEGER { pos140 (0),
pos135 (1),
pos130 (2),
pos125 (3),
pos120 (4),
pos115 (5),
pos110 (6),
pos105 (7),
pos100 (8),
pos95 (9),
pos90 (10),
pos85 (11),
pos80 (12),
pos75 (13),
pos70 (14),
pos65 (15),
pos60 (16),
pos55 (17),
pos50 (18),
pos45 (19),
pos40 (20),
pos35 (21),
pos30 (22),
pos25 (23),
pos20 (24),
pos15 (25),
pos10 (26),
pos05 (27),
pos0 (28),
neg05 (29),
neg10 (30),
neg15 (31),
neg20 (32),
neg25 (33),
neg30 (34),
neg35 (35),
neg40 (36)
}
AprisaXE4WInputLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The input (A->D) level in half dB steps for the 4wire mux cards."
SYNTAX INTEGER { q4emadpos40 (36),
q4emadpos35 (35),
q4emadpos30 (34),
q4emadpos25 (33),
q4emadpos20 (32),
q4emadpos15 (31),
q4emadpos10 (30),
q4emadpos05 (29),
q4emadpos0 (28),
q4emadneg05 (27),
q4emadneg10 (26),
q4emadneg15 (25),
q4emadneg20 (24),
q4emadneg25 (23),
q4emadneg30 (22),
q4emadneg35 (21),
q4emadneg40 (20),
q4emadneg45 (19),
q4emadneg50 (18),
q4emadneg55 (17),
q4emadneg60 (16),
q4emadneg65 (15),
q4emadneg70 (14),
q4emadneg75 (13),
q4emadneg80 (12),
q4emadneg85 (11),
q4emadneg90 (10),
q4emadneg95 (9),
q4emadneg100 (8),
q4emadneg105 (7),
q4emadneg110 (6),
q4emadneg115 (5),
q4emadneg120 (4),
q4emadneg125 (3),
q4emadneg130 (2),
q4emadneg135 (1),
q4emadneg140 (0)
}
AprisaXE4WOutputLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The output (D->A) level in half dB steps for the 4wire mux cards."
SYNTAX INTEGER { q4emdapos40 (0),
q4emdapos35 (1),
q4emdapos30 (2),
q4emdapos25 (3),
q4emdapos20 (4),
q4emdapos15 (5),
q4emdapos10 (6),
q4emdapos05 (7),
q4emdapos0 (8),
q4emdaneg05 (9),
q4emdaneg10 (10),
q4emdaneg15 (11),
q4emdaneg20 (12),
q4emdaneg25 (13),
q4emdaneg30 (14),
q4emdaneg35 (15),
q4emdaneg40 (16),
q4emdaneg45 (17),
q4emdaneg50 (18),
q4emdaneg55 (19),
q4emdaneg60 (20),
q4emdaneg65 (21),
q4emdaneg70 (22),
q4emdaneg75 (23),
q4emdaneg80 (24),
q4emdaneg85 (25),
q4emdaneg90 (26),
q4emdaneg95 (27),
q4emdaneg100 (28),
q4emdaneg105 (29),
q4emdaneg110 (30),
q4emdaneg115 (31),
q4emdaneg120 (32),
q4emdaneg125 (33),
q4emdaneg130 (34),
q4emdaneg135 (35),
q4emdaneg140 (36)
}
AprisaXEFXSInputLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The output (A->D) level in half dB steps for the DFXS mux cards."
SYNTAX INTEGER {
-- dfxsadpos30 (25),
-- dfxsadpos25 (24),
dfxsadpos20 (23),
dfxsadpos15 (22),
dfxsadpos10 (21),
dfxsadpos05 (20),
dfxsadpos0 (19),
dfxsadneg05 (18),
dfxsadneg10 (17),
dfxsadneg15 (16),
dfxsadneg20 (15),
dfxsadneg25 (14),
dfxsadneg30 (13),
dfxsadneg35 (12),
dfxsadneg40 (11),
dfxsadneg45 (10),
dfxsadneg50 (9),
dfxsadneg55 (8),
dfxsadneg60 (7),
dfxsadneg65 (6),
dfxsadneg70 (5),
dfxsadneg75 (4),
dfxsadneg80 (3),
dfxsadneg85 (2),
dfxsadneg90 (1)
}
AprisaXEFXSOutputLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The output (D->A) level in half dB steps for the DFXS mux cards."
SYNTAX INTEGER { dfxsdapos25 (1),
dfxsdapos20 (2),
dfxsdapos15 (3),
dfxsdapos10 (4),
dfxsdapos05 (5),
dfxsdapos0 (6),
dfxsdaneg05 (7),
dfxsdaneg10 (8),
dfxsdaneg15 (9),
dfxsdaneg20 (10),
dfxsdaneg25 (11),
dfxsdaneg30 (12),
dfxsdaneg35 (13),
dfxsdaneg40 (14),
dfxsdaneg45 (15),
dfxsdaneg50 (16),
dfxsdaneg55 (17),
dfxsdaneg60 (18),
dfxsdaneg65 (19),
dfxsdaneg70 (20),
dfxsdaneg75 (21),
dfxsdaneg80 (22),
dfxsdaneg85 (23),
dfxsdaneg90 (24),
dfxsdaneg95 (25)
}
AprisaXEFXOInputLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The output (A->D) level in half dB steps for the DFXO mux cards."
SYNTAX INTEGER { dfxoadpos10 (22),
dfxoadpos05 (21),
dfxoadpos0 (20),
dfxoadneg05 (19),
dfxoadneg10 (18),
dfxoadneg15 (17),
dfxoadneg20 (16),
dfxoadneg25 (15),
dfxoadneg30 (14),
dfxoadneg35 (13),
dfxoadneg40 (12),
dfxoadneg45 (11),
dfxoadneg50 (10),
dfxoadneg55 (9),
dfxoadneg60 (8),
dfxoadneg65 (7),
dfxoadneg70 (6),
dfxoadneg75 (5),
dfxoadneg80 (4),
dfxoadneg85 (3),
dfxoadneg90 (2),
dfxoadneg95 (1),
dfxoadneg100 (0)
}
AprisaXEFXOOutputLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The output (D->A) level in half dB steps for the DFXO mux cards."
SYNTAX INTEGER { dfxodapos10 (18),
dfxodapos05 (19),
dfxodapos0 (20),
dfxodaneg05 (21),
dfxodaneg10 (22),
dfxodaneg15 (23),
dfxodaneg20 (24),
dfxodaneg25 (25),
dfxodaneg30 (26),
dfxodaneg35 (27),
dfxodaneg40 (28),
dfxodaneg45 (29),
dfxodaneg50 (30),
dfxodaneg55 (31),
dfxodaneg60 (32),
dfxodaneg65 (33),
dfxodaneg70 (34),
dfxodaneg75 (35),
dfxodaneg80 (36),
dfxodaneg85 (37),
dfxodaneg90 (38),
dfxodaneg95 (39),
dfxodaneg100 (40)
}
AprisaXEFXOCountry ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The country code for FXO mux cards this will need to be completed later."
SYNTAX INTEGER { argentina (0),
australia (1),
austria (2),
bahrain (3),
belgium (4),
brazil (5),
bulgaria (6),
canada (7),
chile (8),
china (9),
columbia (10),
croatia (11),
cyprus (12),
czechrep (13),
denmark (14),
ecuador (15),
egypt (16),
elslavador (17),
finland (18),
france (19),
germany (20),
greece (21),
guam (22),
hongkong (23),
hungary (24),
iceland (25),
india (26),
indonesia (27),
ireland (28),
israel (29),
italy (30),
japan (31),
jordan (32),
kazakhstan (33),
kuwait (34),
latvia (35),
lebanon (36),
luxembourg (37),
macao (38),
malaysia (39),
malta (40),
mexico (41),
morocco (42),
netherlands (43),
newzealand (44),
nigeria (45),
norway (46),
oman (47),
pakistan (48),
peru (49),
philippines (50),
poland (51),
portugal (52),
romania (53),
russia (54),
saudiarabia (55),
singapore (56),
slovakia (57),
slovenia (58),
southafrica (59),
southkorea (60),
spain (61),
sweden (62),
switzerland (63),
syria (64),
taiwan (65),
tbr21 (66),
thailand (67),
uae (68),
uk (69),
usa (70),
yemen (71)
}
AprisaXEFXSPMLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Type of SPM level."
SYNTAX INTEGER { l0 (0),
l1 (1),
l2 (2),
l3 (3),
l4 (4),
l5 (5),
l6 (6),
l7 (7),
l8 (8),
l9 (9),
l10 (10),
l11 (11),
l12 (12),
l13 (13),
l14 (14),
l15 (15),
l16 (16),
l17 (17),
l18 (18),
l19 (19),
l20 (20),
l21 (21),
l22 (22),
l23 (23),
l24 (24),
l25 (25),
l26 (26),
l27 (27)
}
AprisaXEFXSPathMute ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The status of the Path Mute function for the DFXS."
SYNTAX INTEGER { noMute (0),
muteRx (16),
muteTx (32)
}
AprisaXETableCommand ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "A command sent to add or delete table entries."
SYNTAX INTEGER { noCommand (0),
addCommand (1),
deleteCommand (2)
}
AprisaXEQuadJetConnectionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates whether a connection is for data or CAS signalling."
SYNTAX INTEGER { dataConnection (0),
casConnection (1),
tsLoopbackConnection (2)
}
AprisaXEInterfaceCnxnType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This describes the interface connection type. The
values are arbitrary and are primarily used to
identify instances of aggregate connections."
SYNTAX INTEGER { none(0), -- Unused connection
unframedE1Intf (1),
unframedT1Intf (2),
aggregateIntf (3),
fourWireIntf (4),
fxoIntf (5),
fxsIntf (6),
v24AsyncIntf (7),
custEthernetIntf (8),
mgmtEthernetIntf (9),
syncSerialIntf (10),
-- aggregateCasIntf (11),
hssControlIntf (12),
dropAndInsertIntf (13)
}
AprisaXEConnectionID ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents a unique cross-connection identifier."
SYNTAX INTEGER ( 0..65535 )
AprisaXEPcmMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The current PCM mode."
SYNTAX INTEGER { pcm31c (0),
pcm30c (1),
pcm31 (2),
pcm30 (3),
unframed (4),
off (5), -- The port is off
t1sf (6),
t1esf (7),
t1sf4 (8),
t1esf16 (10)
}
AprisaXESerialEquipmentMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Mode describing the behaviour of the serial interface."
SYNTAX INTEGER { noCable (0),
dceMode (1),
dteMode (2)
}
AprisaXEHssSerialMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Mode describing the type of serial interface, e.g. V.35."
SYNTAX INTEGER { v11Mode (0),
rs530AMode (1),
rs530Mode (2),
x21Mode (3),
v35Mode (4),
rs449v36Mode (5),
rs232v28Mode (6),
noSerialCable (7)
}
AprisaXE2WireSignalState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This indicates the state of the CAS signalling bits
as normal, inverted and disabled."
SYNTAX INTEGER { fxTransNormal (0),
fxTransInvert (1),
fxForcedNormal (2),
fxForcedInvert (3)
}
AprisaXEEthernetPortNumber ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Ethernet port numbers."
SYNTAX INTEGER { eth1 (1),
eth2 (2),
eth3 (3),
eth4 (4)
}
AprisaXEEthernetGroup ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Used for Ethernet groupings."
SYNTAX INTEGER { user1 (1),
user2 (2),
user3 (3),
user4 (4),
userAndMgmt (5)
}
AprisaXEEthernetFrameRate ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The frame rate limits allowed by the Marvell switch."
SYNTAX INTEGER { unlimited (0),
limit128kbps (1),
limit256kbps (2),
limit512kbps (3),
limit1Mbps (4),
limit2Mbps (5),
limit4Mbps (6),
limit8Mbps (7)
}
AprisaXEEthernetPortPriority ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates the bandwidth allocated to a port."
SYNTAX INTEGER { fromFrame (0),
low (1),
medium (3),
high (5),
vHigh (7)
}
AprisaXEEthernetGrouping ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates whether Ethernet Grouping is enabled or disabled."
SYNTAX INTEGER { ethGroupDisabled (0),
ethGroupEnabled (1)
}
AprisaXEEthernetPrioQueueScheduling ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates the QOS priority scheduling scheme."
SYNTAX INTEGER { weighted (0),
strict (1)
}
AprisaXEEthernetPrioQueueMapping ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates the QOS priority mapping scheme."
SYNTAX INTEGER { standard (0),
cisco (1)
}
AprisaXEDefaultAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates whether, or not, MIB values should be defaulted."
SYNTAX INTEGER { dontSetToDefaults (0),
setToDefaults (1)
}
AprisaXEQuadJetLoopbacks ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This indicates the E1 loopback setting on a port;
OFF, Line or Radio Facing."
SYNTAX INTEGER { e1LoopbacksOff (0),
e1LineLoopbackOn (1),
e1RadioLoopbackOn (2)
}
AprisaXECCActivationStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates the current state of cross connect
activation for the port."
SYNTAX INTEGER { ccActivated (0),
ccActivationFailed (1),
ccBusyActivating (2)
}
AprisaXESysSoftwareStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates consistency of inventory file and system software."
SYNTAX INTEGER { sysInventoryConsistent (0),
sysInventoryInconsistent (1)
}
AprisaXEPSCActiveRadio ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This indicates the active radio for the PSC card."
SYNTAX INTEGER { autoSelect (1),
manualA (0),
manualB (2)
}
AprisaXEPSCActiveTx ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This indicates the active transmitter card."
SYNTAX INTEGER { TxA (0),
TxB (1)
}
END
|