summaryrefslogtreecommitdiff
path: root/MIBS/hytera/HYTERA-REPEATER-MIB
blob: b85887b8ab89eb96a3912203147a9bb46fbf2d07 (plain)
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
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
-- MIB NAME     : HYTERA-REPEATER-MIB
-- LAST-UPDATED : 201402151323Z
-- REVISION     : 201402151323Z
-- ORGANIZATION : hytera
-- CONTACT-INFO :
-- DESCRIPTION  : 1. The MIB is for hytera repeater management based on SNMPv1.
--                2. The read community and write community are all set as public.
--                3. After setting an object, you should restart the repeater to make
--                   sure it works by setting the rptRestart object to 1.

HYTERA-REPEATER-MIB DEFINITIONS ::= BEGIN

IMPORTS
	private, enterprises, IpAddress, Counter, Gauge, TimeTicks
	    FROM RFC1155-SMI
	OBJECT-TYPE
	    FROM RFC-1212;

hyteraRepeaterMIB OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297
	::= { enterprises 40297 }

product OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1
	::= { hyteraRepeaterMIB 1 }

repeater OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2
	::= { product 2 }


-- groups in repeater

rptRealTimeInfo OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.1
	::= { repeater 1 }
	
rptControl OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.2
	::= { repeater 2 }
	
rptLog OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2.3
	::= { repeater 3 }
	
rptSystemInfo OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.4
	::= { repeater 4 }
	
rptConfiguration OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.5
	::= { repeater 5 }
	

-- the rptRealTimeInfo group

-- The rptRealTimeInfo group is consist of two sub groups, rptAlarmInfo group
-- and rptDataInfo group. The rptAlarmInfo group contains all the real time
-- alarm information of the repeater. The rptDataInfo group contains all the
-- real time data of the repeater.

rptAlarmInfo OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.1.1
	::= { rptRealTimeInfo 1 }

rptVoltageAlarm OBJECT-TYPE
	SYNTAX  INTEGER (0..2)			
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The voltage alarm.
		 normal(0), low voltage alarm(1), high voltage alarm(2), abnormal(3).
		 The abnormal condition is used for RD960. For the RD960 do not distinguish
		 low voltage alarm and high voltage alarm, we use abnormal to replace them."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.1
	::= { rptAlarmInfo 1 }

rptTemperatureAlarm OBJECT-TYPE				
	SYNTAX  INTEGER (0..2)
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The temperature alarm.
		 normal(0), low temperature alarm(1), high temperature alarm(2)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.2
	::= { rptAlarmInfo 2 }

rptFanAlarm OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-only
	STATUS  optional
	DESCRIPTION
		"The fan alarm.
		 normal(0), alarm(1).
		 The object is not supported yet."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.3
	::= { rptAlarmInfo 3 }

rptForwardAlarm OBJECT-TYPE
	SYNTAX  INTEGER (-1..1)
	MAX-ACCESS read-only
	STATUS  optional
	DESCRIPTION
		"The forward power alarm.
		 undefined(-1), normal(0), alarm(1).
		 The object is not supported yet."
	DEFVAL { -1 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.4
	::= { rptAlarmInfo 4 }

rptReflectedAlarm OBJECT-TYPE
	SYNTAX  INTEGER (-1..1)
	MAX-ACCESS read-only
	STATUS  optional
	DESCRIPTION
		"The reflected power alarm.
		 undefined(-1), normal(0), alarm(1).
		 The object is not supported yet."
	DEFVAL { -1 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.5
	::= { rptAlarmInfo 5 }

rptVswrAlarm OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The voltage standing wave radio alarm.
		 normal(0), alarm(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.6
	::= { rptAlarmInfo 6 }

rptTxPllAlarm OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The transmitting PLL alarm.
		 normal(0), alarm(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.7
	::= { rptAlarmInfo 7 }

rptRxPllAlarm OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The receiving PLL alarm.
		 normal(0), alarm(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.8
	::= { rptAlarmInfo 8 }

rptBatteryVoltageAlarm OBJECT-TYPE
	SYNTAX  INTEGER (0..2)
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The battery voltage alarm.
		 normal(0), abnormal(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.1.1.9
	::= { rptAlarmInfo 9 }

rptDataInfo OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.1.2
	::= { rptRealTimeInfo 2 }

rptVoltage OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The voltage.
		 It should be changed to float format.
		 If the repeater is rd620 and rd960, the value is invalid."
	-- 1.3.6.1.4.1.40297.1.2.1.2.1
	::= { rptDataInfo 1 }

rptPaTemprature OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The temperature.
		 It should be changed to float format.
		 The value is invalid, if the repeater is rd960."
	-- 1.3.6.1.4.1.40297.1.2.1.2.2
	::= { rptDataInfo 2 }

rptFanSpeed OBJECT-TYPE
	SYNTAX  INTEGER
	MAX-ACCESS read-only
	STATUS  optional
	DESCRIPTION
		"The fan speed.
		 The object is not supported yet."
	-- 1.3.6.1.4.1.40297.1.2.1.2.3
	::= { rptDataInfo 3 }

rptVswr OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The VSWR.
		 It should be changed to float format. "
	-- 1.3.6.1.4.1.40297.1.2.1.2.4
	::= { rptDataInfo 4 }

rptTxFwdPower OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4)) 		
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The forward power.
		 It should be changed to float format.
		 The value is invalid, if the repeater is rd960 or rd620."
	-- 1.3.6.1.4.1.40297.1.2.1.2.5
	::= { rptDataInfo 5 }

rptTxRefPower OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4))			
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The reflected power.
		 It should be changed to float format.
		 The value is invalid, if the repeater is rd960 or rd620."
	-- 1.3.6.1.4.1.40297.1.2.1.2.6
	::= { rptDataInfo 6 }

rptDataInfoBak1 OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4))			
	MAX-ACCESS read-only
	STATUS  optional
	DESCRIPTION
		"The backup object.
		 The object is not supported yet."
	-- 1.3.6.1.4.1.40297.1.2.1.2.7
	::= { rptDataInfo 7 }

rptDataInfoBak2 OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4)) 			
	MAX-ACCESS read-only
	STATUS  optional
	DESCRIPTION
		"The backup object.
		The object is not supported yet."
	-- 1.3.6.1.4.1.40297.1.2.1.2.8
	::= { rptDataInfo 8 }

