File: megaco-h248

package info (click to toggle)
doc-iana 20081201-1
  • links: PTS, VCS
  • area: non-free
  • in suites: lenny
  • size: 118,212 kB
  • ctags: 1,179
  • sloc: xml: 55,434; perl: 1,159; makefile: 45
file content (1740 lines) | stat: -rw-r--r-- 95,881 bytes parent folder | download
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

Megaco/H.248 Packages per [RFC5125] or [ITU-T Rec. H.248.1]

- Packages
- Error Codes
- ServiceChange Reasons
- Profile Names

(last updated 2008-10-07)

The IANA will assign a serial number to each package meeting the 
conditions of registration (except for an update of an existing 
package, which retains the serial number of the package it is 
updating), in consecutive order of registration.  The serial number
will be used to identify the package in the binary-coded version of
the Megaco/H.248 protocol.  Serial number 0 is reserved, and the 
initial tabulation of public packages is given below.  Public 
packages MUST be given serial numbers in the range 0x0001 to
0x7fff.  Private packages MUST be given serial numbers in the range
0x8000 to 0xffff.   
    
IANA will maintain the currency and public availability of the 
tabulation of public and private packages.  Packages will be listed
in increasing order of serial number.  Updates to packages will be 
listed in increasing order of version number.

Tabulation Of Public Packages

Serial Text Name  Ver     Extends        Status*   Reference/Contact 
------ ---------  ---   -----------      ------    -----------------
                        Ser     Ver
                        ------  ---
0x0001 g            2      -     -       Final     [RFC5125] or 
                                                   ITU-T Rec. H.248.1 
                                                   ITU TSB 
                                                   Place des Nations 
                                                   CH-1211 Geneva 20 
                                                   tsbmail&itu.int 

0x0002 root         2      -     -       Final     ditto 

0x0003 tonegen      2      -     -       Final     ditto 

0x0004 tonedet      1      -     -       Final     ditto 

0x0005 dg           2   0x0003   1       Final     ditto 

0x0006 dd           1   0x0004   1       Final     ditto 

0x0007 cg           2   0x0003   1       Final     ditto 

0x0008 cd           1   0x0004   1       Final     ditto 

0x0009 al           1      -     -       Final     ditto 

0x000a ct           1      -     -       Final     ditto 

0x000b nt           1      -     -       Final     ditto 

0x000c rtp          1   0x000b   1       Final     ditto 

0x000d tdmc         1   0x000b   1       Final     ditto 

0x000e ftmd         2   0x0004   1       Final     H.248.2 Amendment 1
                                                   ITU TSB at above 
                                                   address 

0x000f txc          1      -     -       Final     ditto 

0x0010 txp          1      -     -       Final     ditto 

0x0011 ctyp         3      -     -       Final     ditto 

0x0012 fax          1      -     -       Final     ditto 

0x0013 ipfax        2      -     -       Final     ditto 

0x0014 dis          1      -     -       Final     H.248.3
                                                   ITU TSB at above 
                                                   address 

0x0015 key          1      -     -       Final     ditto 

0x0016 kp           1   0x0015   1       Final     ditto 

0x0017 labelkey     1   0x0015   1       Final     ditto 

0x0018 kf           1   0x0017   1       Final     ditto 

0x0019 ind          1      -     -       Final     ditto 

0x001a ks           1   0x0017   1       Final     ditto 

0x001b anci         1      -     -       Final     ditto 

0x001c dtd          1      -     -       Final     H.248.6
                                                   ITU TSB at above 
                                                   address 

0x001d an           1      -     -       Final     H.248.7
                                                   ITU TSB at above 
                                                   address 

0x001e bcp          1      -     -       Final     Bearer Characteristics
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x001f bnct         1      -     -       Final     Bearer Network Connection Cut
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0020 ri           1      -     -       Final     Reuse Idle
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0021 gb           1      -     -       Final     Generic Bearer Connection
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0022 bt           1      -     -       Final     Bearer Control Tunnelling
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0023 bcg          1   0x0003   1       Final     Basic Call Progress Tones
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0024 xcg          1   0x0003   1       Final     Expanded Call Progress Tones
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0025 srvtn        1   0x0003   1       Final     Basic Services Tones
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0026 xsrvtn       1   0x0003   1       Final     Expanded Services Tones
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0027 int          1   0x0003   1       Final     Intrusion Tones
                                                   Q.1950 Annex A
                                                   ITU TSB at above address 

0x0028 biztn        1   0x0003   1       Final     Business Tones
                                                   Q.1950 Annex A
                                                   ITU TSB at above address

0x0029 chp          1      -     -       Final     Media Gateway Resource
                                                   Congestion Handling
                                                   H.248.10
                                                   ITU TSB at above address

0x002a h245         1      -     -       Final     H245 package
                                                   H.248.12
                                                   ITU TSB at above address

0x002b h323bc       1      -     -       Final     H323 bearer control package
                                                   H.248.12
                                                   ITU TSB at above address

0x002c h324         1      -     -       Final     H324 package
                                                   H.248.12
                                                   ITU TSB at above address	  

0x002d h245com      1      -     -       Final     H245 command package
                                                   H.248.12
                                                   ITU TSB at above address

0x002e h245ind      1      -     -       Final     H245 indication package
                                                   H.248.12
                                                   ITU TSB at above address

0x002f threegup     1      -     -       Final     3G User Plane
                                                   3GPP TS 29.232 v4.1.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex 
                                                   FRANCE
                                                   3gppcontact&etsi.fr

0x0030 threegcsd    1      -     -       Final     3G Circuit Switched Data
                                                   3GPP TS 29.232 v4.1.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex 
                                                   FRANCE
                                                   3gppcontact&etsi.fr

0x0031 threegtfoc   1      -     -       Final     3G TFO Control
                                                   3GPP TS 29.232 v4.1.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex 
                                                   FRANCE
                                                   3gppcontact&etsi.fr
  
0x0032 threegxcg    1   0x0024   1       Final     3G Expanded Call Progress Tones
                                                   Generator Package
                                                   3GPP TS 29.232 v4.1.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex 
                                                   FRANCE
                                                   3gppcontact&etsi.fr

0x0033 aasb         2      -     -       Final     Advanced Audio Server (AAS) Base 
                                                   H.248.9 Amendment 1
                                                   ITU-T TSB at above address 

0x0034 aasdc        2   0x0033   1       Final     AAS Digit Collection 
                                                   H.248.9 Amendment 1
                                                   ITU-T TSB at above address 

0x0035 aasrec       2   0x0033   2       Final     AAS Recording 
                                                   H.248.9 Amendment 1
                                                   ITU-T TSB at above address 

0x0036 aassm        1      -     -       Final     AAS Segment Management 
                                                   H.248.9 
                                                   ITU-T TSB at above address 

0x0037 qac          1   0x000b   1       Final     Quality Alert Ceasing
                                                   H.248.13
                                                   ITU-T TSB at above address

0x0038 conftn       1   0x0003   1       Final     Conferencing Tones Generation
                                                   Package 
                                                   H.248.27
                                                   ITU TSB at above address
												   
0x0039 test         1   0x0003   1       Final     Diagnostic Tones Generation
                                                   Package 
                                                   H.248.27
                                                   ITU TSB at above address
					
0x003a carr         1   0x0003   1       Final     Carrier Tones Generation Package
                                                   H.248.27
                                                   ITU TSB at above address
            
0x003b alert        2    -       -       Final     Enhanced Alerting Package
                                                   H.248.23 (01/05)
                                                   ITU TSB at above address

0x003c andisp       2   0x003b   1       Final     Analog Display Signalling Package
                                                   H.248.23 (01/05)
                                                   ITU TSB at above address

0x003d mfg          1   0x0003   1       Final     Multi-Frequency Tone Generation
                                                   Package 
                                                   H.248.24
                                                   ITU TSB at above address
												   
