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
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
|
-- *********************************************************************
-- CISCO-MEDIA-GATEWAY-MIB
--
-- This MIB defines the attributes of a Media Gateway.
--
-- March 2003 Yizhong Shen
--
-- Copyright (c) 2003, 2004, 2005 by cisco Systems, Inc.
-- All rights reserved.
--
-- *********************************************************************
CISCO-MEDIA-GATEWAY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Gauge32, Unsigned32
FROM SNMPv2-SMI
RowStatus, TruthValue, TEXTUAL-CONVENTION
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InterfaceIndexOrZero
FROM IF-MIB
InetAddress, InetAddressType,
InetAddressPrefixLength,
InetPortNumber
FROM INET-ADDRESS-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
CiscoPort, EntPhysicalIndexOrZero
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoMediaGatewayMIB MODULE-IDENTITY
LAST-UPDATED "200902250000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-voice-gateway@cisco.com"
DESCRIPTION
"The MIB module for managing Trunk Media Gateway.
A Media Gateway is a network element that provides conversion
between the audio signals carried on telephone circuits and
data packets carried over the Internet or over other packet
data networks.
Trunk Media Gateway interface is between the telephone network
and a Voice over IP/ATM network.
The interface on a Trunk Gateway terminates a trunk connected
to PSTN switch (e.g., Class 5, Class 4, etc.).
Media Gateways use a call control architecture where the call
control 'intelligence' is outside the gateways and handled by
external call control elements, called Media Gateway
Controllers (MGCs).
The MGCs or Call Agents, synchronize with each other to
send coherent commands to the gateways under their control.
MGCs use master/slave protocols to command the gateways under
their control. Examples of these protocols are:
* Simple Gateway Control Protocol
* Media Gateway Control Protocol
* Megaco (H.248)
* Simple Resource Control Protocol
To connect MG to MGCs using these control protocols through
an IP/UDP Ports which must be configured. To resolve IP
Addresses, DNS name services may be used.
"
REVISION "200902250000Z"
DESCRIPTION
"Added object cmgwV23Enabled to
cMediaGwTable."
REVISION "200606150000Z"
DESCRIPTION
"Added object cmgwLawInterceptEnabled to
cMediaGwTable.
Added object cMediaGwCcCfgDefRtpNamePrefix to
cMediaGwCallControlConfigTable.
"
REVISION "200509010000Z"
DESCRIPTION
"Added object cmgwSrcFilterEnabled to
cMediaGwTable.
Added object cmgwSignalProtocolConfigVer
to cmgwSignalProtocolTable.
Added cMediaGwRscStatsTable."
REVISION "200411190000Z"
DESCRIPTION
"Added object cmgwSignalProtocolPreference to
cmgwSignalProtocolTable."
REVISION "200407300000Z"
DESCRIPTION
"(1) Added the following objects:
cmgwVtMappingMode,
cMediaGwCcCfgDefBearerTraffic,
cmgwSignalMgcProtocolPort
(2) Added new enum 'tgcp' to cmgwSignalProtocol
"
REVISION "200304070000Z"
DESCRIPTION
"Initial version of this MIB module"
::= { ciscoMgmt 324 }
--
-- Object Identifiers used for Packetized Voice Switch Management
--
ciscoMediaGatewayMIBNotifs OBJECT IDENTIFIER
::= {ciscoMediaGatewayMIB 0}
ciscoMediaGatewayMIBObjects OBJECT IDENTIFIER
::= { ciscoMediaGatewayMIB 1 }
cMediaGwConfig OBJECT IDENTIFIER
::= { ciscoMediaGatewayMIBObjects 1 }
cMediaGwStats OBJECT IDENTIFIER
::= { ciscoMediaGatewayMIBObjects 2 }
-- *********************************************************************
-- TEXTUAL CONVENTIONS USED IN THIS MIB
-- *********************************************************************
CGwServiceState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the service state of media
gateway.
The possible service states are:
inService:
Gateway is ready to provide service.
In this state, Gateway will respond to connection control
requests, send autonomous messages to the call agent
as applicable, etc.
forcedOutOfService:
Gateway is in Out-Of-Service State.
All calls destroyed on the GW.
A Service Change message with FORCED method is sent to CA.
No new connections are allowed.
gracefulOutOfService:
Gateway is in Out-Of-Service State.
All existing calls will not be affected.
A Service Change message with GRACEFUL method is sent to CA.
No new connections are allowed."
SYNTAX INTEGER {
inService (1),
forcedOutOfService (2),
gracefulOutOfService (3)
}
CGwAdminState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the administrative state of
media gateway.
The possible administrative states are as follows:
inService:
Gateway would be restored to in-service status
and a ServiceChange with method RESTART message will be
sent to Call Agent
forcefulOutOfService:
Gateway would be in Out-Of-Service State
Any existing connections on the GW will be deleted.
A ServiceChange with method FORCED message will be
sent to call agent.
New connections would be blocked.
gracefulOutOfService:
Gateway would be in in Out-Of-Service State
Any existing connections on the GW will not be affected.
A ServiceChange with method GRACEFUL message will be
sent to call agent.
New connections would be blocked."
SYNTAX INTEGER {
inService (1),
forcedOutOfService (2),
gracefulOutOfService (3)
}
GatewayLifNumber ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An index that uniquely identifies a LIF (Logical Interface)
in the media gateway.
LIF is a logical interface which groups TDM(DS1) interfaces
into packet resource partitions (PVCs) in the media gateway.
LIF is used for:
AAL5 (VoIP) switching
AAL2 (VoATM) switching, only if support virtual gateway "
SYNTAX Unsigned32 (1..255)
CVoiceTonePlanIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the type of index for
identifying a voice tone plane in a Media gateway."
SYNTAX Unsigned32 (1..65535)
CVoiceTonePlanIndexOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention uniquely identifies the voice tone plan
to be used in a voice DS0 group.
The value of 0 means the default tone plan specified in
the media gateway (the value of cMediaGwCcCfgDefaultTonePlanId)
to be used.
A value greater than 0 means the tone plan specified by the
index of the cvtcTonePlanTable to be used (same as
cvtcTonePlanId)."
SYNTAX Unsigned32 (0..65535)
CCallControlProfileIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the type of index that is
used for identifying a call control profile of XGCP and
H.248 protocol."
SYNTAX Unsigned32 (1..65535)
CCallControlProfileIndexOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention is an extension of the
CCallControlProfileIndex convention.
The latter defines a greater than zero value used to identify
a call control profile in a media gateway.
This extension permits the additional value of zero.
The value of '0' means the default call control profile of the
media gateway."
SYNTAX Unsigned32 (0..65535)
CCallControlJitterDelayMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines the jitter buffer mode in
a call connection.
adaptive(1) - means to use jitter nominal delay as the
initial jitter buffers size and let the DSP
pick the optimal value of the jitter buffer
size between the range of jitter maximum delay
and jitter minimum delay.
fixed(2) - means to use a constant jitter buffer size
which is specified by jitter nominal delay.
"
SYNTAX INTEGER {
adaptive (1),
fixed (2)
}
-- *********************************************************************
-- cMediaGwTable
-- *********************************************************************
cMediaGwTable OBJECT-TYPE
SYNTAX SEQUENCE OF CMediaGwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the global media gateway parameters
information.
It supports the modification of the global media gateway
parameters."
::= { cMediaGwConfig 1 }
cMediaGwEntry OBJECT-TYPE
SYNTAX CMediaGwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Media Gateway Entry.
At system power-up, an entry is created by the agent
if the system detects a media gateway module has been added
to the system, and an entry is deleted if the entry associated
media gateway module has been removed from the system."
INDEX { cmgwIndex }
::= { cMediaGwTable 1 }
CMediaGwEntry::= SEQUENCE {
cmgwIndex Integer32,
cmgwDomainName SnmpAdminString,
cmgwPhysicalIndex EntPhysicalIndexOrZero,
cmgwServiceState CGwServiceState,
cmgwAdminState CGwAdminState,
cmgwGraceTime Integer32,
cmgwVtMappingMode INTEGER,
cmgwSrcFilterEnabled TruthValue,
cmgwLawInterceptEnabled TruthValue,
cmgwV23Enabled TruthValue
}
cmgwIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely identifies an entry in the
cMediaGwTable."
::= { cMediaGwEntry 1 }
cmgwDomainName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to represent a domain name under which
the Media Gateway could also be registered in a DNS name
server.
The value of this object reflects the value of
cmgwConfigDomainName from the entry with a value of
'gateway(1)' for object cmgwConfigDomainNameEntity of
cMediaGwDomainNameConfigTable.
If there is no entry in cMediaGwDomainNameConfigTable with
'gateway(1)' of cmgwConfigDomainNameEntity, then
the value of this object will be empty string."
::= { cMediaGwEntry 2 }
cmgwPhysicalIndex OBJECT-TYPE
SYNTAX EntPhysicalIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the entPhysicalIndex of the
card in which media gateway is running. It will contain
value 0 if the entPhysicalIndex value is not available or
not applicable"
::= { cMediaGwEntry 3 }
cmgwServiceState OBJECT-TYPE
SYNTAX CGwServiceState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the current service state of the Media
Gateway.
This object is controlled by 'cmgwAdminState'
object."
::= { cMediaGwEntry 4 }
cmgwAdminState OBJECT-TYPE
SYNTAX CGwAdminState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to change the service state of
the Media Gateway from inService to outOfService or from
outOfService to inService.
The resulting service state of the gateway is represented
by 'cmgwServiceState'."
::= { cMediaGwEntry 5 }
cmgwGraceTime OBJECT-TYPE
SYNTAX Integer32(-1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to represent grace period.
The grace period (restart delay in RSIP message) is
expressed in a number of seconds.
It means how soon the gateway will be taken out of service.
The value -1 indicates that the grace period time is
disabled."
DEFVAL { -1 }
::= { cMediaGwEntry 6 }
cmgwVtMappingMode OBJECT-TYPE
SYNTAX INTEGER {
standard (1),
titan (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to represent the VT (sonet Virtual
Tributary) counting.
standard - standard counting (based on Bellcore TR253)
titan - TITAN5500 counting (based on Tellabs TITAN 5500)
Note: 'titan' is valid only if sonet line medium type
(sonetMediumType of SONET-MIB) is 'sonet' and
sonet path payload type (cspSonetPathPayload of
CISCO-SONET-MIB) is 'vt15vc11'.
"
::= { cMediaGwEntry 7 }
cmgwSrcFilterEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to enable or disable the source IP
and port filtering with MGC for security consideration
as follows:
'true' - source IP and port filter is enabled
'false' - source IP and port filter is disable
"
DEFVAL { false }
::= { cMediaGwEntry 8 }
cmgwLawInterceptEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to enable or disable the lawful
intercept for government.
as follows:
'true' - enable lawful intercept
'false' - disable lawful intercept
"
DEFVAL { false }
::= { cMediaGwEntry 9 }
cmgwV23Enabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is to enable or disable V23 tone.
Setting the object value to 'true', will cause VXSM (Voice Switching
Service Module) to detect V23 tone.
"
DEFVAL { false }
::= { cMediaGwEntry 10 }
-- *********************************************************************
-- Media Gateway Protocol Table
-- *********************************************************************
cmgwSignalProtocolTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmgwSignalProtocolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the available signaling protocols that
are supported by the media gateway for communication with
MGCs."
::= { cMediaGwConfig 2 }
cmgwSignalProtocolEntry OBJECT-TYPE
SYNTAX CmgwSignalProtocolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents an signaling protocol supported
by the media gateway."
INDEX { cmgwIndex, cmgwSignalProtocolIndex }
::= { cmgwSignalProtocolTable 1 }
CmgwSignalProtocolEntry::= SEQUENCE {
cmgwSignalProtocolIndex Integer32,
cmgwSignalProtocol INTEGER,
cmgwSignalProtocolVersion SnmpAdminString,
cmgwSignalProtocolPort CiscoPort,
cmgwSignalMgcProtocolPort InetPortNumber,
cmgwSignalProtocolPreference Integer32,
cmgwSignalProtocolConfigVer SnmpAdminString
}
cmgwSignalProtocolIndex OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely identifies an entry in
cmgwSignalProtocolTable."
::= { cmgwSignalProtocolEntry 1 }
cmgwSignalProtocol OBJECT-TYPE
SYNTAX INTEGER {
other (1),
mgcp (2),
h248 (3),
tgcp (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to represent the protocol type.
other - None of the following types.
mgcp - Media Gateway Control Protocol
h248 - Media Gateway Control (ITU H.248)
tgcp - Trunking Gateway Control Protocol"
::= { cmgwSignalProtocolEntry 2 }
cmgwSignalProtocolVersion OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to represent the protocol version.
For example cmgwSignalProtocol is 'mgcp(2)' and
this object is string '1.0'. cmgwSignalProtocol is
'h248(3)' and this object is set to '2.0'."
REFERENCE
"MCGP 1.0 is documented in RFC2705."
::= { cmgwSignalProtocolEntry 3 }
cmgwSignalProtocolPort OBJECT-TYPE
SYNTAX CiscoPort
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to represent the UDP port associated
with the protocol.
If the value of cmgwSignalProtocol is 'mgcp(2)' and the
value of cmgwSignalProtcolVersion is '1.0', the default
value of this object is '2727'.
If the value of cmgwSignalProtocol is 'h248(3)' and the
value of cmgwSignalProtcolVersion is '1.0', the default
value of this object is '2944'."
::= { cmgwSignalProtocolEntry 4 }
cmgwSignalMgcProtocolPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the protocol port of the Media Gateway
Controller (MGC).
If the value of cmgwSignalProtocol is 'mgcp(2)' or 'tgcp(4)'
and the value of cmgwSignalProtcolVersion is '1.0', the
default value of this object is '2427'.
If the value of cmgwSignalProtocol is 'h248(3)' and the
value of cmgwSignalProtcolVersion is '1.0', the default
value of this object is '2944'."
::= { cmgwSignalProtocolEntry 5 }
cmgwSignalProtocolPreference OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the preference of the signal protocol
supported in the media gateway.
If this object is set to 0, the corresponding signal
protocol will not be used by the gateway.
The value of this object is unique within the corresponding
gateway. The entry with lower value has higher preference."
::= { cmgwSignalProtocolEntry 6 }
cmgwSignalProtocolConfigVer OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the protocol version
used by the gateway in the messages to MGC
in order to exchange the service capabilities.
For example cmgwSignalProtocol is 'h248(3)' and
this object can be string '1' or '1.0', '2' or '2.0'.
'MAX' is a special string indicating the gateway will
use the highest protocol version supported in the
gateway, but it can be changed to lower version after
it negotiates with MGC. The final negotiated protocol
version will be indicated in cmgwSignalProtocolVersion.
The version strings other than 'MAX' can be specified for
the gateway to communicate with the MGC which doesn't
support service capabilities negotiation. For example if
a MGC supports only version 1.0 MGCP, this object should
be set to '1' to instruct the gateway using MGCP
version 1.0 format messages to communicate with MGC. "
::= { cmgwSignalProtocolEntry 7 }
-- *********************************************************************
-- cMediaGwIpConfigTable
-- *********************************************************************
cMediaGwIpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CMediaGwIpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of media gateway IP address and
the IP address associated interface information.
If IP address associated interface is PVC, only
aal5 control PVC or aal5 bearer PVC are valid.
When the PVC is aal5 control, the IP address is used to
communicate to MGC; when the PVC is aal5 bearer, the IP
address is used to communicate to other gateway.
The PVC information is kept in cwAtmChanExtConfigTable:
cwacChanPvcType: aal5/aal2/aal1
cwacChanApplication: control/bearer/signaling
If IP address associated interface is not PVC, refer to the
IP addresses associated interface table for the usage
of IP address."
::= { cMediaGwConfig 3 }
cMediaGwIpConfigEntry OBJECT-TYPE
SYNTAX CMediaGwIpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Media Gateway IP configuration entry.
Each entry represents a media gateway IP address for MGCs
to communicate with the media gateway."
INDEX { cmgwIndex, cmgwIpConfigIndex }
::= { cMediaGwIpConfigTable 1 }
CMediaGwIpConfigEntry ::= SEQUENCE {
cmgwIpConfigIndex Integer32,
cmgwIpConfigIfIndex InterfaceIndexOrZero,
cmgwIpConfigVpi Integer32,
cmgwIpConfigVci Integer32,
cmgwIpConfigAddrType InetAddressType,
cmgwIpConfigAddress InetAddress,
cmgwIpConfigSubnetMask InetAddressPrefixLength,
cmgwIpConfigDefaultGwIp TruthValue,
cmgwIpConfigForRemoteMapping TruthValue,
cmgwIpConfigRowStatus RowStatus
}
cmgwIpConfigIndex OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique index to identify each media gateway IP address."
::= { cMediaGwIpConfigEntry 1 }
cmgwIpConfigIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is ifIndex of the interface which is associated
to the media gateway IP address.
For ATM interface, the IP address should be associated to
an existing PVC:
cmgwIpConfigIfIndex represents port of the PVC
cmgwIpConfigVpi represents VPI of the PVC
cmgwIpConfigVci represents VCI of the PVC
And one PVC only can be associated with one IP address.
If this object is set to zero which means the IP address
is not associated to any interface."
::= { cMediaGwIpConfigEntry 2 }
cmgwIpConfigVpi OBJECT-TYPE
SYNTAX Integer32 (-1..4095)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents VPI of the PVC which is associated
to the IP address.
If the IP address is not associated to PVC, the value
of this object is set to -1."
::= { cMediaGwIpConfigEntry 3 }
cmgwIpConfigVci OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents VCI of the PVC which is associated
to the IP address.
If the IP address is not associated to PVC, the value
of this object is set to -1."
::= { cMediaGwIpConfigEntry 4 }
cmgwIpConfigAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is the IP address type.
"
DEFVAL { ipv4 }
::= { cMediaGwIpConfigEntry 5 }
cmgwIpConfigAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The configured IP address of media gateway.
This object can not be modified.
"
::= { cMediaGwIpConfigEntry 6 }
cmgwIpConfigSubnetMask OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to specify the number of leading one
bits which from the mask to be logical-ANDed with the media
gateway address before being compared to the value in the
cmgwIpCofigAddress.
Any assignment (implicit or otherwise) of an instance of
this object to a value x must be rejected if the bitwise
logical-AND of the mask formed from x with the value
of the corresponding instance of the cmgwIpCofigAddress
object is not equal to cmgwIpCofigAddress."
::= { cMediaGwIpConfigEntry 7 }
cmgwIpConfigDefaultGwIp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies cmgwIpConfigAddress of the entry
will become the default gateway address.
This object can be set to 'true' for only one entry in
the table."
DEFVAL { false }
::= { cMediaGwIpConfigEntry 8 }
cmgwIpConfigForRemoteMapping OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies whether the address defined in
cmgwIpConfigAddress is the address mapping at the
remote end of this PVC.
If this object is set to 'true', the address defined
in cmgwIpConfigAddress is for the remote end of the PVC.
If this object is set to 'false', the address defined
in cmgwIpConfigAddress is for the local end of the PVC."
DEFVAL { false }
::= { cMediaGwIpConfigEntry 9 }
cmgwIpConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to add and delete an entry.
When an entry of the table is created, the following
objects are mandatory:
cmgwIpConfigIfIndex
cmgwIpConfigVpi
cmgwIpConfigVci
cmgwIpConfigAddress
cmgwIpConfigSubnetMask
These objects can not be modified after the value of this
object is set to 'active'.
Modification can only be done by deleting and re-adding the
entry again.
After the system verify the validity of the data, it
will set the cmgwIpConfigRowStatus to 'active'."
::= { cMediaGwIpConfigEntry 10 }
-- *********************************************************************
-- cMediaGwDomainNameConfigTable
-- *********************************************************************
cMediaGwDomainNameConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CMediaGwDomainNameConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides the domain names which are configured by
users.
The domain names can be used to represent IP addresses
for:
gateway
External DNS name server
MGC (call agent) "
::= { cMediaGwConfig 4 }
cMediaGwDomainNameConfigEntry OBJECT-TYPE
SYNTAX CMediaGwDomainNameConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents a domain name used in the system.
Creation and deletion are supported. Modification
is prohibited."
INDEX { cmgwIndex, cmgwConfigDomainNameIndex }
::= { cMediaGwDomainNameConfigTable 1 }
CMediaGwDomainNameConfigEntry ::=
SEQUENCE{
cmgwConfigDomainNameIndex Integer32,
cmgwConfigDomainNameEntity INTEGER,
cmgwConfigDomainName SnmpAdminString,
cmgwConfigDomainNameRowStatus RowStatus
}
cmgwConfigDomainNameIndex OBJECT-TYPE
SYNTAX Integer32(1..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that is uniquely identifies a domain name
configured in the system."
::= {cMediaGwDomainNameConfigEntry 1}
cmgwConfigDomainNameEntity OBJECT-TYPE
SYNTAX INTEGER {
gateway (1),
dnsServer (2),
mgc (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates which entity to use this domain name.
gateway(1) - The domain name of media gateway.
With the same cmgwIndex, there is one and
only one entry allowed with the value
'gateway(1)' of this object.
dnsServer(2) - The domain name of DNS name server that is used
by Media gateway to find Internet Network
Address from a DNS name.
mgc(3) - The domain name of a MGC (Media Gateway
Controller) associated with the media
gateway. "
::= {cMediaGwDomainNameConfigEntry 2}
cmgwConfigDomainName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the domain name.
The domain name should be unique if there are more than
one entries having the same value in the object
cmgwConfigDomainNameEntity.
For example, the gateway domain name should be unique
if the cmgwConfigDomainNameEntity has the value of
'gateway(1)'."
::= {cMediaGwDomainNameConfigEntry 3}
cmgwConfigDomainNameRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to add and delete an entry.
When an entry is created, the following objects
are mandatory:
cmgwConfigDomainName
cmgwConfigDomainNameEntity
When deleting domain name of DNS name server
(cmgwConfigDomainNameEntity is dnsServer (2)), the
cMediaGwDnsIpConfigTable should be empty.
Adding/deleting entry with cmgwConfigDomainNameEntity
of 'mgc' will cause adding/deleting entry in
cMgcConfigTable (CISCO-MGC-MIB) automatically.
The cmgwConfigDomainName and cmgwConfigDomainNameEntity
can not be modified if the value of this object is
'active'. "
::= {cMediaGwDomainNameConfigEntry 4}
-- *********************************************************************
-- cMediaGwDnsIpConfigTable
-- *********************************************************************
cMediaGwDnsIpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CMediaGwDnsIpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is only one DNS name server on a gateway
and the domain name of the DNS name server is put on
cMediaGwDomainNameConfigTable with 'dnsServer (2)'.
There could be multi IP addresses are associated with the
DNS name server, this table is used to store these IP
addresses.
If any domain name using external resolution, the last entry
of this table is not allowed to be deleted."
::= { cMediaGwConfig 5 }
cMediaGwDnsIpConfigEntry OBJECT-TYPE
SYNTAX CMediaGwDnsIpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents an IP address of the DNS name
server."
INDEX { cmgwIndex, cmgwDnsIpIndex }
::= { cMediaGwDnsIpConfigTable 1 }
CMediaGwDnsIpConfigEntry ::=
SEQUENCE{
cmgwDnsIpIndex Integer32,
cmgwDnsDomainName SnmpAdminString,
cmgwDnsIpType InetAddressType,
cmgwDnsIp InetAddress,
cmgwDnsIpRowStatus RowStatus
}
cmgwDnsIpIndex OBJECT-TYPE
SYNTAX Integer32(1..6)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely identifies an IP address of DNS
name server."
::= {cMediaGwDnsIpConfigEntry 1}
cmgwDnsDomainName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The domain name of DNS name server.
The value of this object reflects the value of
cmgwConfigDomainName from the entry with a value of
'dnsServer(2)' for object cmgwConfigDomainNameEntity of
cMediaGwDomainNameConfigTable.
If there is no entry in cMediaGwDomainNameConfigTable with
'dnsServer(2)' of cmgwConfigDomainNameEntity, then
the value of this object will be empty string."
::= {cMediaGwDnsIpConfigEntry 2}
cmgwDnsIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DNS name server IP address type."
DEFVAL { ipv4 }
::= {cMediaGwDnsIpConfigEntry 3}
cmgwDnsIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address of DNS name server.
The IP address of DNS name server must be unique
in this table."
::= {cMediaGwDnsIpConfigEntry 4}
cmgwDnsIpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to add and delete an entry.
When an entry of the table is created, the value of
this object should be set to 'createAndGo' and the
following objects are mandatory:
cmgwDnsIp
When the user wants to delete the entry, the value of
this object should be set to 'destroy'.
The entry can not be modified if the value of this
object is 'active'."
::= {cMediaGwDnsIpConfigEntry 5}
-- *********************************************************************
--
-- A LIF (Logical InterFace) is a group of TDM ports
-- (DSx1 lines) associated with a set of PVCs.
--
-- *********************************************************************
cmgwLifTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmgwLifEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is for managing LIF (Logical Interface)
in a media gateway.
LIF is a logical interface which groups the TDM
DSx1s associated with a set of packet resource partitions
(PVCs) in a media gateway.
LIF is used for:
1. VoIP switching
2. VoATM switching "
::= { cMediaGwConfig 6 }
cmgwLifEntry OBJECT-TYPE
SYNTAX CmgwLifEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of this table is created by the media gateway
when it supports the VoIP/VoATM application."
INDEX { cmgwIndex, cmgwLifNumber }
::= { cmgwLifTable 1 }
CmgwLifEntry::= SEQUENCE {
cmgwLifNumber GatewayLifNumber,
cmgwLifPvcCount Gauge32,
cmgwLifVoiceIfCount Gauge32
}
cmgwLifNumber OBJECT-TYPE
SYNTAX GatewayLifNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely identifies a LIF in the
media gateway."
::= { cmgwLifEntry 1 }
cmgwLifPvcCount OBJECT-TYPE
SYNTAX Gauge32(0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the total number of PVC within
this LIF.
When users associate/disassociate a PVC with a LIF
by giving a non-zero/zero value of cwacChanLifNum
in cwAtmChanExtConfigTable, the value of this object
will be incremented/decremented accordingly.
The value zero means there is no PVC associated with
the LIF."
::= { cmgwLifEntry 2 }
cmgwLifVoiceIfCount OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the total number of Voice Interfaces
within this LIF.
When users associate/disassociate a Voice Interface with
a LIF by giving a non-zero/zero value of
ccasVoiceCfgLifNumber for the DS0 group in
ccasVoiceExtCfgTable, the value of this object will be
incremented/decremented accordingly.
The value zero means there is no Voice Interface associated
with the LIF."
::= { cmgwLifEntry 3 }
-- ********************************************************************
--
-- cMediaGwCallControlConfigTable
--
-- ********************************************************************
cMediaGwCallControlConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CMediaGwCallControlConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines general call control attributes for
the media gateway."
::= { cMediaGwConfig 7 }
cMediaGwCallControlConfigEntry OBJECT-TYPE
SYNTAX CMediaGwCallControlConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"One entry for each media gateway which supports call control
protocol."
INDEX { cmgwIndex }
::= { cMediaGwCallControlConfigTable 1 }
CMediaGwCallControlConfigEntry ::= SEQUENCE
{
cMediaGwCcCfgControlTos Unsigned32,
cMediaGwCcCfgBearerTos Unsigned32,
cMediaGwCcCfgNtePayload Unsigned32,
cMediaGwCcCfgNsePayload Unsigned32,
cMediaGwCcCfgNseRespTimer Unsigned32,
cMediaGwCcCfgVbdJitterDelayMode CCallControlJitterDelayMode,
cMediaGwCcCfgVbdJitterMaxDelay Unsigned32,
cMediaGwCcCfgVbdJitterNomDelay Unsigned32,
cMediaGwCcCfgVbdJitterMinDelay Unsigned32,
cMediaGwCcCfgDefaultTonePlanId CVoiceTonePlanIndex,
cMediaGwCcCfgDescrInfoEnabled TruthValue,
cMediaGwCcCfgDsNamePrefix SnmpAdminString,
cMediaGwCcCfgRtpNamePrefix SnmpAdminString,
cMediaGwCcCfgAal1SvcNamePrefix SnmpAdminString,
cMediaGwCcCfgAal2SvcNamePrefix SnmpAdminString,
cMediaGwCcCfgClusterEnabled INTEGER,
cMediaGwCcCfgDefBearerTraffic INTEGER,
cMediaGwCcCfgDefRtpNamePrefix SnmpAdminString
}
cMediaGwCcCfgControlTos OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies Type Of Service (TOS) field of
IP header for the signaling control packet in VoIP
application."
DEFVAL { 96 }
::= { cMediaGwCallControlConfigEntry 1 }
cMediaGwCcCfgBearerTos OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies Type Of Service (TOS) field
of IP header for the voice payload packet in VoIP
application."
DEFVAL { 160 }
::= { cMediaGwCallControlConfigEntry 2 }
cMediaGwCcCfgNtePayload OBJECT-TYPE
SYNTAX Unsigned32 (96..127)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies NTE (Named Telephony Events)
payload type."
REFERENCE
"RFC2833, 3. RTP Payload Format for Named Telephone Events"
DEFVAL { 101 }
::= { cMediaGwCallControlConfigEntry 3 }
cMediaGwCcCfgNsePayload OBJECT-TYPE
SYNTAX Unsigned32 (98..117)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies NSE (Network Signaling Events)
payload type."
DEFVAL { 100 }
::= { cMediaGwCallControlConfigEntry 4 }
cMediaGwCcCfgNseRespTimer OBJECT-TYPE
SYNTAX Unsigned32 (250..10000)
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies Network Signaling Event (NSE)
timeout value."
DEFVAL { 1000 }
::= { cMediaGwCallControlConfigEntry 5 }
cMediaGwCcCfgVbdJitterDelayMode OBJECT-TYPE
SYNTAX CCallControlJitterDelayMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object specifies the jitter buffer mode applied to
a VBD (Voice Band Data) call connection.
adaptive - means to use cMediaGwCcCfgVbdJitterNomDelay as
the initial jitter buffers size and let the DSP
pick the optimal value of the jitter buffer
size between the range of
cMediaGwCcCfgVbcJitterMaxDelay and
cMediaGwCcCfgVbcJitterMinDelay.
fixed - means to use a constant jitter buffer size
which is specified by cMediaGwCcCfgVbdJitterNomDelay.
"
DEFVAL { fixed }
::= { cMediaGwCallControlConfigEntry 6 }
cMediaGwCcCfgVbdJitterMaxDelay OBJECT-TYPE
SYNTAX Unsigned32 (20..135)
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the maximum jitter buffer size
in VBD (Voice Band Data)"
DEFVAL { 135 }
::= { cMediaGwCallControlConfigEntry 7 }
cMediaGwCcCfgVbdJitterNomDelay OBJECT-TYPE
SYNTAX Unsigned32 (5..135)
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the nominal jitter buffer size
in VBD (Voice Band Data)"
DEFVAL { 70 }
::= { cMediaGwCallControlConfigEntry 8 }
cMediaGwCcCfgVbdJitterMinDelay OBJECT-TYPE
SYNTAX Unsigned32 (0..135)
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the nominal jitter buffer size
in VBD (Voice Band Data)"
DEFVAL { 0 }
::= { cMediaGwCallControlConfigEntry 9 }
cMediaGwCcCfgDefaultTonePlanId OBJECT-TYPE
SYNTAX CVoiceTonePlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the default tone plan index
(the value of cvtcTonePlanId) for the media gateway."
DEFVAL { 1 }
::= { cMediaGwCallControlConfigEntry 10 }
cMediaGwCcCfgDescrInfoEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the media gateway supports
descriptive suffix of the name schema for terminations.
There are two parts in name schema of termination, prefix
and suffix. For example the name schema for a DS (Digital
Subscriber) termination, can be 'DS/OC3_2/DS1_6/DS0_24'.
It represents DS type termination in 2nd OC3 line,
6th DS1 and 24th DS0 channel. In this example, 'DS' is
the prefix, 'OC3_2/DS1_6/DS0_24' is the suffix.
The name schema in above example has a descriptive suffix.
The non-descriptive suffix for the same termination is
'2/6/24' and name schema becomes 'DS/2/6/24'.
This object can not be modified if there is any termination
existing in the media gateway."
DEFVAL { false }
::= { cMediaGwCallControlConfigEntry 11 }
cMediaGwCcCfgDsNamePrefix OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the prefix of the name schema for
DS (Digital Subscriber) terminations.
The value of this object must be unique among the
following objects:
cMediaGwCcCfgDsNamePrefix
cMediaGwCcCfgRtpNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgDefRtpNamePrefix
This object can not be modified when there is any
DS termination existing in the media gateway.
It is default to 'DS'."
DEFVAL { '4453'H }
::= { cMediaGwCallControlConfigEntry 12 }
cMediaGwCcCfgRtpNamePrefix OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the prefix of the name schema for
RTP (Real-Time Transport Protocol) terminations.
The value of this object must be unique among the
following objects:
cMediaGwCcCfgDsNamePrefix
cMediaGwCcCfgRtpNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgDefRtpNamePrefix
This object can not be modified when there is any
RTP termination type existing in the media gateway.
It is default to 'RTP'."
DEFVAL { '525450'H }
::= { cMediaGwCallControlConfigEntry 13 }
cMediaGwCcCfgAal1SvcNamePrefix OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the prefix of the name schema for
voice over AAL1 SVC (Switched Virtual Circuit)
terminations.
The value of this object must be unique among the
following objects:
cMediaGwCcCfgDsNamePrefix
cMediaGwCcCfgRtpNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgDefRtpNamePrefix
This object can not be modified when there is any
AAL1 SVC termination type existing in the media gateway.
It is default to 'AAL1/SVC'."
DEFVAL { '41414C312F535643'H }
::= { cMediaGwCallControlConfigEntry 14 }
cMediaGwCcCfgAal2SvcNamePrefix OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the prefix of the name schema for
voice over AAL2 SVC (Switched Virtual Circuit)
terminations.
The value of this object must be unique among the
following objects:
cMediaGwCcCfgDsNamePrefix
cMediaGwCcCfgRtpNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
cMediaGwCcCfgDefRtpNamePrefix
This object can not be modified when there is any
AAL2 SVC termination type existing in the media gateway.
It is default to 'AAL2/SVC'."
DEFVAL { '41414C322F535643'H }
::= { cMediaGwCallControlConfigEntry 15 }
cMediaGwCcCfgClusterEnabled OBJECT-TYPE
SYNTAX INTEGER {
disabled (1),
enabled (2),
conditionalEnabled (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the condition of the cluster generation
in the call control.
A cluster is a group of endpoints that share a particular
bearer possibility for connections among each other.
disabled(1) - The generation of the cluster attribute
is disabled.
enabled(2) - Unconditionally generate the cluster
attribute.
conditionalEnabled(3) - The generation of the cluster
attribute is upon MGC request.
"
DEFVAL { disabled }
::= { cMediaGwCallControlConfigEntry 16 }
cMediaGwCcCfgDefBearerTraffic OBJECT-TYPE
SYNTAX INTEGER {
ipPvcAal5 (1),
atmPvcAal2 (2),
atmSvcAal2 (3),
atmSvcAal1 (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the combination of the network
type (IP/ATM), virtual circuit type (PVC/SVC) and
ATM adaptation layer type (AAL1/AAL2/AAL5) for the
connection used in transporting bearer traffic.
ipPvcAal5 (1) - The bearer traffic is transported in
IP network, through Permanent Virtual
Circuit(PVC) over AAL5 adaptation layer.
atmPvcAal2 (2) - The bearer traffic is transported in
ATM network, through Permanent Virtual
Circuit(PVC) over AAL2 adaptation layer.
atmSvcAal2 (3) - The bearer traffic is transported in
ATM network, through Switching Virtual
Circuit(SVC) over AAL2 adaptation layer.
atmSvcAal1 (4) - The bearer traffic is transported in
ATM network, through Switching Virtual
Circuit(SVC) over AAL1 adaptation layer.
In MGCP, if the call agent specifies the bear traffic type
in the local connection options (CRCX request),
configuration of this object will have no effect,
otherwise the value of this object will be used when
media gateway sending CRCX response."
DEFVAL { ipPvcAal5 }
::= { cMediaGwCallControlConfigEntry 17 }
cMediaGwCcCfgDefRtpNamePrefix OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the prefix of the name schema for
default RTP terminations.
The value of this object must be unique among the
following objects:
cMediaGwCcCfgDsNamePrefix
cMediaGwCcCfgRtpNamePrefix
cMediaGwCcCfgAal1SvcNamePrefix
cMediaGwCcCfgAal2SvcNamePrefix
It is defaulted to 'TGWRTP'."
DEFVAL { '544757525450'H }
::= { cMediaGwCallControlConfigEntry 18 }
--
-- GW resource statistics table
--
cMediaGwRscStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CMediaGwRscStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores the gateway resource statistics
information.
"
::= { cMediaGwStats 1 }
cMediaGwRscStatsEntry OBJECT-TYPE
SYNTAX CMediaGwRscStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry stores the statistics
information for a specific resource.
"
INDEX { cmgwIndex, cmgwRscStatsIndex}
::= { cMediaGwRscStatsTable 1 }
CMediaGwRscStatsEntry::= SEQUENCE {
cmgwRscStatsIndex INTEGER,
cmgwRscMaximumUtilization Gauge32,
cmgwRscMinimumUtilization Gauge32,
cmgwRscAverageUtilization Gauge32,
cmgwRscSinceLastReset Unsigned32
}
cmgwRscStatsIndex OBJECT-TYPE
SYNTAX INTEGER {
cpu (1),
staticmemory (2),
dynamicmemory (3),
sysmemory (4),
commbuffer (5),
msgq (6),
atmq (7),
svccongestion (8),
rsvpq (9),
dspq (10),
h248congestion (11),
callpersec (12),
smallipcbuffer (13),
mediumipcbuffer (14),
largeipcbuffer (15),
hugeipcbuffer (16),
mblkipcbuffer (17)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely identifies a specific gateway
resource.
"
::= { cMediaGwRscStatsEntry 1 }
cmgwRscMaximumUtilization OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum utilization of the
resource over the interval specified by the
'cmgwRscSinceLastReset'.
"
::= { cMediaGwRscStatsEntry 2 }
cmgwRscMinimumUtilization OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the minimum utilization of the
resource over the interval specified by the
'cmgwRscSinceLastReset'.
"
::= { cMediaGwRscStatsEntry 3 }
cmgwRscAverageUtilization OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the average utilization of the
resource over the interval specified by the
'cmgwRscSinceLastReset'.
"
::= { cMediaGwRscStatsEntry 4 }
cmgwRscSinceLastReset OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The elapsed time (in seconds) from the last periodic reset.
The following objects are reset at the last reset:
'cmgwRscMaximumUtilization'
'cmgwRscMinimumUtilization'
'cmgwRscAverageUtilization'
"
::= { cMediaGwRscStatsEntry 5 }
--**********************************************************************
--Conformance
--**********************************************************************
cMediaGwMIBConformance
OBJECT IDENTIFIER ::= { ciscoMediaGatewayMIB 2 }
cMediaGwMIBCompliances
OBJECT IDENTIFIER ::= { cMediaGwMIBConformance 1 }
cMediaGwMIBGroups
OBJECT IDENTIFIER ::= { cMediaGwMIBConformance 2 }
--
--Conformance and compliance statements
--
cMediaGwMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities which implement
Media Gateway MIB.
This has been replaced by cMediaGwMIBComplianceRev1"
MODULE -- this module
MANDATORY-GROUPS {
cMediaGwGroup
}
GROUP cmgwSignalProtocolGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwDomainNameGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more domain name."
GROUP cMediaGwIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more IP address."
GROUP cmgwDnsIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
DNS name server."
GROUP cmgwLifGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
LIF (logical interface)."
GROUP cmgwCallControlGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
any signaling protocol."
OBJECT cmgwIpConfigAddrType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwIpConfigAddress
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
OBJECT cmgwDnsIpType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwDnsIp
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
::= { cMediaGwMIBCompliances 1 }
cMediaGwMIBComplianceRev1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities which implement
Media Gateway MIB.
This has been replaced by cMediaGwMIBComplianceRev2."
MODULE -- this module
MANDATORY-GROUPS {
cMediaGwGroupRev1
}
GROUP cmgwSignalProtocolGroupRev1
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwDomainNameGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more domain name."
GROUP cMediaGwIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more IP address."
GROUP cmgwDnsIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
DNS name server."
GROUP cmgwLifGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
LIF (logical interface)."
GROUP cmgwCallControlGroupRev1
DESCRIPTION
"This group is mandatory for a media gateway which supports
any signaling protocol."
OBJECT cmgwIpConfigAddrType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwIpConfigAddress
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
OBJECT cmgwDnsIpType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwDnsIp
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
::= { cMediaGwMIBCompliances 2 }
cMediaGwMIBComplianceRev2 MODULE-COMPLIANCE
STATUS deprecated -- by cMediaGwMIBComplianceRev3
DESCRIPTION
"The compliance statement for the SNMP entities which implement
Media Gateway MIB."
MODULE -- this module
MANDATORY-GROUPS {
cMediaGwGroupRev1
}
GROUP cmgwSignalProtocolGroupRev2
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwDomainNameGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more domain name."
GROUP cMediaGwIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more IP address."
GROUP cmgwDnsIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
DNS name server."
GROUP cmgwLifGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
LIF (logical interface)."
GROUP cmgwCallControlGroupRev1
DESCRIPTION
"This group is mandatory for a media gateway which supports
any signaling protocol."
OBJECT cmgwIpConfigAddrType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwIpConfigAddress
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
OBJECT cmgwDnsIpType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwDnsIp
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
::= { cMediaGwMIBCompliances 3 }
cMediaGwMIBComplianceRev3 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities which implement
Media Gateway MIB."
MODULE -- this module
MANDATORY-GROUPS {
cMediaGwGroupRev1,
cMediaGwGroupExtra
}
GROUP cmgwSignalProtocolGroupRev2
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwSignalProtocolGroupRev3
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwDomainNameGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more domain name."
GROUP cMediaGwIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more IP address."
GROUP cmgwDnsIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
DNS name server."
GROUP cmgwLifGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
LIF (logical interface)."
GROUP cmgwCallControlGroupRev1
DESCRIPTION
"This group is mandatory for a media gateway which supports
any signaling protocol."
GROUP cMediaGwRscStatsGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
gateway resource statistics."
OBJECT cmgwIpConfigAddrType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwIpConfigAddress
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
OBJECT cmgwDnsIpType
-- SYNTAX InetAddressType { ipv4(1) }
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwDnsIp
SYNTAX InetAddress (SIZE(4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
::= { cMediaGwMIBCompliances 4 }
cMediaGwMIBComplianceRev4 MODULE-COMPLIANCE
STATUS deprecated -- by cMediaGwMIBComplianceRev5
DESCRIPTION
"The compliance statement for the SNMP entities which implement
Media Gateway MIB."
MODULE -- this module
MANDATORY-GROUPS {
cMediaGwGroupRev1,
cMediaGwGroupExtra
}
GROUP cmgwSignalProtocolGroupRev2
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwSignalProtocolGroupRev3
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwDomainNameGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more domain name."
GROUP cMediaGwIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more IP address."
GROUP cmgwDnsIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
DNS name server."
GROUP cmgwLifGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
LIF (logical interface)."
GROUP cmgwCallControlGroupRev2
DESCRIPTION
"This group is mandatory for a media gateway which supports
any signaling protocol."
GROUP cMediaGwRscStatsGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
gateway resource statistics."
OBJECT cmgwIpConfigAddrType
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwIpConfigAddress
SYNTAX InetAddress (SIZE (4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
OBJECT cmgwDnsIpType
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwDnsIp
SYNTAX InetAddress (SIZE (4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
::= { cMediaGwMIBCompliances 5 }
cMediaGwMIBComplianceRev5 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities which implement
Media Gateway MIB."
MODULE -- this module
MANDATORY-GROUPS {
cMediaGwGroupRev1,
cMediaGwGroupExtra
}
GROUP cMediaGwGroupRev2
DESCRIPTION
"This group is mendatory for media gateway which supports
Enable/Disable V23 mode at gateway level."
GROUP cmgwSignalProtocolGroupRev2
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwSignalProtocolGroupRev3
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more signaling protocol stacks."
GROUP cmgwDomainNameGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more domain name."
GROUP cMediaGwIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
one or more IP address."
GROUP cmgwDnsIpGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
DNS name server."
GROUP cmgwLifGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
LIF (logical interface)."
GROUP cmgwCallControlGroupRev2
DESCRIPTION
"This group is mandatory for a media gateway which supports
any signaling protocol."
GROUP cMediaGwRscStatsGroup
DESCRIPTION
"This group is mandatory for a media gateway which supports
gateway resource statistics."
OBJECT cmgwIpConfigAddrType
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwIpConfigAddress
SYNTAX InetAddress (SIZE (4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
OBJECT cmgwDnsIpType
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address type"
OBJECT cmgwDnsIp
SYNTAX InetAddress (SIZE (4))
DESCRIPTION
"The minimal requirement for supporting this object is 'ipv4'
address"
::= { cMediaGwMIBCompliances 6 }
--
--units of conformance
--
--MIB Groups
--
cMediaGwGroup OBJECT-GROUP
OBJECTS {
cmgwDomainName,
cmgwPhysicalIndex,
cmgwServiceState,
cmgwAdminState,
cmgwGraceTime
}
STATUS deprecated
DESCRIPTION
"This group contains objects that apply to the media gateway
configuration table."
::= { cMediaGwMIBGroups 1 }
cmgwSignalProtocolGroup OBJECT-GROUP
OBJECTS {
cmgwSignalProtocol,
cmgwSignalProtocolVersion,
cmgwSignalProtocolPort
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing signaling
protocol information a media gateway."
::= { cMediaGwMIBGroups 2 }
cmgwDomainNameGroup OBJECT-GROUP
OBJECTS {
cmgwConfigDomainNameEntity,
cmgwConfigDomainName,
cmgwConfigDomainNameRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing DNS name
configuration for a media gateway."
::= { cMediaGwMIBGroups 3 }
cMediaGwIpGroup OBJECT-GROUP
OBJECTS {
cmgwIpConfigIfIndex,
cmgwIpConfigVpi,
cmgwIpConfigVci,
cmgwIpConfigAddrType,
cmgwIpConfigAddress,
cmgwIpConfigSubnetMask,
cmgwIpConfigDefaultGwIp,
cmgwIpConfigForRemoteMapping,
cmgwIpConfigRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing IP address
configuration for a media gateway."
::= { cMediaGwMIBGroups 4 }
cmgwDnsIpGroup OBJECT-GROUP
OBJECTS {
cmgwDnsDomainName,
cmgwDnsIp,
cmgwDnsIpType,
cmgwDnsIpRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing DSN name server
IP address configuration for a media gateway."
::= { cMediaGwMIBGroups 5 }
cmgwLifGroup OBJECT-GROUP
OBJECTS {
cmgwLifPvcCount,
cmgwLifVoiceIfCount
}
STATUS current
DESCRIPTION
"A collection of objects providing LIF(logical interface)
information for a media gateway."
::= { cMediaGwMIBGroups 6 }
cmgwCallControlGroup OBJECT-GROUP
OBJECTS {
cMediaGwCcCfgControlTos,
cMediaGwCcCfgBearerTos,
cMediaGwCcCfgNtePayload,
cMediaGwCcCfgNsePayload,
cMediaGwCcCfgNseRespTimer,
cMediaGwCcCfgVbdJitterDelayMode,
cMediaGwCcCfgVbdJitterMaxDelay,
cMediaGwCcCfgVbdJitterNomDelay,
cMediaGwCcCfgVbdJitterMinDelay,
cMediaGwCcCfgDefaultTonePlanId,
cMediaGwCcCfgDescrInfoEnabled,
cMediaGwCcCfgDsNamePrefix,
cMediaGwCcCfgRtpNamePrefix,
cMediaGwCcCfgAal1SvcNamePrefix,
cMediaGwCcCfgAal2SvcNamePrefix,
cMediaGwCcCfgClusterEnabled
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing general call control
information in a media gateway."
::= { cMediaGwMIBGroups 7 }
cMediaGwGroupRev1 OBJECT-GROUP
OBJECTS {
cmgwDomainName,
cmgwPhysicalIndex,
cmgwServiceState,
cmgwAdminState,
cmgwGraceTime,
cmgwVtMappingMode
}
STATUS current
DESCRIPTION
"This group replaces cMediaGwGroup.
It contains objects that apply to the media gateway
configuration table."
::= { cMediaGwMIBGroups 8 }
cmgwCallControlGroupRev1 OBJECT-GROUP
OBJECTS {
cMediaGwCcCfgControlTos,
cMediaGwCcCfgBearerTos,
cMediaGwCcCfgNtePayload,
cMediaGwCcCfgNsePayload,
cMediaGwCcCfgNseRespTimer,
cMediaGwCcCfgVbdJitterDelayMode,
cMediaGwCcCfgVbdJitterMaxDelay,
cMediaGwCcCfgVbdJitterNomDelay,
cMediaGwCcCfgVbdJitterMinDelay,
cMediaGwCcCfgDefaultTonePlanId,
cMediaGwCcCfgDescrInfoEnabled,
cMediaGwCcCfgDsNamePrefix,
cMediaGwCcCfgRtpNamePrefix,
cMediaGwCcCfgAal1SvcNamePrefix,
cMediaGwCcCfgAal2SvcNamePrefix,
cMediaGwCcCfgClusterEnabled,
cMediaGwCcCfgDefBearerTraffic
}
STATUS current
DESCRIPTION
"This group replaces cmgwCallControlGroup.
It contains the objects providing general call control
information in a media gateway."
::= { cMediaGwMIBGroups 9 }
cmgwSignalProtocolGroupRev1 OBJECT-GROUP
OBJECTS {
cmgwSignalProtocol,
cmgwSignalProtocolVersion,
cmgwSignalProtocolPort,
cmgwSignalMgcProtocolPort
}
STATUS deprecated
DESCRIPTION
"This group replaces cmgwSignalProtocolGroup.
It contains the objects providing signaling
protocol information a media gateway."
::= { cMediaGwMIBGroups 10 }
cmgwSignalProtocolGroupRev2 OBJECT-GROUP
OBJECTS {
cmgwSignalProtocol,
cmgwSignalProtocolVersion,
cmgwSignalProtocolPort,
cmgwSignalMgcProtocolPort,
cmgwSignalProtocolPreference
}
STATUS current
DESCRIPTION
"This group replaces cmgwSignalProtocolGroupRev1.
It contains the objects providing signaling
protocol information a media gateway."
::= { cMediaGwMIBGroups 11 }
cmgwSignalProtocolGroupRev3 OBJECT-GROUP
OBJECTS {
cmgwSignalProtocolConfigVer
}
STATUS current
DESCRIPTION
"Additional objects for cmgwSignalProtocolGroupRev2."
::= { cMediaGwMIBGroups 12 }
cMediaGwRscStatsGroup OBJECT-GROUP
OBJECTS {
cmgwRscMaximumUtilization,
cmgwRscMinimumUtilization,
cmgwRscAverageUtilization,
cmgwRscSinceLastReset
}
STATUS current
DESCRIPTION
"This group includes gateway resource statistics
information.
"
::= { cMediaGwMIBGroups 13 }
cMediaGwGroupExtra OBJECT-GROUP
OBJECTS {
cmgwSrcFilterEnabled,
cmgwLawInterceptEnabled
}
STATUS current
DESCRIPTION
"Additional objects for cMediaGwGroupRev1."
::= { cMediaGwMIBGroups 14 }
cmgwCallControlGroupRev2 OBJECT-GROUP
OBJECTS {
cMediaGwCcCfgControlTos,
cMediaGwCcCfgBearerTos,
cMediaGwCcCfgNtePayload,
cMediaGwCcCfgNsePayload,
cMediaGwCcCfgNseRespTimer,
cMediaGwCcCfgVbdJitterDelayMode,
cMediaGwCcCfgVbdJitterMaxDelay,
cMediaGwCcCfgVbdJitterNomDelay,
cMediaGwCcCfgVbdJitterMinDelay,
cMediaGwCcCfgDefaultTonePlanId,
cMediaGwCcCfgDescrInfoEnabled,
cMediaGwCcCfgDsNamePrefix,
cMediaGwCcCfgRtpNamePrefix,
cMediaGwCcCfgAal1SvcNamePrefix,
cMediaGwCcCfgAal2SvcNamePrefix,
cMediaGwCcCfgClusterEnabled,
cMediaGwCcCfgDefBearerTraffic,
cMediaGwCcCfgDefRtpNamePrefix
}
STATUS current
DESCRIPTION
"This group replaces cmgwCallControlGroup.
It contains the objects providing general call control
information in a media gateway."
::= { cMediaGwMIBGroups 15 }
cMediaGwGroupRev2 OBJECT-GROUP
OBJECTS {
cmgwDomainName,
cmgwPhysicalIndex,
cmgwServiceState,
cmgwAdminState,
cmgwGraceTime,
cmgwVtMappingMode,
cmgwV23Enabled
}
STATUS current
DESCRIPTION
"Additional object cmgwV23Enabled in CMediaGwEntry Table."
::= { cMediaGwMIBGroups 16 }
END
|