rptSlot1Rssi OBJECT-TYPE
	SYNTAX  INTEGER 			
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The RSSI value of slot1.
		 unit: dB."
	DEFVAL { -200 }
	-- 1.3.6.1.4.1.40297.1.2.1.2.9
	::= { rptDataInfo 9 }

rptSlot2Rssi OBJECT-TYPE
	SYNTAX  INTEGER 			
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The RSSI value of slot2.
		 unit: dB.
		 The value is valid only in digital model."
	DEFVAL { -200 }
	-- 1.3.6.1.4.1.40297.1.2.1.2.10
	::= { rptDataInfo 10 }

rptSupplyPowerType OBJECT-TYPE
	SYNTAX  INTEGER 			
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The type of power.
		 DC(0), Battery(1)."
	-- 1.3.6.1.4.1.40297.1.2.1.2.11
	::= { rptDataInfo 11 }

rptBatteryConnect OBJECT-TYPE
	SYNTAX  INTEGER 			
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The battery connecting condition.
		 disconnected(0), connected(1)."
	-- 1.3.6.1.4.1.40297.1.2.1.2.12
	::= { rptDataInfo 12 }

rptBatteryVoltage OBJECT-TYPE
	SYNTAX  OCTET STRING(SIZE(4))			
	MAX-ACCESS read-only
	STATUS  optional
	DESCRIPTION
		"The battery voltage.
		 The object is not supported yet."
	-- 1.3.6.1.4.1.40297.1.2.1.2.13
	::= { rptDataInfo 13 }

-- the rptControl group

-- the rptControl group contains some basic control of the repeater, such as
-- repeater reseting, work channel switching and transmit power adjusting.
-- We can get some working information of the repeater also.
-- Some objects in this group is read-only, which may give some refrence for
-- controlling.

rptRestart OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"Restart the repeater.
		 do nothing(0), reset(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.2.1
	::= { rptControl 1 }

rptChannelNumber OBJECT-TYPE
	SYNTAX INTEGER (0..15)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
		"The current channel number in the zone."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.2.2
	::= { rptControl 2 }

rptChannelType OBJECT-TYPE
	SYNTAX INTEGER (0..2)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
		"The current channel type.
		 digital(0), analog(1), mixed(2)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.2.3
	::= { rptControl 3 }

rptControlObjBak1 OBJECT-TYPE
	SYNTAX INTEGER (0..1)
	MAX-ACCESS read-only
	STATUS optional
	DESCRIPTION
		"The backup object.
		 The object is not supported yet."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.2.4
	::= { rptControl 4 }

rptTxPowerLevel OBJECT-TYPE
	SYNTAX INTEGER (0|2)							
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
		"The transmit power level.
		 high(0), low(2)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.2.5
	::= { rptControl 5 }

rptKnockdown OBJECT-TYPE
	SYNTAX INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
		"The status of repeating.
		 repeating(0), knockdown(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.2.6
	::= { rptControl 6 }

rptRadioState OBJECT-TYPE
	SYNTAX INTEGER (0..1)			
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
		"The status of the repeater's normal function.
		 enable(0), disable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.2.7
	::= { rptControl 7 }

rptSnmpTrapIp OBJECT-TYPE
  SYNTAX IpAddress
  MAX-ACCESS read-write
  STATUS mandatory
  DESCRIPTION
    "The SNMP trapping IP address.
     The default value is 230.37.0.0."
  -- 1.3.6.1.4.1.40297.1.2.2.8
  ::= { rptControl 8 }

rptSnmpTrapPort OBJECT-TYPE
  SYNTAX INTEGER (162)
  MAX-ACCESS read-only
  STATUS mandatory
  DESCRIPTION
    "The SNMP trapping port."
  DEFVAL { 162 }
  -- 1.3.6.1.4.1.40297.1.2.2.9
  ::= { rptControl 9 }

rptchannelParaTable  OBJECT-TYPE
	SYNTAX SEQUENCE OF ChannelParaEntry
	MAX-ACCESS  not-accessible
	STATUS      mandatory
	DESCRIPTION
	  "The table of channel's parameters relevant to the repeater's channels."
  -- 1.3.6.1.4.1.40297.1.2.2.10
	::= { rptControl 10 }

channelParaEntry OBJECT-TYPE
	SYNTAX ChannelParaEntry
	MAX-ACCESS not-accessible
	STATUS mandatory
	DESCRIPTION
	  "The channel's parameters for one of the repeater's channels."
	INDEX { channelParaIndex  }
        -- 1.3.6.1.4.1.40297.1.2.2.10.1
	::= { rptchannelParaTable 1 }

ChannelParaEntry ::= SEQUENCE {
	channelParaIndex   INTEGER,
	actChannelAlias  OCTET STRING,
  actChannelType  INTEGER,		
	actTxPower   INTEGER,
	actChannelNo  INTEGER,
	actChannelSubNo  INTEGER
}

channelParaIndex OBJECT-TYPE
	SYNTAX INTEGER
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The index of the table which uniquely identifies the channel's parameters."
  -- 1.3.6.1.4.1.40297.1.2.2.10.1.1
	::= { channelParaEntry 1 }

actChannelAlias OBJECT-TYPE
	SYNTAX OCTET STRING (SIZE(32))
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The channel alias.
	   It is an unicode string"
  -- 1.3.6.1.4.1.40297.1.2.2.10.1.2
	::= { channelParaEntry 2 }

actChannelType  OBJECT-TYPE
	SYNTAX INTEGER
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The channel type.
	   digital(0), analog(1), mixed(2)."
  -- 1.3.6.1.4.1.40297.1.2.2.10.1.3
	::= { channelParaEntry 3 }
	
actTxPower  OBJECT-TYPE
	SYNTAX INTEGER
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The transmit power level.
	   high(0), low(2)."
  -- 1.3.6.1.4.1.40297.1.2.2.10.1.4
	::= { channelParaEntry 4 }
	
actChannelNo  OBJECT-TYPE
	SYNTAX INTEGER
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The channel number in the repeater's zone."
  -- 1.3.6.1.4.1.40297.1.2.2.10.1.5
	::= { channelParaEntry 5 }
	
actChannelSubNo  OBJECT-TYPE
	SYNTAX INTEGER
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The channel number in the group of same type."
  -- 1.3.6.1.4.1.40297.1.2.2.10.1.6
	::= { channelParaEntry 6 }

rptForbid OBJECT-TYPE
	SYNTAX INTEGER (0..1)			
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
		"The status of the repeater's all function.
		 nomal(0), forbid(1).
		 If the repeater is forbided, you can only wake up it by setting
		 the rptRadioStatus object to 0 in local RDAC model."
	-- 1.3.6.1.4.1.40297.1.2.2.11
	::= { rptControl 11 }
	
	
-- the rptLog group

-- The rptLog group contains all records of alarm in the history, include alarm
-- name, alarm status and alarm time. We can clear all records by setting the
-- clearLog object to 1.

logTable OBJECT-TYPE
	SYNTAX SEQUENCE OF LogEntry
	MAX-ACCESS  not-accessible
	STATUS      mandatory
	DESCRIPTION
	  "The table of alarm records."
	-- 1.3.6.1.4.1.40297.1.2.3.1
	::= { rptLog 1 }

logEntry OBJECT-TYPE
	SYNTAX LogEntry
	MAX-ACCESS not-accessible
	STATUS mandatory
	DESCRIPTION
	  "The record's content."
	INDEX { logIndex }
	-- 1.3.6.1.4.1.40297.1.2.3.1.1
	::= { logTable 1 }

LogEntry ::= SEQUENCE {
	logIndex INTEGER,
	alarmName INTEGER,		
	alarmStatus INTEGER,
	logTime INTEGER
}

logIndex OBJECT-TYPE
	SYNTAX INTEGER (1..100)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The index of the table which uniquely identifies the alram record."
	-- 1.3.6.1.4.1.40297.1.2.3.1.1.1
	::= { logEntry 1 }

alarmName OBJECT-TYPE
	SYNTAX INTEGER (0..9|65535)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The alarm name.
	   temperature alarm(0), fan alarm(1), vswr alarm(2), low forward power alarm(3),
     low voltage alarm(4), high voltage alarm(5), tx unlock alarm(6),
     rx unlock alarm(7), battery voltage alarm(8), invalid(65535)."
  DEFVAL { 65535 }
	-- 1.3.6.1.4.1.40297.1.2.3.1.1.2
	::= { logEntry 2 }

alarmStatus  OBJECT-TYPE
	SYNTAX INTEGER (0..1|65535)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION	
	  "The alarm status.
	   alarm recove(0), alarm happen(1), invalid(65535)."
  DEFVAL { 65535 }
	-- 1.3.6.1.4.1.40297.1.2.3.1.1.3
	::= { logEntry 3 }

logTime OBJECT-TYPE
	SYNTAX INTEGER (-1..134217728)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The alarm time.
	   unit: second.
	   The time is the time lapsed since the repeater starting up. If the value
	   is -1, the record is invalid."
  DEFVAL { -1 }
	-- 1.3.6.1.4.1.40297.1.2.3.1.1.4
	::= { logEntry 4 }

clearLog OBJECT-TYPE
	SYNTAX INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS	mandatory
	DESCRIPTION	
	  "Clear the log.
	   do nothing(0), clear log(0)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.3.2
	::= { rptLog 2 }

recordCount OBJECT-TYPE
	SYNTAX INTEGER (0..100)
	MAX-ACCESS read-only
	STATUS	mandatory
	DESCRIPTION	
	  "The number of records."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.3.3
	::= { rptLog 3 }

latestRecordPosition OBJECT-TYPE
	SYNTAX INTEGER (0..100)
	MAX-ACCESS read-only
	STATUS	mandatory
	DESCRIPTION	
	  "The row number of the latest record.
	   If the value is 0, there is no valid record in the table."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.3.4
	::= { rptLog 4 }
	
	
-- the rptSystemInfo group

-- The rptSystemInfo group contains repeater firmware and run-time system information.

rptModelName OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(0..32))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The model name.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.1
	::= { rptSystemInfo 1 }

rptModelNo OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(0..64))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The model number.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.2
	::= { rptSystemInfo 2 }