0x003e mfd          1   0x0004   1       Final     Multi-Frequency Tone Detection
                                                   Package 
                                                   H.248.24
                                                   ITU TSB at above address

0x003f bcas         2    -      -        Final     Basic CAS Package
                                                   H.248.25 (01/07)
                                                   ITU TSB at above address
												   
0x0040 rbs          1    -      -        Final     Robbed Bit Signalling Package
                                                   H.248.25
                                                   ITU TSB at above address

0x0041 oses         1    -      -        Final     Operator Services and Emgergency
                                                   Services Package
                                                   H.248.25
                                                   ITU TSB at above address
												   
0x0042 osext        1   0x0041   1       Final     Operator Services Extension 
                                                   Package 
                                                   H.248.25
                                                   ITU TSB at above address

0x0043 xal          1   0x0009   1       Final     Extended Analog Line Supervision
                                                   Package 
                                                   H.248.26 (07/03)
                                                   ITU TSB at above address

0x0044 amet         2   -       -        Final     Automatic Metering Package
                                                   H.248.26 (07/03)
                                                   ITU TSB at above address
  
0x0045 it           1   -       -        Final     Inactivity Timer Package
                                                   H.248.14
                                                   ITU TSB at above address
      
0x0046 threegmlc    1   -       -        Final     3G Modification of Link Characteristics
                                                   Bearer Capability
                                                   3GPP TS 29.232 v4.4.0 
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex 
                                                   FRANCE
                                                   3gppcontact&etsi.fr

0x0047 bannsyx      1   -       -        Final     Base Announcement Syntax
                                                   H.248.9
                                                   ITU-T TSB at above address

0x0048 vvsyx        2   0x0047  1        Final     Voice Variable Syntax
                                                   H.248.9 (01/05)
                                                   ITU-T TSB at above address

0x0049 setsyx       3   0x0047  1        Final     Announcement Set Syntax
                                                   H.248.9 Amendment 1
                                                   ITU-T TSB at above address

0x004a phrsyx       2   0x0047  1        Final     Phrase Variable Syntax
                                                   H.248.9 (01/05)
                                                   ITU-T TSB at above address

0x004b nas          1     -     -        IP 05/02  Basic NAS package
                                                   <taylor&nortelnetworks.com> 
                                                   <draft-ietf-megaco-naspkg-04.txt>

0x004c nasin        1  0x004b   1        IP 05/02  NAS incoming package
                                                   <taylor&nortelnetworks.com> 
                                                   <draft-ietf-megaco-naspkg-04.txt>

0x004d nasout       1  0x004b   1        IP 05/02  NAS outgoing package
                                                   <taylor&nortelnetworks.com> 
                                                   <draft-ietf-megaco-naspkg-04.txt>

0x004e nasctl       1     -     -        IP 05/02  NAS control package
                                                   <taylor&nortelnetworks.com> 
                                                   <draft-ietf-megaco-naspkg-04.txt>

0x004f nasroot      1     -     -        IP 05/02  NAS root package
                                                   <taylor&nortelnetworks.com> 
                                                   <draft-ietf-megaco-naspkg-04.txt>

0x0050 prp          1     -     -        Final     Profile Handling Package
                                                   H.248.18 
                                                   ITU-T TSB at above address

0x0051 ocp          1     -     -        Final     Media Gateway Overload Control Package
                                                   H.248.11 
                                                   ITU-T TSB at above address

0x0052 xdd          1     -   0x0006     Final     Extended DTMF Detection Package
                                                   H.248.16
                                                   ITU-T TSB at above address

0x0053 qtlt         1    -     -         Final     Quiet Termination Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0054 lltr         1    -     -         Final     Loopback Line Test Response
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0055 Itult404     1    -     -         Final     ITU 404Hz Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0056 Itult816     1    -     -         Final     ITU 816Hz Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0057 Itult1020    1    -     -         Final     ITU 1020Hz Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0058 Itultdist    1    -     -         Final     ITU 2100Hz Disable Tone Line
                                                   Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0059 Itultdisecd  1    -     -         Final     ITU 2100Hz Disable Echo
                                                   Canceller Tone Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x005a Itult2804    1    -     -         Final     ITU 2804Hz Tone Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x005b Itultntt     1    -     -         Final     ITU Noise Test Tone Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x005c Itultdprt    1    -     -         Final     ITU Digital Pseudo Random
                                                   Test Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x005d Itultatme2   1    -     -         Final     ITU ATME No.2 Test Line
                                                   Response
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x005e ansilt1004   1    -     -         Final     ANSI 1004Hz Test Tone Line
                                                   Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x005f ansilttres   1    -     -         Final     ANSI Test Responder Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0060 Ansilt2225   1    -     -         Final     ANSI 2225Hz Test Progress
                                                   Tone Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0061 Ansiltdts    1    -     -         Final     ANSI Digital Test Signal 
                                                   Line Test
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0062 ansiinvlltr  1    -     -         Final     ANSI Inverting Loopback Line
                                                   Test Repsonse
                                                   ITU-T Rec. H.248.17
                                                   ITU TSB 
                                                   At above address.

0x0063 h324ext     1    0x002c    1      Final     Extended H.324 Packages
                                                   H.248.12 Amendment 1
                                                   ITU TSB
                                                   At above address.

0x0064 h245comext  1    0x002d    1      Final     Extended H.245 Command 
                                                   Package
                                                   H.248.12 Amendment 1
                                                   ITU TSB
                                                   At above address.

0x0065 h245indext  1    0x002e    1      Final     Extended H.245 Indication
                                                   Package
                                                   H.248.12 Amendment 1
                                                   ITU TSB
                                                   At above address.

0x0066 edd         1    0x0052    1      Final     Enhanced DTMF Detection Package 
                                                   H.248.16 
                                                   ITU-T TSB 
                                                   At above address.

0x0067 xg         1    0x0021     1      Final     Connection Group Identity Package 
                                                   Q.1950 Annex E 
                                                   ITU-T TSB 
                                                   At above address.

0x0068 threegctm  1       -       -      Final     CTM Text Transport
                                                   3GPP TS 29.232 v5.2.0 
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex 
                                                   FRANCE
                                                   3gppcontact&etsi.fr

0x0069 spne     0x000d    1       1      Final     SPNE Control Package
                                                   Q.115.0
                                                   ITU-T TSB
                                                   At above address.

0x006a semper     1      -       -       Final     Semi-permanent Connection 
                                                   Package H.248.21
                                                   ITU-T TSB
                                                   At above address.

0x006b shrisk     1      -       -       Final     Shared Risk Group
                                                   Package H.248.22
                                                   ITU-T TSB
                                                   At above address.

0x006c isuptn     1     0x0003   1       IP(05/03) Annex B of
                                                   ITU-T Rec. J.171
                                                   ITU TSB
                                                   Place des Nations
                                                   CH-1211 Geneva 20
                                                   tsbmail&itu.int

0x006d bcasaddr   1     0x003f   1      Final      Basic CAS Addressing Package
                                                   H.248.25
                                                   ITU-T TSB at above address

0x006e fcp        2      -       -      IP         Floor Control Package
                                                   H.248.19 Amendment 2
                                                   ITU TSB at above address

0x006f indview    1      -       -      Final      Indication of Being Viewed
                                                   Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0070 vcp        1      -       -      Final      Volume Control Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0071 UNASSIGNED

0x0072 vdp        1      -       -      Final      Volume Detection Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0073 vlmp       1      -       -      Final      Volume Level Mixing Package 
                                                   H.248.19
                                                   ITU TSB at above address

0x0074 mvlcp      1      -       -      Final      Mixing Volume Level Control 
                                                   Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0075 vavsp      1      -       -      Final      Voice Activated Video  
                                                   Switch Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0076 lvmp       1      -       -      Final      Lecture Video Mode
                                                   Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0077 cvsp       1      -       -      Final      Contributing Video Source
                                                   Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0078 vwp        1      -       -      Final      Video Window Package
                                                   Package
                                                   H.248.19
                                                   ITU TSB at above address