rptFirmwareVersion OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(0..32))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The firmware version.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.3
	::= { rptSystemInfo 3 }

rptRcdbVersion OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(0..32))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The RCDB version.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.4
	::= { rptSystemInfo 4 }

rptSerialNo OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(0..32))
	MAX-ACCESS  read-only
	STATUS  mandatory
	DESCRIPTION
		"The serial number.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.5
	::= { rptSystemInfo 5 }	

rptRadioAlias OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(0..32))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The repeater alias.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.6
	::= { rptSystemInfo 6 }

rptRadioID OBJECT-TYPE
	SYNTAX  INTEGER
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The ID of the repeater."
	-- 1.3.6.1.4.1.40297.1.2.4.7
	::= { rptSystemInfo 7 }

rptCurChannelType OBJECT-TYPE
	SYNTAX  INTEGER (0..2)		
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The type of the wroking channel.
		 digital(0), analog(1), mixed(2)."
	-- 1.3.6.1.4.1.40297.1.2.4.8
	::= { rptSystemInfo 8 }

rptChannelName OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(32))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The name of the current channel.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.9
	::= { rptSystemInfo 9 }

rptCurTxFreq OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)		
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The current transmitting frequency.
		 unit: Hz."
	-- 1.3.6.1.4.1.40297.1.2.4.10
	::= { rptSystemInfo 10 }

rptCurRxFreq OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)		
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The current receiving frequency.
		 unit: Hz."
	-- 1.3.6.1.4.1.40297.1.2.4.11
	::= { rptSystemInfo 11 }

rptWorkState OBJECT-TYPE
	SYNTAX  INTEGER		
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The work status of the repeater.
		 receive(0), transmit(1)."
	-- 1.3.6.1.4.1.40297.1.2.4.12
	::= { rptSystemInfo 12 }
	
rptCurZoneAlias OBJECT-TYPE
	SYNTAX  OCTET STRING (SIZE(32))
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The alias of the current zone.
		 It is an unicode string."
	-- 1.3.6.1.4.1.40297.1.2.4.13
	::= { rptSystemInfo 13 }
	
	