0x0079 tilwin     1      -       -      Final      Tiled Window Package
                                                   Package
                                                   H.248.19
                                                   ITU TSB at above address
												   
0x007a ajb        1     0x000b   1      Final      Adaptive Jitter Buffer Package
                                                   H.248.31
                                                   ITU TSB at above address

0x007b icas       2     0x003f   2      Final      International CAS Package
                                                   H.248.28 (01/07)
                                                   ITU-T TSB at above address
												   
0x007c casblk     1      -       -      Final      CAS Blocking Package
                                                   H.248.28 (03/04)
                                                   ITU-T TSB at above address
		
0x007d icasc      1      0x007b  1      Final      International CAS Compelled Package
                                                   H.248.29
                                                   ITU-T TSB at above address
												  
0x007e icasco     1      0x007d  1      Final      International CAS Compelled with Overlap
                                                   Package
                                                   H.248.29
                                                   ITU-T TSB at above address
												   
0x007f icasce     1      0x007e  1      Final      International CAS Compelled with 
                                                   End-to-end Package
                                                   H.248.29
                                                   ITU-T TSB at above address
												   
0x0080 rtcpxr     1       -      -      Final      RTCP XR Package
                                                   H.248.30
                                                   ITU-T TSB at above address
												   
0x0081 xrbm       1      0x0080  1      Final      RTCP XR Burst Metrics Package
                                                   H.248.30
                                                   ITU-T TSB at above address
												   
0x0082 threegcsden  1    0x0030  1      Final      3G Enhanced Circuit Switched Data package
                                                   3GPP TS 29.232 v5.6.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex
                                                   FRANCE
                                                   3gppcontact&etsi.fr

0x0083 threegiptra  1      -     -       Final     3G IP transport package
                                                   3GPP TS 29.232 v5.6.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex
                                                   FRANCE
                                                   3gppcontact&etsi.fr

0x0084 threegflex   1   0x0032   1       Final     3G Flexible Tone Generator Package
                                                   3GPP TS 29.232 v5.6.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOHPIA ANTIPOLIS cedex
                                                   FRANCE
                                                   3gppcontact&etsi.fr
												   
0x0085  pcmsb       1      -       -     Final     ITU-T Recommendation H.248.33
                                                   ITU-T TSB at above address

0x008a  emb         1      -       -      IP       TIPHON Extended H.248/MEGACO Package 
                                                   (EMP) Specification
                                                   ETSI specification TS 101 3 ETSI Secretariat,
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org
												   
0x008b  ds          1      -       -      IP       Differentiated Services Package
                                                   H.248.52
                                                   ITU-T TSB at above address 
                                                   Formerly:
                                                   Annex A of ETSI TS 102 333
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org
												   
0x008c  gm         2    0x00b5    1       IP       Gate Management - Source Address/
                                                   Port Filtering Package
                                                   H.248.43
                                                   ITU-T TSB at above address 
                                                   Formerly:
                                                   Annex B of ETSI TS 102 333
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org
												   
0x008d  tman       2      -       -      IP        Traffic Management Package
                                                   H.248.53
                                                   ITU-T TSB at above address 
                                                   Formerly:
                                                   Annex C of ETSI TS 102 333
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org
												   
0x008e  gri        1      -       -      IP        Gate Recovery Information Package
                                                   Annex D of ETSI TS 102 333
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org
												   
0x008f   ntr       1      -       -      IP        NAT Traversal Package
                                                   Annex E of ETSI TS 102 333
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org
												   
0x0090   mpls      1      -       -      Final     MPLS Package
                                                   H.248.54
                                                   ITU-T TSB at above address 
                                                   Formerly:
                                                   Annex F of ETSI TS 102 333
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org
												   
0x0091   vlan      1      -       -      Final     VLAN Package
                                                   H.248.56
                                                   ITU-T TSB at above address 
                                                   Formerly:
                                                   Annex G of ETSI TS 102 333
                                                   ETSI Secretariat
                                                   650 Route des Luicoles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org

0x0092   dcr      1       -       -      Final     Detailed Congestion Reporting Package     
                                                   H.248.32
                                                   ITU TSB at above address

0x0093  stimal    1       -       -      Final     Stimulus Analogue Lines Package
                                                   H.248.34
                                                   ITU-T TSB at above address

0x0094  icascgen  1       -       -      Final     H.248.29 
                                                   ITU-T TSB at above address
 
0x0095   coin     1       -       -      Final     Coin Operated Phone Control Package 
                                                   H.248.35 
                                                   ITU-T TSB at above address 

0x0096   metd     1       -       -      Final     Metering Pulse Detection Package 
                                                   H.248.26 (01/05)
                                                   ITU-T TSB at above address 

0x0097  calltrace 1       -       -      Final     Trace Package
                                                   3GPP TS 29.232 v6.3.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOPHIA ANTIPOLIS cedex
                                                   France
                                                   3gppcontact&etsi.fr

0x0098   hangterm 1       -       -      Final     Hanging Termination Package 
                                                   H.248.36
                                                   ITU-T TSB at above address 

0x0099   ipnapt   1       -       -      Final     IP NAPT Traversal Package 
                                                   H.248.37
                                                   ITU-T TSB at above address 

0x009a   nb       1       -       -      Final     Notification Behaviour Package 
                                                   H.248.1v3
                                                   ITU-T TSB at above address 

0x009b   bc       1       -       -      Final     Base Context Package
                                                   H.248.38
                                                   ITU_T TSB at above address

0x009c   adid     1       -       -      Final     Application Data Inactivity
                                                   Detection Package
                                                   H.248.40 
                                                   ITU_T TSB at above address

0x009d   ipdc     1       -       -      Final     IP Domain Connection Package
                                                   Detection Package
                                                   H.248.41
                                                   ITU_T TSB at above address    

0x009e   dcme     2       -       -      IP        Digital Circuit Multiplication 
                                                   Equipment Package
                                                   H.248.42 Amendment 1
                                                   ITU_T TSB at above address

0x009f   prectn   1       -       -      Final     Multi-level Precedence and
                                                   Pre-emption Package
                                                   H.248.44
                                                   ITU_T TSB at above address

0x00a0   mgcinfo  1       -       -      Final     MGC Information Package
                                                   H.248.45
                                                   ITU_T TSB at above address

0x00a1   top      1       -       -      Final     Text Overlay Package
                                                   H.248.19 Amendment 1
                                                   ITU_T TSB at above address

0x00a2   bbp      1       -       -      Final     Border and Background Package
                                                   H.248.19 Amendment 1
                                                   ITU_T TSB at above address

0x00a3   seg      1       -       -      Final     Segmentation Package 
                                                   H.248.1v3 
                                                   ITU-T TSB at above address 

0x00a4   etsi_nb  1       -       -      Final     ETSI notification behaviour package
                                                   ETSI ES 283 039-3
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org

0x00a5   etsi_nr  1       -       -      IP        ETSI notification rate package
                                                   ETSI ES 283 039-4
                                                   ETSI Secretariat
                                                   650 Route des Lucioles
                                                   06921 Sophia Antipolis CEDEX, France
                                                   PTCCHelp&etsi.org

0x00a6   asr      1       -       -      Final     Automatic Speech Recognition Package  
                                                   H.248.9 Amendment 1 
                                                   ITU-T TSB at above address 

0x00a7   ttssyx   1     0x0049    2      Final     Set extension to basic syntax for TTS 
                                                   enhancement Package  
                                                   H.248.9 Amendment 1
                                                   ITU-T TSB at above address

0x00a8   aastts   1       -       -      Final     Advanced audio server base package for 
                                                   TTS enhancement  
                                                   H.248.9 Amendment 1 
                                                   ITU-T TSB at above address

0x00a9   mpp      1     0x0033    2      Final     Multimedia Play Package  
                                                   H.248.9 Amendment 1 
                                                   ITU-T TSB at above address

0x00aa   fsdp     1       -       -      IP        Floor Status Detection Package  
                                                   H.248.19 Amendment 2 
                                                   ITU-T TSB at above address

0x00ab   fcpoli   1       -       -      IP        Floor Control Policy Package  
                                                   H.248.19 Amendment 2 
                                                   ITU-T TSB at above address

0x00ac   adr      1    0x0099     1      IP        Address Reporting Package  
                                                   H.248.37 Amendment 1 
                                                   ITU-T TSB at above address	   

0x00ad   ccc      1       -       -     Final      Connection Capability Control Package  
                                                   H.248.46 
                                                   ITU-T TSB at above address

0x00ae   scr      2       -       -      IP        Statistic Conditional Reporting Package  
                                                   H.248.47 Amendment 1
                                                   ITU-T TSB at above address

0x00af   qhr      1       -       -      IP        RTCP HR QoS Statistics Package  
                                                   H.248.48 
                                                   ITU-T TSB at above address

0x00b0 recrtcpxr  1    0x000c     1     Final      Received RTCP XR Package  
                                                   H.248.30 (01/2007)
                                                   ITU-T TSB at above address 

0x00b1   recxrbm  1    0x00b0     1     Final      Received RTCP XR Burst Metrics Package  
                                                   H.248.30 (01/2007)
                                                   ITU-T TSB at above address
												   
0x00b2 threegasci 1       -       -     Final      ASCI Group call package  
                                                   3GPP TS 29.232 v7.4.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOPHIA ANTIPOLIS cedex
                                                   France
                                                   3gppcontact&etsi.org

0x00b3   mrp      1    0x0035     2      Final     Multimedia Recording Package
                                                   H.248.9 Amendment 1
                                                   ITU-T TSB at above address
                                                   
0x00b4   h245tp   1       -       -      Final     H.245 Transport Package  
                                                   H.248.12 Amendment 2
                                                   ITU-T TSB at above address

0x00b5   rtcph    1       -       -      IP        RTCP Handling package  
                                                   H.248.57
                                                   ITU-T TSB at above address

0x00b6   dapf     1       -       -      IP        Gate Management - Outgoing Destination
                                                   Address/Port Filtering Package  
                                                   H.248.43
                                                   ITU-T TSB at above address

0x00b7   ipf     1       -       -       IP        Gate Management - Incoming Protocol
                                                   Filtering Package  
                                                   H.248.43
                                                   ITU-T TSB at above address

0x00b8   opf     1       -       -       IP        Gate Management - Outgoing Protocol
                                                   Filtering Package  
                                                   H.248.43
                                                   ITU-T TSB at above address

0x00b9   ifb     1       -       -       IP        Gate Management - Incoming Filtering
                                                   Behaviour Package
                                                   H.248.43
                                                   ITU-T TSB at above address

0x00ba   ofb     1       -       -       IP        Gate Management - Outgoing Filtering
                                                   Behaviour Package
                                                   H.248.43
                                                   ITU-T TSB at above address

0x00bb   sdpr    1       -       -       Final     Session Description Protocol RFC
                                                   Package
                                                   H.248.49
                                                   ITU-T TSB at above address

0x00bc   sdpc    1       -       -       Final     Session Description Protocol
                                                   Capabilities Package
                                                   H.248.49
                                                   ITU-T TSB at above address

0x00bd   stunb   1       -       -       IP        NAT Traversal Toolkit - STUN Base Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00be   mgstunc 1       -       -       IP        NAT Traversal Toolkit - MG STUN Client
                                                   Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00bf   mgturnc 1       -       -       IP        NAT Traversal Toolkit - MG TURN Client
                                                   Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00c0   mgcstunc 1      -       -       IP        NAT Traversal Toolkit - MGC STUN Client
                                                   Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00c1   stuni    1      -       -       IP        NAT Traversal Toolkit - STUN Information
                                                   Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00c2   mgastuns 1      -       -       IP        NAT Traversal Toolkit - MG Act-as STUN
                                                   Server Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00c3   ostuncc  1      -       -       IP        NAT Traversal Toolkit - Originate STUN
                                                   Continuity Check Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00c4   mgcostunr 1     -       -       IP        NAT Traversal Toolkit - MGC Originated
                                                   STUN Request Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00c5   kar       1     -       -       IP        NAT Traversal Toolkit - Keepalive
                                                   Request Package
                                                   H.248.50
                                                   ITU-T TSB at above address

0x00c6   tcm     1       -       -       Final     Termination Connection Model
                                                   Package
                                                   H.248.51
                                                   ITU-T TSB at above address

0x00c7   qos     1       -       -       IP        QoS Class Package
                                                   H.248.52
                                                   ITU-T TSB at above address

0x00c8   tmanr   1       tman    1       IP        Traffic Policing Statistics Package
                                                   H.248.53
                                                   ITU-T TSB at above address

0x00c9   pacs    1       tman    1       IP        Packet Size Package
                                                   H.248.53
                                                   ITU-T TSB at above address

0x00ca   plm     1       -       -       IP        Pull Mode Package
                                                   H.248.55
                                                   ITU-T TSB at above address

0x00cb   rtpad   1       -       -       IP        RTP Application Data Package
                                                   H.248.58
                                                   ITU-T TSB at above address

0x00cc   etn     1       -       -       Final     Event Timestamp Notification Package
                                                   H.248.59
                                                   ITU-T TSB at above address

0x00cd   rmr     1       -       -       IP        Resource Management Rules Package
                                                   H.248.63
                                                   ITU-T TSB at above address

0x00ce   rmc     1       -       -       IP        Resource Management Configuration
                                                   Package
                                                   H.248.63
                                                   ITU-T TSB at above address

0x00cf   arm     1       -       -       IP        Abstract Resource Management
                                                   Packages
                                                   H.248.63
                                                   ITU-T TSB at above address

0x00d0   ipocs   1       -       -       IP        IP layer octets count statistics
                                                   Package
                                                   H.248.61
                                                   ITU-T TSB at above address

0x00d1   cci     1       -       -       IP        Content of Communication Identity
                                                   Package
                                                   H.248.60
                                                   ITU-T TSB at above address

0x00d2   rsvp    1       0x00ca  1       IP        RSVP extension package
                                                   H.248.65
                                                   ITU-T TSB at above address

0x00d3   trm     1       0x0002  2       IP        GCP Transport Mode Indication
                                                   Package      
                                                   H.248.67
                                                   ITU-T TSB at above address

0x00d4   ipr     1       -       -       IP        IP Router Package
                                                   H.248.64
                                                   ITU-T TSB at above address

0x00d5   mri     1       -       -       IP        Media Resource Identification Package
                                                   H.248.66
                                                   ITU-T TSB at above address

0x00d6   rfs     1       -       -       IP        Range Format Support
                                                   Package
                                                   H.248.66
                                                   ITU-T TSB at above address

0x00d7   mrde    1       -       -       IP        Media Resource Description Expiry
                                                   Package
                                                   H.248.66
                                                   ITU-T TSB at above address

0x00d8   mbs     1       -       -       IP        Media Block Size Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00d9   mrs     1       -       -       IP        RTSP Media Resource Syntax
                                                   Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00da   rtspp   1       -       -       IP        RTSP Play Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00db   sp      1       -       -       IP        Signal Pause Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00dc   ddsa    1       -       -       IP        Data Delivery Speed Adjustment
                                                   Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00dd   prsa    1       -       -       IP        Playback Relative Scale Adjustment
                                                   Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00de   rtpinfo 1       -       -       IP        RTP Information Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00df   rtpint  1       -       -       IP        RTP Interleaving Package
                                                   H.248.66
                                                   ITU-T TSB at above address