-- the rptConfiguration group

-- The rptConfiguration group is consist of four sub groups, rptBasicSetting
-- group, rptDigitalChannelSetting group, rptAnalogChannelSetting group,
-- rptMixedChannelSetting group and rptServiceSetting group. The rptBasicSetting
-- group contains some basic cofiguration parameters of the system. The
-- rptDigitalChannelSetting group contains some configuration parameters of the
-- digital channel. The rptAnalogChannelSetting group contains some configuration
-- parameters of the analog channel. The rptMixedChannelSetting group contains
-- some configuration parameters of the mixed channel. The rptServiceSetting group
-- contains some configuration parameters of the service.

rptBasicSetting OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.5.1
	::= { rptConfiguration 1 }

powerOn OBJECT IDENTIFIER
	--1.3.6.1.4.1.40297.1.2.5.1.1
	::= { rptBasicSetting 1 }

designatedPowerOnChn OBJECT-TYPE
        SYNTAX  INTEGER (0..1)			
        MAX-ACCESS read-write
        STATUS  mandatory
        DESCRIPTION
        "Designate the power on channel.
         disable(0), enable(1)."
        DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.1.1
	::= { powerOn 1 }

powerOnChannelNo OBJECT-TYPE
	SYNTAX  INTEGER (0..15|65535)				
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The the power on channel number.
		 invalid(65535)."
  DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.1.2
	::= { powerOn 2 }

microphone OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2.5.1.2
	::= { rptBasicSetting 2 }

internalMicGain OBJECT-TYPE
	SYNTAX  INTEGER (4..36)			
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The gain of the internal microphone.
		 It is double of the real value."
	DEFVAL { 24 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.2.1
	::= { microphone 1 }

externalMicGain OBJECT-TYPE
	SYNTAX  INTEGER (4..36)				
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The gain of the external microphone.
		 It is double of the real value."
	DEFVAL { 24 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.2.2
	::= { microphone 2 }
	
multiCTCCDCTable OBJECT-TYPE
	SYNTAX SEQUENCE OF MultiCTCCDCEntry
	MAX-ACCESS  not-accessible
	STATUS mandatory
	DESCRIPTION
	"The table of subaudio frequency."
	-- 1.3.6.1.4.1.40297.1.2.5.1.3
	::= { rptBasicSetting 3 }

multiCTCCDCEntry OBJECT-TYPE
	SYNTAX MultiCTCCDCEntry
	MAX-ACCESS not-accessible
	STATUS mandatory
	DESCRIPTION
	"The subaudio frequency."
	INDEX { ctcssIndex }
	-- 1.3.6.1.4.1.40297.1.2.5.1.3.1
	::= { multiCTCCDCTable 1 }

MultiCTCCDCEntry ::= SEQUENCE {
	ctcssIndex INTEGER,
	txCtcssFrequency INTEGER,		
	txCtcssType INTEGER,
	rxCtcssFrequency INTEGER,
	rxCtcssType INTEGER
}

ctcssIndex OBJECT-TYPE
	SYNTAX INTEGER (1..16)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	"The index of the table which uniquely identifies the subaudio frequency."
	-- 1.3.6.1.4.1.40297.1.2.5.1.3.1.1
	::= { multiCTCCDCEntry 1 }

txCtcssFrequency OBJECT-TYPE
	SYNTAX INTEGER (0|19..492|670..2541)		
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
		"The transmitting subaudio frequency.
		 The value is limitted to the range. The range is changed with the type:
                 0        (txCtcssType: none)
                 19~492   (txCtcssType: CDCSS or CDCSS invert)
                 670~2541 (txCtcssType: CTCSS)
     The value is 10 times of the real value when the type is CTCSS.
     The value in first row is unable to be set.
     It's not able to be set, unless the rxCtcssType in the same row is not none.
     It will be set to the matched minimum available value automatically, when the
     txCtcssType in the same row is changed."
	-- 1.3.6.1.4.1.40297.1.2.5.1.3.1.2
	::= { multiCTCCDCEntry 2 }
	
txCtcssType OBJECT-TYPE
	SYNTAX INTEGER (0..3)				
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	"The type of the transmitting subaudio frequency.
	 none(0), CTCSS(1), CDCSS(2), CDCSS invert(3).
	 The value in first row is unable to be set.
   It's not able to be set, unless the rxCtcssType in the same row is not none."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.3.1.3
	::= { multiCTCCDCEntry 3 }
	
rxCtcssFrequency OBJECT-TYPE
	SYNTAX INTEGER (0|19..492|670..2541)		
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
		"The receiving subaudio frequency.
		 The value is limitted to the range and is not allowed to duplicate but 0.
		 The range is changed with the type:0
                 0        (rxCtcssType: none)
                 19~492   (rxCtcssType: CDCSS or CDCSS invert)
                 670~2541 (rxCtcssType: CTCSS)
     The value is 10 times of the real value when the type is CTCSS.
     The value in first row is unable to be set.
     It will be set to the matched minimum available value automatically, when the
     rxCtcssType in the same row is changed."
	-- 1.3.6.1.4.1.40297.1.2.5.1.3.1.4
	::= { multiCTCCDCEntry 4 }
	
rxCtcssType OBJECT-TYPE
	SYNTAX INTEGER (0..3)		
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The type of the receiving subaudio frequency.
	   none(0), CTCSS(1), CDCSS(2), CDCSS invert(3).
	   It must be set according to line sequence.
     The value in first row is unable to be set."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.3.1.5
	::= { multiCTCCDCEntry 5 }

audioPriority OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2.5.1.4
	::= { rptBasicSetting 4 }

pathPriority OBJECT-TYPE
	SYNTAX  INTEGER (0..2)				
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The transmit path priority.
		 PTT request(0), repeat request(1), first come first send(2)."
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.4.1
	::= { audioPriority 1 }

pttPriority OBJECT-TYPE
	SYNTAX  INTEGER (0..3)				
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The PTT priority.
		 external PTT(0), front PTT(1), remote PTT(2), first come first send(3)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.4.2
	::= { audioPriority 2 }

jitterBufferLenth OBJECT-TYPE			
	SYNTAX  INTEGER (1..8)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The jitter buffer length."
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.5
	::= { rptBasicSetting 5 }

analogCallHangTime OBJECT-TYPE		
	SYNTAX  INTEGER (0..70)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The analog call hang time.
		 unit: second."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.6
	::= { rptBasicSetting 6 }

repeatRequestPriority OBJECT-TYPE		
	SYNTAX  INTEGER (0..2)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The repeat request priority.
		 local repeating(0), IP connect repeating(1), first come first send(2)."
	DEFVAL { 2 }
	-- 1.3.6.1.4.1.40297.1.2.5.1.7
	::= { rptBasicSetting 7 }


rptDigitalChannelSetting OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2.5.2	
	::= { rptConfiguration 2 }

digitalChnTable  OBJECT-TYPE
    SYNTAX  SEQUENCE OF DigitalChnEntry
    MAX-ACCESS  not-accessible
    STATUS  mandatory
	DESCRIPTION
		"The table of digital channel's configuration parameters relevant to the
		 repeater's digital channels."
	-- 1.3.6.1.4.1.40297.1.2.5.2.1
	::= { rptDigitalChannelSetting 1 }

digitalChnEntry  OBJECT-TYPE
	SYNTAX  DigitalChnEntry
	MAX-ACCESS  not-accessible
	STATUS  mandatory
	DESCRIPTION
		"The digital channel's configuration parameters for one of the repeater's digital channels."
	INDEX { digitalChnIndex }
	-- 1.3.6.1.4.1.40297.1.2.5.2.1.1
	::= { digitalChnTable 1 }

DigitalChnEntry ::= SEQUENCE {
	digitalChnIndex  INTEGER,
	digitalColorCode  INTEGER,
	digitalIpMultisiteConnect  INTEGER,
	digitalReceiveFrequency  INTEGER,
	digitalTransmitFrequency  INTEGER,
	digitalTxContactName  INTEGER
}

digitalChnIndex  OBJECT-TYPE
	SYNTAX  INTEGER (1..16)
	MAX-ACCESS  read-only
	STATUS mandatory
	DESCRIPTION
		"The index of the table which uniquely identifies the digital channel's parameter.
		 It also represents the channel number which is counted from 1."
	-- 1.3.6.1.4.1.40297.1.2.5.2.1.1.1
	::= { digitalChnEntry 1 }	

digitalColorCode  OBJECT-TYPE
	SYNTAX  INTEGER (0..15)
	MAX-ACCESS  read-write
	STATUS mandatory
	DESCRIPTION
		"The color code."
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.2.1.1.2
	::= { digitalChnEntry 2 }

digitalIpMultisiteConnect  OBJECT-TYPE
	SYNTAX  INTEGER (0..3)				
	MAX-ACCESS  read-write
	STATUS mandatory
	DESCRIPTION
		"The multisite connecting based on network.
		 None(0), slot1(1), slot2(2), slot1&slot2(3)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.2.1.1.3
	::= { digitalChnEntry 3 }

digitalReceiveFrequency  OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)				
	MAX-ACCESS  read-write
	STATUS mandatory
	DESCRIPTION
		"The receiving frequency.
		 unit: Hz.
		 The value is limitted by the assigned frequency range and the last digit
		 should be 0 or 5."
	-- 1.3.6.1.4.1.40297.1.2.5.2.1.1.4
	::= { digitalChnEntry 4 }

digitalTransmitFrequency  OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)
	MAX-ACCESS  read-write
	STATUS mandatory
	DESCRIPTION
		"The transmitting frequency.
		 unit: Hz.
		 The value is limitted by the assigned frequency range and the last digit
		 should be 0 or 5."
	-- 1.3.6.1.4.1.40297.1.2.5.2.1.1.5
	::= { digitalChnEntry 5 }