0x00e0   ipra    1       -       -       IP        IP Realm Availability Package
                                                   H.248.41 Amendment 1
                                                   ITU-T TSB at above address
0x00e1   gih     1       -       -       IP        General IP Header QoS Octet 
                                                   Package
                                                   H.248.52 
                                                   ITU-T TSB at above address
0x00e2   ra      1       -       -       IP        Re-answer Package 
                                                   Package
                                                   H.248.62 
                                                   ITU-T TSB at above address

0x00e3   threegint  1    -       -       Final     3G Interface Type package
                                                   3GPP TS 29.232 v8.4.0
                                                   3GPP support office
                                                   MCC Dept
                                                   ETSI
                                                   650 Route des Lucioles
                                                   06921 SOPHIA ANTIPOLIS cedex
                                                   France
                                                   3gppcontact&etsi.org


Private packages 0x8000 to 0xffff.

Serial Text Name  Ver     Extends      Status*   Reference/Contact
------ ---------  ---   -----------    ------    -----------------
                        Ser     Ver
                        ------  ---

0x8000 eri_iuup     1      -     -     Final     Ericsson IU 
                                                 User Plane Package
                                                 <Fredrik.Aberg&lmf.ericsson.se>

0x8001 eri_ugcsd    1      -     -     Final     Ericsson UMTS and GSM Circuit
                                                 Switched Data Package
                                                 <Fredrik.Aberg&lmf.ericsson.se>

0x8002 eri__ecg     1      -     -     Final     Ericsson Tone Generator
                                                 Package
                                                 <Fredrik.Aberg&lmf.ericsson.se>

0x8003 eri_eltp     1      -     -     Final     Ericsson Line Test Package
                                                 <Fredrik.Aberg&lmf.ericsson.se>
                                                 Fredrik Abert
                                                 Oy L M Ericsson Ab
                                                 FIN-02420 Jorvas 
                                                 Finland

0x8004 adv3gtfoc    1      -     -     Final     Nokia Advanced TFO Package
                                                 Markus.Ahokangas&nokia.com
             
0x8005 nokiaiwf     1      -     -     Final     Nokia IWF Package
                                                 Markus.Ahokangas&nokia.com

0x8006 nokiarootc   1      -     -     Final     Nokia Root Package
                                                 Markus.Ahokangas&nokia.com

0x8007 threegtrace  1      -     -     Final     Nokia Trace Package
                                                 Markus.Ahokangas&nokia.com
                                                 Nokia Networks
                                                 PL 319, 90651 Oulu
                                                 Finland

0x8008 eri_v52cp    1    -       -     Final     Ericsson  V5.2 Layer
                                                 1 Control Package
                                                 jerker.zetterlund&ericsson.com

0x8009 eri_terminfo 4    -       -     Final     Ericsson Detailed
                                                 Termination Information
                                                 Package
                                                 jerker.zetterlund&ericsson.com
												 
0x800a nokiabcp      1   -       -     Final     Nokia Bearer Characteristics Package
                                                 jarkko.pyykkonen&nokia.com
                                                 Nokia Networks
                                                 PL/P.O. Box 300
                                                 90401 Oulu Finland

0x800b nokiatestcall 1   -       -     Final     Nokia Test Call Package 
                                                 jarkko.pyykkonen&nokia.com
                                                 Nokia Networks
                                                 PL/P.O. Box 300
                                                 90401 Oulu Finland

0x800c nokiaect     1   0x00a    1     Final     Nokia Extended Continuity Package
                                                 tapio.piippola&nokia.com
                                                 Nokia Networks
                                                 PL/P.O. Box 300
                                                 90401 Oulu Finland

0x800d nokiaipnwr    1   -       -     Final     Nokia IPnwR Package
                                                 tapio.piippola&nokia.com
                                                 Nokia Networks
                                                 PL/P.O. Box 300
                                                 90401 Oulu Finland

0x800e eri_trenh     1   -       -     Final     Ericsson Tracing Enhancements Package
                                                 jacky.wu&ericsson.com
                                                 Jacky Wu
                                                 Ericsson China R&D
                                                 200335 Shanghai
                                                 P.R.China

0x800f eri_wildtermid 1   -      -     Final     Ericsson Partially Wildcarded TerminationID Package
                                                 tony.knight&ericsson.com
                                                 Tony Knight
                                                 Ericsson Ltd.
                                                 Midleton Gate
                                                 Guildford Business Park
                                                 Guildford
                                                 Surrey
                                                 United Kingdom


* "Status" - whether the package is still being finalized 
("IP" = In Progress, with expected completion date) or is final.
 

Error Codes
-----------

Errors consist of an IANA registered error code and an explanatory 
string.  Sending the explanatory string is optional.  
Implementations are encouraged to append diagnostic information to 
the end of the string. 
    
When a MG reports an error to a MGC, it does so in an error 
descriptor.  An error descriptor consists of an error code and 
optionally the associated explanatory string.  The Reference for the
below error codes is [ITU-T Rec.H.248.8] unless otherwise noted.
    