digitalTxContactName  OBJECT-TYPE
	SYNTAX  INTEGER (0..512)
	MAX-ACCESS  read-write
	STATUS mandatory
	DESCRIPTION
		"The row number of transmitting contact name.
		 none(0), row number(1~512).
		 The value is limmited by the number of rows in contact table."
	-- 1.3.6.1.4.1.40297.1.2.5.2.1.1.6
	::= { digitalChnEntry 6 }

rptAnalogChannelSetting OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2.5.3	
	::= { rptConfiguration 3 }

analogChnTable  OBJECT-TYPE
        SYNTAX  SEQUENCE OF AnalogChnEntry
        MAX-ACCESS  not-accessible
        STATUS  mandatory
	DESCRIPTION
		"The table of analog channel's configuration parameters relevant to the
		 repeater's analog channels."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1
	::= { rptAnalogChannelSetting 1 }

analogChnEntry  OBJECT-TYPE
	SYNTAX  AnalogChnEntry
	MAX-ACCESS  not-accessible
	STATUS  mandatory
	DESCRIPTION
		"The analog channel's configuration parameters for one of the repeater's analog channels."
	INDEX { analogChnIndex }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1
	::= { analogChnTable 1 }

AnalogChnEntry ::= SEQUENCE {
	analogChnIndex  INTEGER,
	analogCarrierSquelchLevel  INTEGER,
	analogMultiCtcCdc  INTEGER,
	analogPreEmp  INTEGER,
	analogScrambler  INTEGER,
	analogFlatAudio  INTEGER,
	analogReceiveFrequency  INTEGER,
	analogRxCtcCdcType  INTEGER,
	analogRxCtcss  INTEGER,
	analogRxCdcss  INTEGER,
	analogTransmitFrequency  INTEGER,
	analogTxCtcCdcType  INTEGER,
	analogTxCtcss  INTEGER,
	analogTxCdcss  INTEGER
}

analogChnIndex  OBJECT-TYPE
	SYNTAX  INTEGER (1..16)		
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The index of the table which uniquely identifies the analog channel's parameters.
		 It also represents the channel number which is counted from 1."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.1
	::= { analogChnEntry  1 }

analogCarrierSquelchLevel OBJECT-TYPE
	SYNTAX  INTEGER (0..2)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The carrier squelch level.
		 open(0), normal(1), tight(2)"
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.2
	::= { analogChnEntry  2 }

analogMultiCtcCdc OBJECT-TYPE
	SYNTAX  INTEGER (0..1)		
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The multiCtcCdc control.
		 disable(0), enable(1).
		 It can't be set to enable until the analogRxCtcCdcType is not 0
		 and there is some valid data is multiCTCCDCTable."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.3
	::= { analogChnEntry  3 }

analogPreEmp OBJECT-TYPE
	SYNTAX  INTEGER (0..1)		
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The pre-emphasis control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.4
	::= { analogChnEntry  4 }

analogScrambler OBJECT-TYPE
	SYNTAX  INTEGER (0..1)	
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The scrambler control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.5
	::= { analogChnEntry  5 }

analogFlatAudio OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The flat audio control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.6
	::= { analogChnEntry  6 }

analogReceiveFrequency OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The receiving frequency.
		 unit: Hz.
		 The value is limitted by the assigned frequency range and the last digit
		 should be 0 or 5."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.7
	::= { analogChnEntry  7 }

analogRxCtcCdcType OBJECT-TYPE
	SYNTAX  INTEGER (0..3)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The type of receiving subaudio frequency.
		 none(0), CTCSS(1), CDCSS(2), CDCSS invert(3)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.8
	::= { analogChnEntry  8 }

analogRxCtcss OBJECT-TYPE
	SYNTAX  INTEGER (670..2541|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of receiving CTCSS.
		 It's 10 times of the real value.
		 65535 is an invalid value.
		 The value is restricted by analogRxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.9
	::= { analogChnEntry  9 }

analogRxCdcss OBJECT-TYPE
	SYNTAX  INTEGER (19..492|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of receiving CDCSS.
		 65535 is an invalid value.
		 The value is restricted by analogRxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.10
	::= { analogChnEntry  10 }

analogTransmitFrequency OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The transmitting frequency.
		 unit: Hz.
		 The value is limitted by the assigned frequency range and the last digit
		 should be 0 or 5."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.11
	::= { analogChnEntry  11 }

analogTxCtcCdcType OBJECT-TYPE
	SYNTAX  INTEGER (0..3)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The type of transmitting subaudio frequency.
		 none(0), CTCSS(1), CDCSS(2), CDCSS invert(3)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.12
	::= { analogChnEntry  12 }

analogTxCtcss OBJECT-TYPE
	SYNTAX  INTEGER (670..2541|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of transmitting CTCSS.
		 It's 10 times of the real value.
		 65535 is an invalid value.
		 The value is limited by analogTxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.13
	::= { analogChnEntry  13 }

analogTxCdcss OBJECT-TYPE
	SYNTAX  INTEGER (19..492|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of transmitting CDCSS.
		 65535 is an invalid value.
		 The value is restricted by analogTxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.3.1.1.14
	::= { analogChnEntry  14 }


rptMixedChannelSetting OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2.5.4	
	::= { rptConfiguration 4 }

mixedChnTable  OBJECT-TYPE
    SYNTAX  SEQUENCE OF MixedChnEntry
    MAX-ACCESS  not-accessible
    STATUS  mandatory
	DESCRIPTION
		"The table of mixed channel's configuration parameters relevant to the
		 repeater's mixed channels."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1
	::= { rptMixedChannelSetting 1 }

mixedChnEntry  OBJECT-TYPE
	SYNTAX  MixedChnEntry
	MAX-ACCESS  not-accessible
	STATUS  mandatory
	DESCRIPTION
		"The mixed channel's configuration parameters for one of the repeater's mixed channels."
	INDEX { analogChnIndex }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1
	::= { mixedChnTable  1 }

MixedChnEntry ::= SEQUENCE {
	mixedChnIndex  INTEGER,
	mixedCarrierSquelchLevel  INTEGER,
	mixedTxContactName INTEGER,
	mixedIpMultisiteConnect INTEGER,
	mixedColorCode INTEGER,
	mixedTxChannelType INTEGER,
	mixedPreEmp INTEGER,
	mixedScrambler INTEGER,
	mixedFlatAudio INTEGER,
	mixedMultiCtcCdc INTEGER,
	mixedReceiveFrequency INTEGER,
	mixedRxCtcCdcType INTEGER,
	mixedRxCtcss INTEGER,
	mixedRxCdcss INTEGER,
	mixedTransmitFrequency INTEGER,
	mixedTxCtcCdcType INTEGER,
	mixedTxCtcss INTEGER,
	mixedTxCdcss INTEGER
}

mixedChnIndex OBJECT-TYPE
	SYNTAX  INTEGER (1..16)		
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The index of the table which uniquely identifies the mixed channel's parameters.
		 It also represents the channel number which is counted from 1."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.1
	::= { mixedChnEntry  1 }

mixedCarrierSquelchLevel OBJECT-TYPE
	SYNTAX  INTEGER (0..2)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The carrier squelch level control.
		 open(0), normal(1), tight(2)."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.2
	::= { mixedChnEntry  2 }

mixedTxContactName OBJECT-TYPE
	SYNTAX  INTEGER (0..512)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The row number of transmitting contact name.
		 none(0), row number(1~512).
		 The value is limited to the numbers of row in the contact table."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.3
	::= { mixedChnEntry  3 }

mixedIpMultisiteConnect OBJECT-TYPE
	SYNTAX  INTEGER (0..3)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The multisite connecting based on network.
		 none(0), slot1(1), slot 2(2), slot1&slot2(3)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.4
	::= { mixedChnEntry  4 }

mixedColorCode OBJECT-TYPE
	SYNTAX  INTEGER (0..15)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The color code."
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.5
	::= { mixedChnEntry  5 }

mixedTxChannelType OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The type of transmitting channel.
		 digital(0), analog(1)."
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.6
	::= { mixedChnEntry  6 }

mixedPreEmp OBJECT-TYPE
	SYNTAX  INTEGER (0..1)		
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The pre-emphasis control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.7
	::= { mixedChnEntry  7 }

mixedScrambler OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The scrambler control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.8
	::= { mixedChnEntry  8 }

mixedFlatAudio OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The flat audio control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.9
	::= { mixedChnEntry  9 }

mixedMultiCtcCdc OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The multiCtcCdc control.
		 disable(0), enable(1).
		 It can't be set to enable until the mixedRxCtcCdcType is not 0
		 and there is some valid data in multiCTCCDC Table."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.10
	::= { mixedChnEntry  10 }

mixedReceiveFrequency OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The receiving frequency.
		 unit: Hz.
		 The value is limitted by the assigned frequency range and the last digit
		 should be 0 or 5."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.11
	::= { mixedChnEntry  11 }

mixedRxCtcCdcType OBJECT-TYPE
	SYNTAX  INTEGER (0..3)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The type of receiving subaudio frequency.
		 none(0), CTCSS(1), CDCSS(2), CDCSS invert(3)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.12
	::= { mixedChnEntry  12 }

mixedRxCtcss OBJECT-TYPE
	SYNTAX  INTEGER (670..2541|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of receiving CTCSS.
		 It's 10 times of the real value.
		 65535 is an invalid value.
		 The value is restricted by analogRxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.13
	::= { mixedChnEntry  13 }

mixedRxCdcss OBJECT-TYPE
	SYNTAX  INTEGER (19..492|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of receiving CDCSS.
		 65535 is an invalid value.
		 The value is restricted by analogRxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.14
	::= { mixedChnEntry  14 }

mixedTransmitFrequency OBJECT-TYPE
	SYNTAX  INTEGER (100000000..550000000)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The transmitting frequency.
		 unit: Hz.
		 The value is limitted by the assigned frequency range and the last digit
		 should be 0 or 5."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.15
	::= { mixedChnEntry  15 }

mixedTxCtcCdcType OBJECT-TYPE
	SYNTAX  INTEGER (0..3)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The type of transmitting subaudio frequency.
		 none(0), CTCSS(1), CDCSS(2), CDCSS invert(3)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.16
	::= { mixedChnEntry  16 }

mixedTxCtcss OBJECT-TYPE
	SYNTAX  INTEGER (670..2541|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of transmitting CTCSS.
		 It's 10 times of the real value.
		 65535 is an invalid value.
		 The value is restricted by analogTxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.17
	::= { mixedChnEntry  17 }

mixedTxCdcss OBJECT-TYPE
	SYNTAX  INTEGER (19..492|65535)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The value of transmitting CDCSS.
		 65535 is an invalid value.
		 The value is restricted by analogTxCtcCdcType."
	-- 1.3.6.1.4.1.40297.1.2.5.4.1.1.18
	::= { mixedChnEntry  18 }


rptServiceSetting OBJECT IDENTIFIER
	-- 1.3.6.1.4.1.40297.1.2.5.5	
	::= { rptConfiguration 5 }

groupCallHangTime OBJECT-TYPE
	SYNTAX  INTEGER (0..60)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The group call hang time.
		 unit: second.
		 The value is 2 times of the real value and should not be greater than the
		 value of sit."
	DEFVAL { 6 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.1
	::= { rptServiceSetting 1 }

privateCallHangTime OBJECT-TYPE
	SYNTAX  INTEGER (0..60)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The private call hang time.
		 unit: second.
		 The value is 2 times of the real value and should not be greater than the
		 value of sit."
	DEFVAL { 6 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.2
	::= { rptServiceSetting 2 }

emergencyCallHangTime OBJECT-TYPE
	SYNTAX  INTEGER (0..60)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The emergency call hang time.
		 unit: second.
		 The value is 2 times of the real value and should not be greater than the
		 value of sit."
	DEFVAL { 8 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.3
	::= { rptServiceSetting 3 }

sit OBJECT-TYPE
	SYNTAX  INTEGER (0|2..120)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The sit.
		 unit: second.
		 transmit always(0), the value of sit(2~120).
         The value is 2 times of the real value and should not be less than
         groupCallHangTime, privateCallHangTime and emergencyCallHangTime."
	DEFVAL { 12 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.4
	::= { rptServiceSetting 4 }

txPreambleDuration OBJECT-TYPE
	SYNTAX  INTEGER (0..144)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The preamble duration.
		 unit: milisecond.
		 The value is 1/60 times of the real value."
	DEFVAL { 16 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.5
	::= { rptServiceSetting 5 }

beaconTxMode OBJECT-TYPE
	SYNTAX  INTEGER (0..1)
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The beacon transmit mode.
		 local(0), network(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.6
	::= { rptServiceSetting 6 }

beaconDuration OBJECT-TYPE
	SYNTAX  INTEGER (0|4..150)	
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The beacon duration.
		 unit: milisecond.
		 disable(0), beacon duration(4~150).
		 The value is 1/120 times of the real value"
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.7
	::= { rptServiceSetting 7 }

beaconInterval OBJECT-TYPE
	SYNTAX  INTEGER (10..600)	
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The beacon interval.
		 unit: second."
	DEFVAL { 60 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.8
	::= { rptServiceSetting 8 }

multisiteAccessManagement OBJECT-TYPE
	SYNTAX  INTEGER (0..1)	
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The multisite access management control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.9
	::= { rptServiceSetting 9 }

accessManagement OBJECT-TYPE
	SYNTAX  INTEGER (0..1)	
	MAX-ACCESS read-write
	STATUS  mandatory
	DESCRIPTION
		"The access management control.
		 disable(0), enable(1)."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.10
	::= { rptServiceSetting 10 }
	
multisiteAccessManageTable OBJECT-TYPE
	SYNTAX SEQUENCE OF MultisiteAccessManageEntry
	MAX-ACCESS  not-accessible
	STATUS      mandatory
	DESCRIPTION
	  "The table of multisite access management's parameters relevant to the
	   multisite access management."
	-- 1.3.6.1.4.1.40297.1.2.5.5.11
	::= { rptServiceSetting 11 }

multisiteAccessManageEntry OBJECT-TYPE
	SYNTAX MultisiteAccessManageEntry
	MAX-ACCESS not-accessible
	STATUS mandatory
	DESCRIPTION
	  "The multisite management parameters."
	INDEX { mutisiteAccessManageIndex  }
	-- 1.3.6.1.4.1.40297.1.2.5.5.11.1
	::= { multisiteAccessManageTable 1 }

MultisiteAccessManageEntry ::= SEQUENCE {
	multisiteAccessManageIndex  INTEGER,
	multisiteStartId  INTEGER,		
	multisiteIdLength  INTEGER,
	multisiteAccessCallType  INTEGER
}

multisiteAccessManageIndex OBJECT-TYPE
	SYNTAX INTEGER (1..32)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The index of the table which uniquely identifies the multisite access
	   management's parameters."
	-- 1.3.6.1.4.1.40297.1.2.5.5.11.1.1
	::= { multisiteAccessManageEntry 1 }

multisiteStartId OBJECT-TYPE
	SYNTAX INTEGER (0..16776415)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The start ID.
	   invalid record(0), start ID(1~16776415).
	   It can't be set until multisiteAccessManagement is enable and the previous
	   row is set. If it is set, the matched multisiteIdLength and
	   multisiteAccessCallType will be set to 100 and 1 automaticly."
	-- 1.3.6.1.4.1.40297.1.2.5.5.11.1.2
	::= { multisiteAccessManageEntry 2 }
	
multisiteIdLength OBJECT-TYPE
	SYNTAX INTEGER (1..255|65535)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The ID length.
	   invalid(65535), ID length(1~255).
	   It can't be set until the multisiteAccessManagement is enable and the
	   matched multisiteStartId is set."
	-- 1.3.6.1.4.1.40297.1.2.5.5.11.1.3
	::= { multisiteAccessManageEntry 3 }
	
multisiteAccessCallType OBJECT-TYPE
	SYNTAX INTEGER (0..1|65535)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The call type.
	   private call(0), group call(1), invalid(65535).
     It can't be set until multisiteAccessManagement is enable."
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.11.1.4
	::= { multisiteAccessManageEntry 4 }
	
contactTable OBJECT-TYPE
	SYNTAX SEQUENCE OF ContactEntry
	MAX-ACCESS  not-accessible
	STATUS      mandatory
	DESCRIPTION
	  "The table of contacts.
	   It is not allowed to add a new contact information."
	-- 1.3.6.1.4.1.40297.1.2.5.5.12
	::= { rptServiceSetting 12 }

contactEntry OBJECT-TYPE
	SYNTAX ContactEntry
	MAX-ACCESS not-accessible
	STATUS mandatory
	DESCRIPTION
	  "The contact information."
	INDEX { contactIndex }
	-- 1.3.6.1.4.1.40297.1.2.5.5.12.1
	::= { contactTable 1 }

ContactEntry ::= SEQUENCE {
	contactIndex  INTEGER,
	callAlias  OCTET STRING,
  contactCallType INTEGER,		
	callId  INTEGER
}

contactIndex OBJECT-TYPE
	SYNTAX INTEGER (1..512)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The index of the table which uniquely identifies the contact information."
	-- 1.3.6.1.4.1.40297.1.2.5.5.12.1.1
	::= { contactEntry 1 }

callAlias OBJECT-TYPE
	SYNTAX OCTET STRING (SIZE(32))
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The call alias.
	   It is an unicode string.
	   The value should be exclusive."
	-- 1.3.6.1.4.1.40297.1.2.5.5.12.1.2
	::= { contactEntry 2 }

contactCallType OBJECT-TYPE
	SYNTAX INTEGER (0..2|65535)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The call type.
	   private call(0), group call(1), all call(2), invalid(65535).
     If the contactCallType is all call, the matched callId will be set to
     16777215 automatically. The number of all call contact must be less than 2."
	DEFVAL { 1 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.12.1.3
	::= { contactEntry 3 }
	
callId OBJECT-TYPE
	SYNTAX INTEGER (0..16776415|16777215)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The call ID.
	   invalid(0), call ID(1~16776415,16777215).
	   The callId should be exclusive in the group of same call type."
	-- 1.3.6.1.4.1.40297.1.2.5.5.12.1.4
	::= { contactEntry 4 }
	
accessManageTable OBJECT-TYPE
	SYNTAX SEQUENCE OF AccessManageEntry
	MAX-ACCESS  not-accessible
	STATUS      mandatory
	DESCRIPTION
	  "The table of access management's parameters relevant to the access management."
	-- 1.3.6.1.4.1.40297.1.2.5.5.13
	::= { rptServiceSetting 13 }

accessManageEntry OBJECT-TYPE
	SYNTAX AccessManageEntry
	MAX-ACCESS not-accessible
	STATUS mandatory
	DESCRIPTION
	  "The access management parameters."
	INDEX { accessManageIndex  }
	-- 1.3.6.1.4.1.40297.1.2.5.5.13.1
	::= { accessManageTable 1 }

AccessManageEntry ::= SEQUENCE {
	accessManageIndex  INTEGER,
	startId  INTEGER,		
	idLength  INTEGER
}

accessManageIndex OBJECT-TYPE
	SYNTAX INTEGER (1..32)
	MAX-ACCESS read-only
	STATUS mandatory
	DESCRIPTION
	  "The index of the table which uniquely identifies the access management's
	   parameters."
	-- 1.3.6.1.4.1.40297.1.2.5.5.13.1.1
	::= { accessManageEntry 1 }

startId OBJECT-TYPE
	SYNTAX INTEGER (0..16776415)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The start ID.
	   invalid record(0), start ID(1~16776415).
	   It can't be set until accessManagement is enable and the previous
	   row is set. If it is set, the matched idLength will be set to 100
	   automaticly."
	-- 1.3.6.1.4.1.40297.1.2.5.5.13.1.2
	::= { accessManageEntry 2 }
	
idLength OBJECT-TYPE
	SYNTAX INTEGER (1..255|65535)
	MAX-ACCESS read-write
	STATUS mandatory
	DESCRIPTION
	  "The ID length.
	   invalid(65535), ID length(1~255).
	   It can't be set until the accessManagement is enable and the
	   matched startId is set."
	-- 1.3.6.1.4.1.40297.1.2.5.5.13.1.3
	::= { accessManageEntry 3 }

repeatTOTTime OBJECT-TYPE
	SYNTAX  INTEGER (0|3..120)	
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The repeat TOT time.
		 unit: second.
		 The value is 1/5 times of the real value."
	DEFVAL { 0 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.14
	::= { rptServiceSetting 14 }

rerepeatTOTTime OBJECT-TYPE
	SYNTAX  INTEGER (1..60)	
	MAX-ACCESS read-only
	STATUS  mandatory
	DESCRIPTION
		"The rerepeat TOT time.
		 unit: second."
	DEFVAL { 5 }
	-- 1.3.6.1.4.1.40297.1.2.5.5.15
	::= { rptServiceSetting 15 }

END