The identified error codes are:                                References
------------------------------                                 ----------

        400 - Syntax error in message                          
        401 - Protocol Error 				       
        402 - Unauthorized                                     
        403 - Syntax error in transaction request              
        406 - Version Not Supported                            
        410 - Incorrect identifier                             
        411 - The transaction refers to an unknown ContextId   
        412 - No ContextIDs available 
        413 – Number of transactions in message exceeds maximum [H.248.8 (08/07)]
        421 - Unknown action or illegal combination of actions 
        422 - Syntax Error in Action                           
        430 - Unknown TerminationID                            
        431 - No TerminationID matched a wildcard              
        432 - Out of TerminationIDs or No TerminationID        
              available 
        433 - TerminationID is already in a Context            
        434 - Max number of Terminations in a Context exceeded 
        435 - Termination ID is not in specified Context
        440 - Unsupported or unknown Package                   
        441 - Missing Remote or Local Descriptor               
        442 - Syntax Error in Command                          
        443 - Unsupported or Unknown Command                   
        444 - Unsupported or Unknown Descriptor                
        445 - Unsupported or Unknown Property                  
        446 - Unsupported or Unknown Parameter                 
        447 - Descriptor not legal in this command             
        448 - Descriptor appears twice in a command            
        449 - Unsupported or Unknown Parameter or Property Value
        450 - No such property in this package                 
        451 - No such event in this package                    
        452 - No such signal in this package                   
        453 - No such statistic in this package                
        454 - No such parameter value in this package          
        455 - Property illegal in this Descriptor             
        456 - Property appears twice in this Descriptor 
        457 - Missing parameter in signal or event             
        458 - Unexpected Event/Request ID                         [H.248 Sub-series Implementors' Guide]
        459 - Invalid Combination of Metering Detection Events    [H.248.26]
        460 - Unable to set statistic on stream
        461 – Unsupported or Unknown Profile                      [H.248.18]
        471 - Implied Add for Multiplex failure                
        472 – Required Information Missing                        [H.248.8 (08/07)]
        473 – Conflicting Property Values                         [H.248.8 (08/07)]
        474 – Invalid SDP Syntax                                  [H.248.49]
        475 – Unable to pause the playout of the signal           [H.248.66]
        476 – Unable to adjust the data delivery speed of the     [H.248.66]
              Signal
        477 – Unable to adjust the playback relative scale of     [H.248.66]
              the signal
        500 - Internal software Failure in MG or MGC              [H.248.8 (08/07)]
        501 - Not Implemented                                  
        502 - Not ready.                                       
        503 - Service Unavailable                              
        504 - Command Received from unauthorized entity        
        505 - Transaction Request Received before a Service    
              Change Reply has been received
        506 - Number of Transaction Pendings Exceeded             [H.248.8 Amendment 1]
        510 - Insufficient resources           
        511 – Temporarily Busy                                    [H.248.8 (08/07)]                
        512 - Media Gateway unequipped to detect requested     
              Event 
        513 - Media Gateway unequipped to generate requested   
              Signals 
        514 - Media Gateway cannot send the specified          
              announcement 
        515 - Unsupported Media Type                           
        517 - Unsupported or invalid mode                      
        518 - Event buffer full                                
        519 - Out of space to store digit map                  
        520 - Digit Map undefined in the MG                            
        521 - Termination is "ServiceChangeing"                       
        522 - Functionality Requested in Topology Triple Not Supported
        526 - Insufficient bandwidth                           
        529 - Internal hardware failure in MG                  
        530 - Temporary Network failure                        
        531 - Permanent Network failure     
        532 - Audited Property, Statistic, Event or Signal
              does not exist
        533 - Response exceeds maximum transport PDU size
        534 - Illegal write or read only property
        540 - Unexpected initial hook state                            [ITU-T Rec. H.248.1] 
        541 – Unexpected Spare Bit State                               [H.248.33]
        542 - Command is not allowed on this termination
        543 – MGC requested event detection timestamp not supported    [H.248.8 (08/07)]
        581 - Does Not Exist                                   
        600 - Illegal syntax within an announcement specification      [H.248.9]
        601 - Variable type not supported                              [H.248.9]
        602 - Variable value out of range                              [H.248.9] 
        603 - Category not supported                                   [H.248.9]
        604 - Selector type not supported                              [H.248.9] 
        605 - Selector value not supported                             [H.248.9] 
        606 - Unknown segment ID                                       [H.248.9]
        607 - Mismatch between play specification and provisioned data [H.248.9] 
        608 - Provisioning error                                       [H.248.9] 
        609 - Invalid offset                                           [H.248.9] 
        610 - No free segment IDs                                      [H.248.9] 
        611 - Temporary segment not found                              [H.248.9]
        612 - Segment in use                                           [H.248.9]
        613 - ISP port limit overrun              <draft-ietf-megaco-naspkg-04.txt> 
        614 - No modems available                 <draft-ietf-megaco-naspkg-04.txt>
        615 - Calling number unacceptable         <draft-ietf-megaco-naspkg-04.txt>
        616 - Called number unacceptable          <draft-ietf-megaco-naspkg-04.txt>
        617 - Reserved for H.248.9 return code                         [H.248.9]
        618 - Reserved for H.248.9 return code                         [H.248.9]
        622 - Reserved for H.248.9 return code                         [H.248.9]
        623 - Reserved for H.248.9 return code                         [H.248.9]
        624 - Reserved for H.248.9 return code                         [H.248.9]
        625 - Reserved for H.248.9 return code                         [H.248.9 Amendment 1]
        626 - Reserved for H.248.9 return code                         [H.248.9 Amendment 1]
        627 - Reserved for H.248.9 return code                         [H.248.9 Amendment 1]
        628 - Reserved for H.248.9 return code                         [H.248.9 Amendment 1]
        629 - Reserved for H.248.9 return code                         [H.248.9 Amendment 1]

ServiceChange Reasons
---------------------

The ServiceChangeReason parameter specifies the reason why the 
ServiceChange has or will occur.  It consists of an alphanumeric 
token and, optionally, an explanatory string. 

The following ServiceChangeReasons are defined.  The Reference
for the below defined ServiceChange Reasons is [H.248.8] 
unless otherwise noted.

ServiceChangeReasons                                    References
--------------------                                    ----------
    
        900 Service Restored 
        901 Cold Boot 
        902 Warm Boot 
        903 MGC Directed Change 
        904 Termination malfunctioning 
        905 Termination taken out of service 
        906 Loss of lower layer connectivity (e.g. downstream sync) 
        907 Transmission Failure 
        908 MG Impending Failure 
        909 MGC Impending Failure 
        910 Media Capability Failure 
        911 Modem Capability Failure 
        912 Mux Capability Failure 
        913 Signal Capability Failure 
        914 Event Capability Failure 
        915 State Loss 
        916 Packages Change            [H.248.8 Amendment 1]
        917 Capabilities Change        [H.248.8 Amendment 1]		
        918 Cancel Graceful
        919 Warm Failover
        920 Cold Failover
 
Profile Names
-------------
Profile names are used by [RFC5125] or [ITU-T Rec. H.248.1] in 
the Servicechange request and reply commands. 
Profiles may be specified to further define how the H.248 protocol is 
used and what functionality is supported by an MG. The profile itself 
specifies what options associated with H.248 have been used. For example: 
transport and packages used for an application.

Profile names shall be in accordance with the registration rule in 
section 14.4 of H.248.1/Megaco. Profile names shall not exceed 64 
characters in length.

The IANA shall provide the list of profile names in alpabetic order.

Profile Name                          Version    Reference/Contact
------------------------------------  -------    -----------------
AuditProfiles                           01       Profile Package
                                                 ITU-T Rec. H.248.18 
                                                 ITU TSB

Ericsson*                               -        <Osmo.Seppala&lmf.ericsson.se>

ETSI_ARGW                               01       ETSI ES 283 002
                                                 ETSI Secretariat
                                                 650 Route des Lucioles
                                                 06921 Sophia Antipolis CEDEX, France
                                                 PTCCHelp&etsi.org

ETSI_BGF                                01       [ETSI ES 283 018]
                                                 ETSI Secretariat
                                                 650 Route des Lucioles
                                                 06921 Sophia Antipolis CEDEX, France
                                                 PTCCHelp&etsi.org

ETSI_GateControl                        01       ETSI 102 333
                                                 ETSI Secretariat
                                                 650 Route des Lucioles
                                                 06921 Sophia Antipolis CEDEX, France
                                                 PTCCHelp&etsi.org

etsi_tgw                                01       [ETSI ES 283 024]
                                                 ETSI Secretariat
                                                 650 Route des Lucioles
                                                 06921 Sophia Antipolis CEDEX, France
                                                 PTCCHelp&etsi.org

ETSIprof*                               -        ETSI Secretariat
                                                 650 Route des Lucioles
                                                 06921 Sophia Antipolis CEDEX
                                                 France
                                                 ptcchelp&etsi.org

IPPhone                                 01       IP Phone Profile
                                                 RFC 3054
                                                 peter_blatherwick&mitel.com
                                                 Mitel Networks
	 
nokiamgw*                               01       jarkko.pyykkonen&nokia.com
                                                 Nokia Networks
                                                 PL/P.O. Box 300
                                                 90401 Oulu Finland

NoProfile                               01       [RFC5125] or 
                                                 ITU-T Rec. H.248.1 
                                                 ITU TSB

References
----------
[ETSI ES 283 018] European Telecommunications Standards Institute, "Telecommunications
           and Internet converged Services and Protocols for Advanced Networking (TISPAN);
           Resource and Admission Control: H.248 Profile for controlling Border Gateway
           Functions (BGF) in the Resource and Admission Control Subsystem (RACS);
           Protocol specification"; ETSI ES 283 018 V1.1.1 (2006-06), June 2006,
           http://pda.etsi.org/pda/queryform.asp.

[ETSI ES 283 024] European Telecommunications Standards Institute, "Telecommunications
           and Internet converged Services and Protocols for Advanced Networking (TISPAN);
           PSTN/ISDN Emulation: H.248 Profile for controlling Trunking Media Gateways
           in the PSTN/ISDN Emulation Subsystem (PES);Protocol specification",
           ETSI ES 283 024 V1.1.1 (2006-06), June 2006, http://pda.etsi.org/pda/queryform.asp

[H.248 Sub-series Implementors' Guide] 
          http://www.itu.int/rec/T-REC-H.Imp248-200707-I/en 

[H.248.1v3] ITU-T, “Gateway control protocol: Version 3”, Recommendation 
          H.248.1v3 (09/05), September 2005,
          http://www.itu.int/rec/T-REC-H.248.1/en

[H.248.2] ITU-T, “Gateway control protocol: Facsimile, text conversation and call
          discrimination packages”, Recommendation H.248.2 (01/05), January 2005,
          http://www.itu.int/rec/T-REC-H.248.2/en

[H.248.3] ITU-T, “Gateway control protocol: User interface elements and actions
          packages”, Recommendation H.248.3 (11/00), November 2000,
          http://www.itu.int/rec/T-REC-H.248.3/en

[H.248.6] ITU-T, “Gateway control protocol: Dynamic Tone Definition package”,
          Recommendation H.248.6 (11/00), November 2000,
          http://www.itu.int/rec/T-REC-H.248.6/en

[H.248.7] ITU-T, “Gateway control protocol: Generic Announcement package”,
          Recommendation H.248.7 (11/00), November 2000,
          http://www.itu.int/rec/T-REC-H.248.7/en

[H.248.8 Amendment 1] ITU-T, “Gateway control protocol: Error code and service 
          change reason description”, Amendment 1 (03/04) to Recommendation H.248.8
          (02/02), March 2004,
          http://www.itu.int/rec/T-REC-H.248.8-200403-S!Amd1/en 

[H.248.8 (08/07)] ITU-T, “Gateway control protocol: Error code and service change
          reason description”, Recommendation H.248.8 (08/07), August 2007,
          http://www.itu.int/rec/T-REC-H.248.8/en

[H.248.9]  ITU-T, “Gateway control protocol: Advanced media server packages”,
          Recommendation H.248.9 (03/02), March 2002
          http://www.itu.int/rec/T-REC-H.248.9-200203-S/en 

[H.248.9  Amendment 1] ITU-T, “Gateway control protocol: Advanced media server 
          packages”, Amendment 1 (08/07) to Recommendation H.248.9 (2005), 
          August 2007,
          http://www.itu.int/rec/T-REC-H.248.9/en

[H.248.10] ITU-T, “Gateway control protocol: Media gateway resource congestion 
          handling package”,  Recommendation H.248.10 (11/00), November 2000,
          http://www.itu.int/rec/T-REC-H.248.10/en

[H.248.11] ITU-T, “Gateway control protocol: Media gateway overload control 
          Package”, Recommendation H.248.11 (11/02), November 2002,
          http://www.itu.int/rec/T-REC-H.248.11/en 

[H.248.12] ITU-T, “Gateway control protocol: H.248.1 packages for H.323 and 
          H.324 interworking”, Recommendation H.248.12 (01/07), January 2007, 
          http://www.itu.int/rec/T-REC-H.248.12/en

[H.248.12 Amendment 1] ITU-T, “Gateway control protocol: H.248.1 packages for H.323 
          and H.324 interworking: Extended H.324, H.245 command and H.245 indication
          packages  ”, Amendment 1 (11/02) to Recommendation H.248.12(01/01),
          November 2002, 
          http://www.itu.int/rec/T-REC-H.248.12/en

[H.248.12 Amendment 2] ITU-T, “Gateway control protocol: H.248.1 packages for H.323 
          and H.324 interworking: Transport mechanism”, Amendment 2 (08/07) to 
          Recommendation H.248.12 (01/01), August 2007, 
          http://www.itu.int/rec/T-REC-H.248.12/en

[H.248.13] ITU-T, “Gateway control protocol: Quality Alert Ceasing package”, 
          Recommendation H.248.13 (03/02), March 2002, 
          http://www.itu.int/rec/T-REC-H.248.13/en

[H.248.14] ITU-T, “Gateway control protocol: Inactivity timer package”, 
          Recommendation H.248.14 (03/02), March 2002,
          http://www.itu.int/rec/T-REC-H.248.14/en


[H.248.16] ITU-T, “Gateway control protocol: Enhanced digit collection packages 
          and procedures”, Recommendation H.248.16 (11/02), November 2002,
          http://www.itu.int/rec/T-REC-H.248.16/en 

[H.248.17] ITU-T, “Gateway control protocol: Line test packages”, Recommendation
          H.248.17 (11/02), November 2002,
          http://www.itu.int/rec/T-REC-H.248.17/en 		  		   

[H.248.18] ITU-T, “Gateway control protocol: Package for support of multiple 
          Profiles”, Recommendation H.248.18 (11/02), November 2002,
          http://www.itu.int/rec/T-REC-H.248.18/en 

[H.248.19] ITU-T, “Gateway control protocol: Decomposed multipoint control unit, 
          audio, video and data conferencing packages”, Recommendation H.248.19
          (03/04), March 2004,
          http://www.itu.int/rec/T-REC-H.248.19-200403-I/en 

[H.248.19 Amendment 1] ITU-T, "New Text Overlay Package and Border and Background
          Package", Recommendation H.248.19 (2004) Amendment 1 (05/06), May 2006,
          http://www.itu.int/rec/T-REC-H.248.19-200605-I!Amd1/en 

[H.248.19 Amendment 2] ITU-T, " Gateway Control Protocol: Decomposed multipoint 
          control unit, audio, video and data conferencing packages: 
          Floor Control Enhancements", Recommendation H.248.19 (2004) Amendment 2
          (xx/xx), Work in progress,
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/AVD-3332.zip

[H.248.21] ITU-T, “Gateway control protocol: Semi-permanent connection handling
          package”, Recommendation H.248.21 (03/04), March 2004, 
          http://www.itu.int/rec/T-REC-H.248.21/en

[H.248.23] ITU-T, “Gateway control protocol: Enhanced Alerting packages”, 
          Recommendation H.248.23 (01/05), January 2005, 
          http://www.itu.int/rec/T-REC-H.248.23/en

[H.248.24] ITU-T, “Gateway control protocol: Multi-frequency tone generation 
          and detection packages”, Recommendation H.248.24 (07/03), July 2003, 
          http://www.itu.int/rec/T-REC-H.248.23/en

[H.248.25] ITU-T, “Gateway control protocol: Basic CAS packages”, Recommendation
          H.248.25 (07/03), July 2003
          http://www.itu.int/rec/T-REC-H.248.25-200307-S/en 

[H.248.25 (01/07)] ITU-T, “Gateway control protocol: Basic CAS packages”,
          Recommendation H.248.25 (01/07), January 2007
          http://www.itu.int/rec/T-REC-H.248.25/en

[H.248.26 (07/03)] ITU-T, “Gateway control protocol: Enhanced analog lines packages”,
          Recommendation H.248.26 (07/03), July 2003, 
          http://www.itu.int/rec/T-REC-H.248.26-200307-S/en

[H.248.26 (01/05)] ITU-T, “Gateway control protocol: Enhanced analog lines packages”,
          Recommendation H.248.26 (01/2005), January 2005, 
          http://www.itu.int/rec/T-REC-H.248.26/en

[H.248.27] ITU-T, “Gateway control protocol: Supplemental tones packages”, 
          Recommendation H.248.27 (07/2003), July 2003, 
          http://www.itu.int/rec/T-REC-H.248.27/en

[H.248.28 (03/04)] ITU-T, “Gateway control protocol: International CAS packages”, 
          Recommendation H.248.28 (03/04), March 2004, 
          http://www.itu.int/rec/T-REC-H.248.28-200403-S/en

[H.248.28 (01/07)] ITU-T, “Gateway control protocol: International CAS packages”, 
          Recommendation H.248.28 (01/07), January 2007, 
          http://www.itu.int/rec/T-REC-H.248.28/en

[H.248.29] ITU-T, “Gateway control protocol: International CAS compelled register
          signalling packages”, Recommendation H.248.29 (01/05), January 2005, 
          http://www.itu.int/rec/T-REC-H.248.29/en

[H.248.30] ITU-T, “Gateway control protocol: RTCP extended performance metrics 
          packages”, Recommendation H.248.30 (01/07), January 2007, 
          http://www.itu.int/rec/T-REC-H.248.30/en

[H.248.31] ITU-T, “Gateway control protocol: Adaptive jitter buffer package”, 
          Recommendation H.248.31 (04/04), April 2004, 
          http://www.itu.int/rec/T-REC-H.248.31/en

[H.248.32] ITU-T, “Gateway control protocol: Detailed congestion reporting package”, 
          Recommendation H.248.32 (01/05), January 2005,
          http://www.itu.int/rec/T-REC-H.248.32/en

[H.248.33] ITU-T, “Gateway control protocol: PCM frame spare bit package”, 
          Recommendation H.248.33 (01/05), January 2005, 
          http://www.itu.int/rec/T-REC-H.248.33/en

[H.248.34] ITU-T, “Gateway control protocol: Stimulus analogue lines package”, 
          Recommendation H.248.34 (01/05), January 2005,
          http://www.itu.int/rec/T-REC-H.248.34/en

[H.248.35] ITU-T, “Gateway control protocol: Coin package”, 
          Recommendation H.248.35 (01/05), January 2005, 
          http://www.itu.int/rec/T-REC-H.248.35/en

[H.248.36] ITU-T, “Gateway control protocol: Hanging Termination Detection package”, 
          Recommendation H.248.36 (09/05), September 2005, 
          http://www.itu.int/rec/T-REC-H.248.36/en

[H.248.37] ITU-T, “Gateway control protocol: IP NAPT traversal package”, 
          Recommendation H.248.37 (09/05), September 2005, 
          http://www.itu.int/rec/T-REC-H.248.37/en

[H.248.37 Amendment 1] ITU-T, “Gateway control protocol: IP NAPT traversal package”, 
          Amendment 1 (xx/xx) to Recommendation H.248.37 (09/05), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-28.zip

[H.248.38] ITU-T, "Gateway control protocol: Base context package",
          Recommendation H.248.38 (05/06), May 2006,
          http://www.itu.int/rec/T-REC-H.248.38-200605-I/en

[H.248.40] ITU-T, “Gateway control protocol: Application Data Inactivity Detection
          Package”, Recommendation H.248.40 (01/07), January 2007,
          http://www.itu.int/rec/T-REC-H.248.40/en 

[H.248.41] ITU-T, "Gateway control protocol: IP domain connection package",
          Recommendation H.248.41 (05/06), May 2006,
          http://www.itu.int/rec/T-REC-H.248.41/en 

[H.248.41 Amendment 1] ITU-T, " Gateway control protocol: IP domain connection 
          package: IP Realm Availability Package ", Amendment 1 (xx/xx) to
          Recommendation H.248.41 (05/06), Work in progress,
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-37.zip

[H.248.42] ITU-T, "Gateway control protocol: DCME interworking package",
          Recommendation H.248.42 (05/2006), May 2006, 
          http://www.itu.int/rec/T-REC-H.248.42/en

[H.248.43] ITU-T, “Gateway Control Protocol: Packages for Gate Management and 
          Gate Control”, Recommendation H.248.43 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-66.zip

[H.248.44] ITU-T, “Multi-level Precedence and Pre-emption Package”, Recommendation
          H.248.44 (01/2007), January 2007,
          http://www.itu.int/rec/T-REC-H.248.44/en 

[H.248.45] ITU-T, "Gateway control protocol: MGC information package",
          Recommendation H.248.45, May 2006, 
          http://www.itu.int/rec/T-REC-H.248.45/en

[H.248.46] ITU-T, “Gateway Control Protocol: Connection Capability Control Package”, 
          Recommendation H.248.46 (01/07), January 2007, 
          http://www.itu.int/rec/T-REC-H.248.46/en

[H.248.47 Amendment 1] ITU-T, “Gateway control protocol: Statistic conditional
          reporting package”, Amendment 1 (xx/xx) to Recommendation H.248.46 
          (07/2003), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-58.zip

[H.248.48] ITU-T, “Gateway control protocol: RTCP HR QoS Statistics Packages”,
          Recommendation H.248.48 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-46.zip

[H.248.49] ITU-T, “Gateway control protocol: Session description protocol RFC 
          and capabilities packages”, Recommendation H.248.49 (08/07), August 2007,
          http://www.itu.int/rec/T-REC-H.248.49/en

[H.248.50] ITU-T, “Gateway Control Protocol: NAT Traversal Toolkit Packages”, 
          Recommendation H.248.50 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-67.zip

[H.248.51] ITU-T, “Gateway control protocol: Termination connection model package”, 
          Recommendation H.248.51 (08/07), August 2007, 
          http://www.itu.int/rec/T-REC-H.248.51/en

[H.248.52] ITU-T, “Gateway Control Protocol: QoS Support Packages”, 
          Recommendation H.248.52 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-29.zip

[H.248.53] ITU-T, “Gateway Control Protocol: Traffic Management Packages”, 
          Recommendation H.248.53 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-30.zip

[H.248.54] ITU-T, “Gateway control protocol: MPLS support package”, 
          Recommendation H.248.54 (08/07), August 2007, 
          http://www.itu.int/rec/T-REC-H.248.54/en

[H.248.55] ITU-T, “Gateway Control Protocol: Generic Pull Mode Package”, 
          Recommendation H.248.55 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-27.zip

[H.248.56] ITU-T, “Gateway control protocol: Packages for virtual private network
          support”, Recommendation H.248.56 (08/07), August 2007, 
          http://www.itu.int/rec/T-REC-H.248.56/en

[H.248.57] ITU-T, “Gateway Control Protocol: RTP Control Protocol Package”,
          Recommendation H.248.57 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-31.zip

[H.248.58] ITU-T, “Gateway Control Protocol: Packages for Application Level 
          H.248 Statistics”, Recommendation H.248.58 (xx/xxxx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-32.zip

[H.248.59] ITU-T, “Gateway control protocol: Event timestamp notification package”,
          Recommendation H.248.59 (08/07), August 2007, 
          http://www.itu.int/rec/T-REC-H.248.59/en

[H.248.60] ITU-T, “Gateway Control Protocol: Identification of Content of 
          Communication”, Recommendation H.248.CCI (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-34.zip

[H.248.61] ITU-T, “Gateway Control Protocol: Packages for Network Level 
          H.248 Statistics”, Recommendation H.248.IPOCS (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-33.zip

[H.248.62] ITU-T, “Gateway Control Protocol: Re-answer Package”, Recommendation 
          H.248.RA (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-85.zip


[H.248.63] ITU-T, “Gateway Control Protocol: Resource Management Packages”,
          Recommendation H.248.RESMAN (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/AVD-3336.zip

[H.248.64] ITU-T, “Gateway Control Protocol: IP Router Package”,
          Recommendation H.248.IPR (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-72.zip

[H.248.65] ITU-T, “Gateway Control Protocol: Support of the Resource Reservation
          Protocol”, Recommendation H.248.RSVP (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-64.zip

[H.248.66] ITU-T, “Gateway control protocol: Packages for RTSP and H.248 interworking”,
          Recommendation H.248.RTSP (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-73.zip

[H.248.67] ITU-T, “Gateway Control Protocol: GCP Transport Mode Indication Package”,
          Recommendation H.248.TRM (xx/xx), Work in progress, 
          http://ftp3.itu.int/av-arch/avc-site/2005-2008/0801_Seo/TD-71.zip

[ITU-T Rec. H.248.1] ITU-T Recommendation H.248 Media Gateway Control Protocol 
          http://www.itu.int/rec/T-REC-H.248.1/en

[ITU-T Rec. H.248.8] ITU-T Recommendation H.248 Annex L Error
          Codes and Service Change Reasons
          http://www.itu.int/rec/T-REC-H.248.8/en

[Q.1950] ITU Recommendation Q.1950 (11/2000)
          http://www.itu.int/rec/T-REC-Q.1950/en

[RFC5125]  T. Taylor, "Reclassification of RFC 3525 to Historic", RFC 5125, February 2008.


(created 2000-10)

[]