1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
|
Network Working Group F. Andreasen
Request for Comments: 5347 Cisco Systems
Category: Informational D. Hancock
CableLabs
October 2008
Media Gateway Control Protocol Fax Package
Status of This Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Abstract
This document defines a Media Gateway Control Protocol (MGCP) package
to support fax calls. The package allows for fax calls to be
supported in two different ways. The first one utilizes ITU-T
Recommendation T.38 for fax relay under the control of the Call
Agent. The second one lets the gateway decide upon a method for fax
transmission as well as handle the details of the fax call without
Call Agent involvement.
Andreasen & Hancock Informational [Page 1]
^L
RFC 5347 MGCP Fax Package October 2008
Table of Contents
1. Introduction ....................................................2
1.1. Conventions Used in This Document ..........................3
2. Fax Package Definition ..........................................3
2.1. LocalConnectionOptions .....................................3
2.1.1. T.38 Procedure (Strict or Loose) ....................6
2.1.2. Gateway Procedure ...................................8
2.1.3. Off Procedure .......................................8
2.1.4. Mode Operation ......................................8
2.1.5. Detecting a Fax Call ...............................10
2.1.6. Considerations for Determining Which
Procedures to Request ..............................11
2.2. Events and Signals ........................................13
2.2.1. Gateway Controlled Fax (gwfax) .....................13
2.2.2. No Special Fax Handling (nopfax) ...................14
2.2.3. T.38 Fax Relay (t38) ...............................14
2.3. Connection Parameters .....................................15
2.4. Negotiation of T.38 Parameters ............................16
2.5. Implementation Considerations .............................18
2.5.1. Media IP Address and Port for T.38 .................18
2.5.2. Case Sensitivity ...................................18
2.5.3. Boolean Indicator After T.38 Parameters ............19
3. Call Flow Examples .............................................19
3.1. Call Agent Controlled T.38 Strict .........................20
3.2. Multiple and Different Options ............................29
3.3. Interaction with SIP Endpoints ............................37
4. Security Considerations ........................................44
5. IANA Considerations ............................................44
6. Normative References ...........................................44
7. Informative References .........................................45
1. Introduction
This document defines a Media Gateway Control Protocol (MGCP)
[RFC3435] package that enables MGCP controlled gateways to support
fax calls. The package enables fax calls to be supported in two
different ways. The first one utilizes ITU-T Recommendation T.38
using either UDP Transport Layer (UDPTL) or TCP (see [T38]) for fax
relay under the control of the Call Agent. The second one lets the
gateway decide upon a method for fax transmission as well as handle
the details of the fax call without Call Agent involvement.
The fax package definition is provided in Section 2, and in Section 3
we provide three call flow examples showing how to use it. Security
considerations are found in Section 4, followed by the IANA
considerations and references.
Andreasen & Hancock Informational [Page 2]
^L
RFC 5347 MGCP Fax Package October 2008
1.1. Conventions Used in This Document
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14, RFC-2119
[RFC2119].
2. Fax Package Definition
A package is defined for fax. The package defines new
LocalConnectionOptions, events, and connection parameters as detailed
below:
Package Name: FXR
Package Version: 0
2.1. LocalConnectionOptions
A new Fax LocalConnectionOptions (LCO) parameter is defined for fax
handling. The Call Agent supplies this fax LCO to indicate the
desired fax handling procedure to the Media Gateway. The fax LCO
contains a list of desired fax handling procedures ordered by
preference, with the most desired procedure listed first. When the
parameter is explicitly included in a command, the gateway MUST be
able to use at least one of the listed procedures for the command to
succeed. Currently, the list can indicate one or more of the
following procedures (see Sections 2.1.1 to 2.1.4 for further details
on these):
* T.38 Strict:
Use T.38 [T38] with either UDPTL or TCP for fax relay and have the
Call Agent control it. Assuming the procedure can be used (see
Section 2.1.1), a switch to T.38 procedures will be initiated upon
fax detection, and a "t38(start)" event will be generated (see
Section 2.2). This mode requires an indication of T.38 support
from the remote side in order to be used, as described further in
Section 2.1.1.
* T.38 Loose:
Identical to T.38 Strict procedure, except that an indication of
T.38 support from the remote side is not required for the procedure
to be used.
* Off:
Do not invoke any special procedure for fax, except for echo
cancellation adjustment and possibly switching to another codec.
Andreasen & Hancock Informational [Page 3]
^L
RFC 5347 MGCP Fax Package October 2008
* Gateway:
Let the gateway control and decide how to handle fax calls without
Call Agent involvement. This includes the case where the gateway
does not do anything special for fax; hence, by definition this
procedure can always be supported. If the gateway invokes a
special procedure upon detection of fax, it will generate a
"gwfax(start)" event to inform the Call Agent of this (see Section
2.2). The Call Agent SHOULD then refrain from issuing potentially
conflicting commands to the gateway until the gateway ends its
special fax handling procedure.
A gateway that ends up not being able to invoke any special
procedure for fax will generate a "nopfax(start)" event (see
Section 2.2) upon detection of fax.
The set of possible values (i.e., procedures) for the fax LCO is
extensible. The prefix "x-", which indicates an optional extension,
and the prefix "x+", which indicates a mandatory extension, are
reserved for vendor-specific use.
In CreateConnection commands, the fax LCO value defaults to
"gateway". In ModifyConnection commands, the fax LCO value defaults
to its current value on the connection. Thus, if
LocalConnectionOptions are omitted or if the fax LCO is not included
in a ModifyConnection command, the previous fax LCO value for the
connection is retained without affecting the outcome of the command;
consequently, the gateway may now not apply any special procedure to
fax. If the Call Agent wants to ensure that a command succeeds only
when a fax procedure is applied, the command needs to include the fax
LCO explicitly.
As an example of this, assume that the CreateConnection command
successfully specified the use of "T.38 Strict", and a
ModifyConnection command is now received without the fax LCO but
with a RemoteConnectionDescriptor indicating no support for T.38.
In this case, the ModifyConnection command will succeed, but T.38
procedures will no longer be invoked upon fax detection (a
"nopfax" event will be generated). Had the Call Agent instead
included the fax LCO set to "T.38 Strict", the command would have
failed.
If multiple fax parameter values are provided, the gateway MUST
choose one of the procedures specified according to the order in
which they are supplied, except as follows:
Andreasen & Hancock Informational [Page 4]
^L
RFC 5347 MGCP Fax Package October 2008
1. If "gateway" would have been selected and it would have resulted
in no special procedure being applied, and
2. if there are procedures other than "off" that are specified after
"gateway" (e.g., "t38"),
then the gateway MUST use the most preferred of those subsequent
procedures that can be supported. If none of those subsequent
procedures can be supported, the gateway reverts to not invoking any
special procedure for fax. Please refer to Section 2.1.4 for further
details on determining which procedures can be supported.
The fax LCO parameter is encoded as the keyword "fx" (prefixed with
the package name per [RFC3435]), followed by a colon and then a
semicolon separated list of values, where T.38 Strict is encoded as
"t38", T.38 Loose is encoded as "t38-loose", gateway is encoded as
"gw", and off is encoded as "off".
The following example illustrates the use of PCMU or G.729 for audio
encoding, and T.38 Strict fax relay (preferred) or gateway control
for fax:
L: a:PCMU;G729, fxr/fx:t38;gw
It should be noted that MGCP allows the CreateConnection command to
omit both LocalConnectionOptions and RemoteConnectionDescriptor,
thereby letting the gateway decide upon the media parameters to use.
When the T.38 fax package is supported, the gateway could thus choose
to do either audio or T.38 fax relay in such cases. Most likely, the
Call Agent requires one or the other to be used, and hence it SHOULD
NOT omit both LocalConnectionOptions and RemoteConnectionDescriptor
in CreateConnection commands.
When auditing capabilities, the fax LCO may be returned with a
semicolon-separated list of supported fax handling parameters. The
values "t38", "t38-loose", "off", and "gw" MAY be omitted from such a
list as they are always implied. Gateways that implement additional
parameters SHOULD return these additional parameters when
capabilities are audited, as illustrated by the following example:
A: a:image/t38, fxr/fx:mypar, ...
In the following subsections, we provide additional detail on the
above-defined fax procedures.
Andreasen & Hancock Informational [Page 5]
^L
RFC 5347 MGCP Fax Package October 2008
2.1.1. T.38 Procedure (Strict or Loose)
When a gateway is instructed to use one of the T.38 procedures
(strict or loose), also known as Call Agent controlled T.38 mode, the
"m=" line in the Session Description Protocol (SDP) returned will not
indicate use of UDPTL-based or TCP-based T.38 (unless the gateway was
also instructed to use "image/t38" for the media stream). Any other
entity seeing this SDP will not know whether or not T.38 is supported
and hence whether it is safe to attempt a switch to T.38 upon fax
detection. To remedy this dilemma, capability information for T.38
(if supported) using the SDP Simple Capability Declaration extensions
[RFC3407] MUST be included. Other capability information is included
as well, regardless of whether the Call Agent authorized use of those
in the connection handling command. A subsequent attempt to actually
use these may of course not succeed, e.g., because the Call Agent LCO
does not allow them to be used. The following example illustrates
the RFC 3407 [RFC3407] capability descriptor--note the inclusion of
both current (audio) and latent (T.38) capabilities, as specified in
RFC 3407 [RFC3407]:
m=audio 3456 RTP/AVP 18
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 18
a=cdsc: 2 image udptl t38
For a list of T.38 related parameters to be included in the SDP,
please refer to T.38 Annex D [T38].
Upon fax detection, a gateway that has successfully been instructed
to use one of the T.38 procedures will:
1. Initiate the T.38 fax relay procedure and mute the media channel
in both the send and receive direction (unless the media channel
is already using T.38).
2. Generate a "t38(start)" event.
3. Await further instructions from the Call Agent in order to
initiate the actual media change (unless the media channel is
already using T.38).
The Call Agent instructs the gateway to perform the media change by
sending it a ModifyConnection command with "image/t38" listed as the
encoding method in the LocalConnectionOptions (receipt of a
ModifyConnection command without LocalConnectionOptions but with a
RemoteConnectionDescriptor containing an "m=" line with the MIME type
"image/t38" would achieve the same). Per the normal MGCP codec
negotiation procedures (see [RFC3435] Section 2.6), if a
Andreasen & Hancock Informational [Page 6]
^L
RFC 5347 MGCP Fax Package October 2008
RemoteConnectionDescriptor was included as well, it needs to include
an "m=" line with "image/t38" as an acceptable media format in order
for the command to succeed. The gateway may choose between the UDPTL
and TCP transport protocols at its own discretion subject to the
normal MGCP codec negotiation procedures (in practice, TCP-based
implementations are currently rare).
If a RemoteConnectionDescriptor was not included with the
ModifyConnection command sent to a gateway that initiated the T.38
procedure, it is possible (in fact likely), that the last received
RemoteConnectionDescriptor did not include an "m=" line listing
"image/t38" as an acceptable media format. In that case, the
endpoint cannot send T.38 media to the other side. The endpoint MUST
instead wait for an updated RemoteConnectionDescriptor that contains
"image/t38" as an acceptable media format and a supported transport
protocol (UDPTL or TCP). The T.38 fax procedure continues when an
acceptable RemoteConnectionDescriptor is received. An acceptable
RemoteConnectionDescriptor contains an "m=" line with the "image/t38"
MIME type (using the normal SDP syntax) and a supported transport
protocol (UDPTL or TCP). If the fax call fails (e.g., due to a fax
timeout) while waiting for either the Call Agent to instruct the
gateway to switch to "image/t38" or for an acceptable
RemoteConnectionDescriptor, a "t38(stop)" or a "t38(failure)" event
MUST be generated. When the T.38 procedure ends, a "t38(stop)" or
"t38(failure)" event MUST be generated.
Finally, the Call Agent may need to abort a T.38 procedure that is in
progress. This can for example be done when the remote side is
unable to switch to T.38, and a fallback to fax passthrough using an
audio codec is attempted. The Call Agent instructs the endpoint to
abort an in-progress T.38 procedure by use of the "off" fax LCO as
illustrated below:
L: fxr/fx:off
We now define "time t38init" as the point in time where the T.38
procedure was initiated, and "time t38abort" as the point in time
where the Call Agent aborts an in-progress T.38 procedure. If the
Call Agent at time t38abort instructs or enables the endpoint to
revert to one or more codecs that were in use just prior to time
t38init, the endpoint SHOULD use media stream parameters that mimic
the most recent LocalConnectionDescriptor issued before time t38init.
For example, IP-address and UDP port, payload formats used and their
payload type mapping, should all be the same as before time t38init.
This will enable the fallback to be as rapid as possible. A
LocalConnectionDescriptor is returned as usual, i.e., only if one or
Andreasen & Hancock Informational [Page 7]
^L
RFC 5347 MGCP Fax Package October 2008
more parameters changed since the last LocalConnectionDescriptor
issued (e.g., if a T.38 LCD was issued or a transport address in the
audio LCD was changed).
2.1.2. Gateway Procedure
A gateway using the gateway procedure, also known as Gateway
controlled mode, may initiate special fax handling upon detecting a
fax call. The details of this special fax handling are outside the
scope of this document. However, in order to use any special fax
handling, support for it MUST be negotiated with the other side by
passing and recognizing relevant parameters via the
LocalConnectionDescriptor and RemoteConnectionDescriptor (this
includes the use of RTP-based T.38). If the other side has not
indicated support for the special fax handling desired, the gateway
MUST NOT attempt to initiate it. When special fax handling is
initiated, a "gwfax(start)" event MUST be generated, thereby enabling
the Call Agent to differ between the Call Agent and gateway
controlled mode while still being informed about the actual change to
fax. When the special gateway handling of fax ends, a "gwfax(stop)"
or "gwfax(failure)" event MUST be generated.
2.1.3. Off Procedure
A gateway using the "off" procedure will not invoke any special fax
procedures, e.g., T.38, when detecting a fax. However, the gateway
may still adjust local echo cancellation and/or switch to an
alternative codec as needed. Also, a "nopfax(start)" event MUST be
generated; a corresponding "stop" event, however, will not.
Generating a "stop" event would imply that the gateway had to infer
when the fax call ends, which involves processing the media stream.
However, when using the "off" mode, such processing is not expected
to occur.
2.1.4. Mode Operation
For each of the above modes, the RemoteConnectionDescriptor provides
information on what procedure(s) the other side supports. The
following rules are used to determine which procedure to use:
1. Whatever the Call Agent specified in the Fax
LocalConnectionOptions for the current command MUST be adhered to.
If the gateway cannot satisfy any of the options, the command
fails (error code 532 -- unsupported value(s) in
LocalConnectionOptions is RECOMMENDED).
Andreasen & Hancock Informational [Page 8]
^L
RFC 5347 MGCP Fax Package October 2008
2. If both Fax LocalConnectionOptions and a
RemoteConnectionDescriptor are provided, the procedure selected
MUST be supported by both sides -- this is currently only an issue
for "T.38 Strict". A procedure can be satisfied by the remote
side if:
* the relevant MIME media type, e.g., "image/t38", is included in
the "m=" line in the RemoteConnectionDescriptor, or
* the relevant MIME media type is included as a capability (see
[RFC3407]) in the RemoteConnectionDescriptor.
If the gateway cannot select any of the procedures in the Fax
LocalConnectionOptions, the command fails (error code 532 is
RECOMMENDED). Note that "T.38 Loose", "gateway", and "off" -- by
definition -- can always be supported by an implementation that
supports this package, irrespective of what the
RemoteConnectionDescriptor indicates.
3. If the Call Agent did not include any Fax LocalConnectionOptions
or a RemoteConnectionDescriptor with the command, the gateway MUST
continue using whichever procedure it is currently using.
4. If the Call Agent did not include any Fax LocalConnectionOptions,
but a RemoteConnectionDescriptor was included, the gateway MUST
follow rule 2 in selecting a procedure. In so doing, the default
Fax LocalConnectionOptions, i.e., "gateway" in CreateConnection,
or the current value in ModifyConnection, MUST be used. In the
case of ModifyConnection, the outcome of the command does not
depend on the gateway being able to select one of these "default"
procedures (as described in Section 2.1). Note that this is not
an issue for the CreateConnection command, since the default value
can always be supported by definition.
5. A previously received RemoteConnectionDescriptor does not affect
what procedure can be selected. Only a RemoteConnectionDescriptor
supplied with the current command affects the procedure selection.
However, in order to send media of a given type (e.g.,
"image/t38"), the most recently received
RemoteConnectionDescriptor MUST include a corresponding media
line.
Andreasen & Hancock Informational [Page 9]
^L
RFC 5347 MGCP Fax Package October 2008
The following examples illustrate the use of the above rules:
Per rule 1, a gateway that only supports standard T.38 fax relay will
fail a command that only contains the fax option "mypar", whereas it
will succeed a command that contains "t38-loose", "gw", "off", or no
fax LCO. A command that only contained "t38", i.e., use of T.38 in
"strict" mode, may or may not succeed (depending on the
RemoteConnectionDescriptor).
A gateway supporting T.38 that receives a CreateConnection command
with the fax handling LCO set to "t38" and a
RemoteConnectionDescriptor with neither a T.38 capability nor a T.38
media stream will fail per rule 2. Had the fax handling LCO included
either "t38-loose", "gw" or "off", the command would have succeeded,
and any of the procedures included could have been selected.
Assume a gateway supporting T.38 has successfully executed a
CreateConnection command with fax handling set to "t38" (i.e.,
strict). If the gateway now receives a ModifyConnection command
without a fax handling LCO but with a RemoteConnectionDescriptor that
has neither a T.38 capability nor a media stream with "image/t38",
the command will succeed (since rule 1 has no effect in that case).
However, per rule 2 and 4, there will not be any T.38 procedure in
place. Had the Call Agent instead included a fax handling LCO set to
"t38" again, the command would have failed per rule 2.
Finally, it should be noted that a switch to T.38 can be initiated by
either one or both of the originating and terminating gateways and
hence implementations MUST be prepared to handle this. This includes
the case where both sides initiate the switch, which for example can
occur when the originating fax generates Calling Tone (CNG) and the
terminating fax detects V.21 fax preamble (see [T30]) before the
switch to T.38 has been performed on the terminating side.
2.1.5. Detecting a Fax Call
A fax call can be detected by several different means (e.g., V.21 fax
preamble, T.30 CNG tone, or V.8 signals) depending on the fax
transmission method being used. Implementations of this package MUST
at a minimum detect a fax call based on V.21 fax preamble.
Triggering based on T.30 CNG tone MAY be done; this is generally
considered acceptable for G3 and lower fax speeds. However, when
used with T.38 version 2 or earlier, it will impact V.34 high-speed
fax. The reason is that T.38 version 2 (and earlier) does not
support the V.8 ANSam and CM signals used with V.34 fax, and hence
the V.34 faxes will downspeed to G3 (14.400 bps) or lower when using
T.38 version 2 (or earlier). Also, a few rare cases of modems
Andreasen & Hancock Informational [Page 10]
^L
RFC 5347 MGCP Fax Package October 2008
generating T.30 CNG tones for non-fax calls have been reported; such
modems would generate a false trigger for fax. As a consequence of
the above, it is RECOMMENDED that implementations of this package
that support T.30 CNG-based fax detection provide a configuration
option to disable it for T.38 version 2 (or earlier).
2.1.6. Considerations for Determining Which Procedures to Request
It is important to understand the implications of using any one of
the above defined procedures. Furthermore, multiple alternative
procedures can be requested, however not all combinations make sense.
In this section, we elaborate on both of these issues.
Use of the T.38 Strict mode is ideal in an environment where it is
known that other endpoints generate RFC 3407 [RFC3407] capability
descriptions with T.38 fax relay information. If a
RemoteConnectionDescriptor without T.38 fax relay capabilities is
received in such an environment, it is known that the other side does
not support T.38, and hence an unsuccessful attempt to switch to T.38
(which in turn may lead to a failed fax call) can be avoided. If it
is not known whether other endpoints support the RFC 3407 [RFC3407]
capability descriptors, the trade-off is less clear. The advantage
is that a switch to T.38 will only be attempted if it is known that
the other side supports it, but endpoints that do not indicate
support for T.38 may still support it; however, T.38 will not be used
with these, which in turn may lead to unnecessary fax failures with
low-bandwidth codecs or lossy networks.
Use of the T.38 loose mode involves the same considerations as for
T.38 Strict, however the pros and cons are reversed. If a peer
endpoint does not support T.38, the T.38 loose mode will still
attempt to switch to T.38 (and fail), which in turn may lead to a
failed fax call. On the other hand, if the peer endpoint does not
support the RFC 3407 [RFC3407] capability descriptors, but the peer
endpoint does in fact support T.38, T.38 would still be used with
this mode.
In summary, there is no single good answer to the use of either T.38
Strict or T.38 loose mode; it depends on the capabilities of the
endpoints involved as well as the trade-off between potentially
letting fax calls fail due to lack of capability indications (where
T.38 is otherwise supported) versus potentially letting fax calls
fail due to an unsuccessful switch to T.38 (because T.38 in fact was
not supported). It should be noted that Call Agents may have means
beyond RFC 3407 [RFC3407] capability descriptors to determine if a
peer endpoint supports T.38 or not. For example, when SIP is used as
the signaling protocol with other peers (e.g., Call Agents or other
SIP devices), the SIP OPTIONS method can be used to learn whether
Andreasen & Hancock Informational [Page 11]
^L
RFC 5347 MGCP Fax Package October 2008
T.38 is supported. Also, if the Call Agent allows use of
high-bandwidth codecs with redundancy when support for T.38 is not
indicated, fax calls may still succeed without the use of T.38, even
in networks with non-negligible packet loss.
When the gateway controlled mode is selected, there will only be
special fax handling if the two peer endpoints support the same fax
handling method; note that the details of the actual method is
entirely up to the vendor. Also note that if the two peer endpoints
do not support the same method for fax handling or if the method is
not indicated in the SDP exchanged, there will be no special fax
handling in place. Furthermore, the Call Agent will not be aware
that this is the case until the fax transmission starts and a
"nopfax(start)" event is generated.
The off mode is straightforward; there will be no special procedure
in place for fax handling, except for the usual handling of echo
cancellation and possibly a change to a higher bandwidth codec.
Having looked at the individual procedures in more detail, we now
elaborate on some of the combinations of procedures that may be
requested:
* T.38 strict:
If the T.38 strict procedure is placed after the T.38 loose or the
off procedure (both of which can always be supported), it will not
be selected. Apart from this, it makes little sense to request
both T.38 strict and T.38 loose.
* T.38 loose:
The T.38 loose procedure can always be supported, so any procedure
specified after T.38 loose will not be selected.
* Gateway:
The gateway controlled procedure can always be supported. If the
gateway controlled procedure would have resulted in no special fax
procedure and further options (except off) are provided, those
procedures will be attempted. If neither of those procedures can
be supported, there will be no special fax procedure in place.
* Off:
The off procedure can always be supported. Any procedure specified
after this one will not be selected.
Andreasen & Hancock Informational [Page 12]
^L
RFC 5347 MGCP Fax Package October 2008
2.2. Events and Signals
The following events are defined in support of the above:
------------------------------------------------------------------
| Symbol | Definition | R | S Duration |
|---------|----------------------------|-----|---------------------|
| gwfax | Gateway controlled fax | x | |
| nopfax | No special fax handling | x | |
| t38 | T.38 fax relay | x | |
------------------------------------------------------------------
The definitions of the individual events are provided in the
following subsections.
2.2.1. Gateway Controlled Fax (gwfax)
The "gateway controlled fax" event occurs when the gateway handled
fax procedure either starts, stops, or fails. The event is encoded
as "gwfax", and the following event parameters, which apply to
ObservedEvents only, are defined:
* start:
Gateway controlled fax procedure was initiated. The Call Agent
SHOULD refrain from issuing media handling instructions to the
gateway until either a "gwfax(stop)" or "gwfax(failure)" event is
generated.
* stop:
Gateway controlled fax procedure ended and the gateway did not
detect any errors. Note that this does not necessarily imply a
successfully transmitted fax. It merely indicates that the gateway
controlled fax procedure has ended and the procedure itself did not
encounter any errors. Media parameters for the connection are as
before the gateway handled fax procedure started.
* failure:
The gateway controlled fax procedure ended abnormally. Some kind
of problem was encountered in the gateway controlled fax procedure,
and the procedure ended. Media parameters are as before the
gateway handled fax procedure started.
One of the above parameters will be present when the event is
reported. The "gwfax" event MAY be parameterized with additional
parameters in ObservedEvents, however it is RECOMMENDED that one of
the above parameters is the first parameter supplied. Unknown
parameters MUST be ignored.
Andreasen & Hancock Informational [Page 13]
^L
RFC 5347 MGCP Fax Package October 2008
The following example illustrates the encoding of the "gwfax" event:
O: fxr/gwfax(start)
O: fxr/gwfax(stop, foobar)
2.2.2. No Special Fax Handling (nopfax)
The "no special fax handling" event occurs when there is no special
fax handling procedure in place and a fax call is detected. This can
happen either because no special fax handling procedure was requested
(including "off") or negotiation resulted in no special fax handling
procedure being supported. The event is encoded as "nopfax", and the
following event parameter, which applies to ObservedEvents only, is
defined:
* start:
No special fax handling procedure is in place, however a fax call
is now detected. The Call Agent may have to issue further commands
in order to ensure a successful fax call (e.g., switch to another
codec).
The above parameter will be present when the event is reported. The
"nopfax" event MAY be parameterized with additional parameters on
ObservedEvents, however it is RECOMMENDED that the above parameter is
the first parameter supplied. Unknown parameters MUST be ignored.
Note that this event currently cannot be parameterized with "stop" or
"failure" as it only detects the beginning of a fax call.
The following example illustrates the encoding of the "nopfax" event:
O: fxr/nopfax(start)
2.2.3. T.38 Fax Relay (t38)
The "T.38 fax relay" event occurs when one of the T.38 fax relay
procedures (strict or loose) either starts, stops, or fails. The
event is encoded as "t38", and the following event parameters, which
apply to ObservedEvents only, are defined:
* start:
A fax call was detected on the endpoint and the Call Agent
controlled T.38 fax relay procedure was initiated. The Call Agent
SHOULD modify each side of the connection to start using the
"image/t38" media format, unless they already do. Note that, as
long as use of the Call Agent controlled T.38 relay procedure is in
effect, the event will be generated upon fax call detection,
irrespective of the current encoding method on any connections on
the endpoint (incl. "image/t38"). The "t38(start)" event MUST be
Andreasen & Hancock Informational [Page 14]
^L
RFC 5347 MGCP Fax Package October 2008
generated at most once by the endpoint per fax call, regardless of
whether or not it is requested again in a subsequent requested
events list.
* stop:
Call Agent controlled T.38 fax relay procedure ended and the
gateway did not detect any errors. Note that this does not
necessarily imply a successfully transmitted fax. It merely
indicates that the Call Agent controlled T.38 fax relay procedure
has ended and the procedure itself did not encounter any errors.
The Call Agent may want to modify the media parameters for each
side of the connection. Note that, in contrast to the gateway
controlled fax procedure case, media parameters such as codecs do
not automatically revert to their values before the start of the
fax call; however, echo cancellation and silence suppression do per
the procedures in [RFC3435] Section 2.3.5. The "t38(stop)" event
MUST NOT be generated unless a corresponding "t38(start)" event for
the fax call in question was generated earlier.
* failure:
Call Agent controlled T.38 fax relay procedure ended abnormally.
Some kind of problem in the Call Agent controlled T.38 fax relay
procedure was encountered, and the procedure ended. The Call Agent
may want to modify the media parameters for each side of the
connection. Note that, in contrast to the gateway controlled fax
procedure case, media parameters such as codecs do not
automatically revert to their state before the start of the fax
call; however, echo cancellation and silence suppression do per the
procedures in [RFC3435] Section 2.3.5. The "t38(failure)" event
MUST NOT be generated unless a corresponding "t38(start)" event for
the fax call in question was generated earlier.
One of the above parameters will be present when the event is
reported. The "t38" event MAY be parameterized with additional
parameters, however it is RECOMMENDED that one of the above
parameters is the first parameter supplied. Unknown parameters MUST
be ignored.
The following example illustrates the encoding of the "t38" event:
O: fxr/t38(start)
O: fxr/t38(stop, foobar)
2.3. Connection Parameters
The connection parameters for the connection, that measures packets
and octets sent and received, MUST include packets and octets for fax
handling as well. Interarrival jitter and average transmission delay
Andreasen & Hancock Informational [Page 15]
^L
RFC 5347 MGCP Fax Package October 2008
calculation however MAY NOT be performed while fax is in progress,
e.g., if T.38 is used. In such cases, the interarrival jitter and
average transmission delay calculations are simply suspended until
calculations can resume, e.g., by changing back to an RTP-based media
stream.
In addition to these connection parameters, the fax package defines
the following connection parameters, which gateways MAY support:
Number of fax pages sent (PGS):
The cumulative number of fax pages sent by the endpoint for the
life of the connection. The parameter is encoded as "PGS", and
the value supplied is a string of up to nine decimal digits.
Number of fax pages received (PGR):
The cumulative number of fax pages received by the endpoint for
the life of the connection. The parameter is encoded as "PGR",
and the value supplied is a string of up to nine decimal digits.
The following example illustrates the use of these parameters:
P: FXR/PGS=3, FXR/PGR=0, PS=1245, OS=62345, ...
2.4. Negotiation of T.38 Parameters
T.38 Annex D [T38] defines a number of T.38 parameters that can be
negotiated in the SDP. Currently, T.38 does not specify procedures
for how each of these parameters is negotiated or in particular
whether each side has to use the same value. Therefore, we
considered adding such definitions and procedures here. However, it
is expected that T.38 will rectify the above, which could lead to
conflicting definitions and procedures. To avoid that, we instead
assume the existence of an offer/answer [RFC3264] section for T.38,
where T.38 Annex D parameters are classified as either declarative or
negotiated, and we then provide guidelines for how to map such
definitions and procedures to the MGCP fax package defined here.
MGCP does not specify use of the offer/answer model but instead
operates with the concept of connection handling commands (e.g.,
CreateConnection and ModifyConnection) that may include a
RemoteConnectionDescriptor (SDP) and in turn may generate a
LocalConnectionDescriptor (SDP) in their response.
Andreasen & Hancock Informational [Page 16]
^L
RFC 5347 MGCP Fax Package October 2008
When an MGCP endpoint receives a CreateConnection command without a
RemoteConnectionDescriptor, it should follow the corresponding T.38
procedures for generating an initial offer and return the resulting
SDP in its LocalConnectionDescriptor.
When an MGCP endpoint receives a CreateConnection command with a
RemoteConnectionDescriptor, it should follow the corresponding T.38
procedures for receiving an initial offer and generating an answer to
it. The resulting SDP is returned in the LocalConnectionDescriptor.
When an MGCP endpoint receives a ModifyConnection command with a
RemoteConnectionDescriptor, it cannot determine whether this
corresponds to an answer to an initial offer or to a new offer. This
is not an issue for declarative parameters since they can be
specified independently in either direction. Negotiated parameters,
however, require some consideration:
When an offerer receives an answer to a previous offer, the
negotiation has completed and the parameters negotiated can no longer
be changed with this offer/answer exchange. The negotiated
parameters may be subject to certain validation checks. Conversely,
when an answerer receives an offer, the negotiation is open and the
answerer may change some of the offered negotiated parameters. Since
the MGCP endpoint does not know which situation it is in, it cannot
perform the "offerer" validation checks. Likewise, in order to
ensure that any required negotiation actually takes place, it needs
to process an incoming SDP as an offer. If the SDP in fact does
correspond to an offer, then this is obviously correct behavior.
However, if the SDP corresponds to an answer, and one or more
negotiated parameters did change, then this will result in a new SDP.
The Call Agent may or may not contain sufficient intelligence to
determine whether or not this new SDP needs to result in another
offer/answer exchange.
For example, if the initial offer (in response to a
CreateConnection without SDP) contained fax version 2, and the
answer (in response to a CreateConnection with SDP) contained fax
version 0, then the corresponding ModifyConnection command (with
SDP) will result in an updated SDP with fax version also set to
zero. If this was the only change in the updated SDP, a new
offer/answer exchange would not be needed. Note that this example
does not imply that it is generally considered a good idea for
Call Agents to parse SDP in order to determine whether or not new
offer/answer exchanges are needed.
Finally, a ModifyConnection without SDP that generates an SDP needs
to be considered. The SDP generated may either correspond to an
initial offer/answer exchange or a subsequent offer/answer exchange.
Andreasen & Hancock Informational [Page 17]
^L
RFC 5347 MGCP Fax Package October 2008
The endpoint should generate SDP as if it was part of a subsequent
offer/answer exchange. If the Call Agent does not desire such
semantics, it can simply create a new connection instead.
2.5. Implementation Considerations
2.5.1. Media IP Address and Port for T.38
When an endpoint is instructed to change to or from T.38 for a media
stream, it SHOULD continue using the same IP address and port the
media stream is currently using, since this will minimize any Quality
of Service, Network Address Translator (NAT), and Firewall
interactions from the change. However, if an endpoint has a good
reason, it MAY choose not to follow this recommendation.
When an endpoint uses the same port for RTP audio and T.38 with
either UDPTL or TCP, packets of one type (e.g., T.38) may be received
while expecting packets of another type (RTP audio). Since there is
explicit signaling to indicate which type is expected at any given
point in time, this does not introduce any new problems. In other
words, the receiver does not operate as a demultiplexer with a need
to determine if a given packet received is an RTP audio packet or a
T.38 UDPTL/TCP packet. The receiver simply processes incoming
packets as usual. If T.38 packets are expected, then incoming
packets are validated against T.38, and if RTP audio packets are
expected, then incoming packets are validated against RTP.
2.5.2. Case Sensitivity
IANA has registered the uppercase string "UDPTL" as the transport
protocol identifier to be used for UDP-based T.38. However, the
examples provided in Recommendation T.38, as well as most (if not
all) current implementations, use the lowercase string "udptl"
instead. Implementations conforming to this package SHOULD generate
the lowercase string "udptl" and accept the lowercase, uppercase, and
mixed upper/lowercase strings as being equivalent.
The attribute "T38MaxBitRate" was once incorrectly registered with
IANA as "T38maxBitRate" (lower-case "m"). In accordance with T.38
examples and common implementation practice, the form "T38MaxBitRate"
SHOULD be generated by implementations conforming to this package.
In general, it is RECOMMENDED that implementations of this package
accept lowercase, uppercase, and mixed upper/lowercase encodings of
all the T.38 attributes.
Andreasen & Hancock Informational [Page 18]
^L
RFC 5347 MGCP Fax Package October 2008
2.5.3. Boolean Indicator After T.38 Parameters
Some implementations incorrectly use a colon (':') followed by a
number (zero or one) after the attributes T38FaxFillBitRemoval,
T38FaxTranscodingMMR, and T38FaxTranscodingJBIG. Implementations
that receive such erroneous encodings MAY interpret the value ":0" as
lack of support for the option and all other values as support for
the option.
3. Call Flow Examples
In this section, we provide three example call flows. The first one
illustrates a T.38 fax call under Call Agent control on both the
originating and terminating side. The second one illustrates the use
of multiple and different options on the two sides. The third one
illustrates the interaction with a SIP endpoint.
Andreasen & Hancock Informational [Page 19]
^L
RFC 5347 MGCP Fax Package October 2008
3.1. Call Agent Controlled T.38 Strict
In this example, both sides are under strict T.38 Call Agent control.
We assume the originating and terminating Call Agents communicate via
the Session Initiation Protocol (SIP) [RFC3261]. Furthermore, the
originating fax machine does not generate CNG tone, which is typical
of early (i.e., pre-1993) fax machines.
------------------------------------------------------------------
| #| GW-o | CA-o | CA-t | GW-t |
|==|===============|===============|===============|===============|
| 1| <-|CRCX | | |
| 2| 200(sdp-o)|-> | | |
| 3| | INVITE(sdp-o)|-> | |
| 4| | | CRCX(sdp-o)|-> |
| 5| | | <-|200 (sdp-t) |
| 6| | <-|200(sdp-t) | |
| 7| <-|MDCX(sdp-t) | | |
| 8| 200|-> | | |
|--|---------------|---------------|---------------|---------------|
| 9| | | | <- ANS/ |
| | | | | T.30 CED |
|10| | | | <- V.21 fax |
| | | | | preamble |
|11| | | <-|NTFY(t38 start)|
|12| | | 200|-> |
|13| | | MDCX(t38)|-> |
|14| | | <-|200(sdp-t2) |
|15| | <-|INVITE(sdp-t2) | |
|16| <-|MDCX(sdp-t2) | | |
|17| 200(sdp-o2)|-> | | |
|18| | 200(sdp-o2)|-> | |
|19| | | MDCX(sdp-o2)|-> |
|20| | | <-|200 |
|21| V.21 fax -> | | | |
| | preamble | | | |
|22|NTFY(t38 start)|-> | | |
|23| <-|200 | | |
|24| <-|RQNT(T38 event)| | |
|25| 200|-> | | |
|--|---------------|---------------|---------------|---------------|
|26| | | | (fax ends) |
|27| | | <-|NTFY(t38 stop) |
|28| | | 200|-> |
|29|NTFY(t38 stop) |-> | | |
|30| <-|200 | | |
------------------------------------------------------------------
Andreasen & Hancock Informational [Page 20]
^L
RFC 5347 MGCP Fax Package October 2008
Step 1:
The Call Agent issues a CreateConnection command to the gateway,
instructing it to use PCMU media encoding and to use the strict Call
Agent controlled T.38 procedure. Consequently, the Call Agent asks
the gateway to notify it of the "t38" event:
CRCX 1000 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
L: a:PCMU, fxr/fx:t38
M: recvonly
R: fxr/t38
X: 1
Step 2:
The gateway acknowledges the command and includes SDP with codec
information and RFC 3407 [RFC3407] capability information:
200 1000 OK
I:1
v=0
o=- 25678 753849 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=audio 3456 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Step 3:
The originating Call Agent sends a SIP INVITE message with the SDP to
the terminating Call Agent.
Andreasen & Hancock Informational [Page 21]
^L
RFC 5347 MGCP Fax Package October 2008
Step 4:
The terminating Call Agent issues a CreateConnection command to the
terminating gateway, instructing it to use PCMU media encoding and to
use the strict Call Agent controlled T.38 procedure. Consequently,
the Call Agent asks the gateway to notify it of the "t38" event:
CRCX 2000 ds/ds1-1/2@gw-t.example.net MGCP 1.0
C: 2
L: a:PCMU, fxr/fx:t38
M: sendrecv
R: fxr/t38
X: 20
v=0
o=- 25678 753849 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=audio 3456 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Step 5:
The terminating gateway supports T.38, and the
RemoteConnectionDescriptor included indicates that the other side
supports T.38 as well, so the strict T.38 Call Agent controlled
procedure requested can be used. The terminating gateway sends back
a success response with its SDP, which also includes capability
information:
200 2000 OK
I:2
v=0
o=- 25678 753849 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=audio 1296 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Andreasen & Hancock Informational [Page 22]
^L
RFC 5347 MGCP Fax Package October 2008
Step 6:
The terminating Call Agent sends back a SIP 200 OK response to the
originating Call Agent, which in turn sends a SIP ACK (not shown).
Step 7:
The originating Call Agent in turn sends a ModifyConnection command
to the originating gateway:
MDCX 1001 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
I: 1
M: sendrecv
v=0
o=- 25678 753849 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=audio 1296 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
The ModifyConnection command does not repeat the
LocalConnectionOptions sent previously. As far as fax handling is
concerned, the gateway therefore attempts to continue using the
current fax handling procedure, i.e., strict Call Agent controlled
T.38. Since the capability information indicates the other side
supports T.38, the gateway will in fact be able to use the strict
Call Agent controlled T.38 procedure. Had there not been any support
for T.38 in the RemoteConnectionDescriptor, then this command would
still have succeeded, however there would be no special fax handling
procedure (since strict mode could not be supported).
Step 8:
The gateway acknowledges the command. At this point, a call is
established using PCMU encoding, and if a fax call is detected, the
Call Agent controlled T.38 procedure will be initiated.
Andreasen & Hancock Informational [Page 23]
^L
RFC 5347 MGCP Fax Package October 2008
Steps 9-11:
A fax call now occurs. The T.30 CED tone (a.k.a. V.25 ANS) is sent
-- in this case, it is simply passed through the current PCMU
encoding. Since both fax and modem calls can start with this
sequence, it is not possible to determine that this is a fax call
until step 10, where the V.21 fax preamble is detected.
The gateway was instructed to apply the Call Agent controlled T.38
procedure for fax calls, so it begins to mute audio, generates the
"t38(start)" event, and notifies the Call Agent:
NTFY 2500 ds/ds1-1/2@gw-t.example.net MGCP 1.0
O: fxr/t38(start)
X: 20
Step 12:
The Call Agent acknowledges the Notify command:
200 2500 OK
Step 13:
The Call Agent then instructs the terminating gateway to use the
"image/t38" MIME type instead:
MDCX 2002 ds/ds1-1/2@gw-t.example.net MGCP 1.0
C: 2
I: 2
L: a:image/t38
R: fxr/t38
X: 21
Andreasen & Hancock Informational [Page 24]
^L
RFC 5347 MGCP Fax Package October 2008
Step 14:
The gateway changes to T.38 and sends back a success response with
updated SDP:
200 2002 OK
v=0
o=- 25678 753850 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=image 1296 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Note that since the gateway's current RemoteConnectionDescriptor (as
opposed to the LocalConnectionDescriptor returned here) does not list
"image/t38" as a valid encoding method, the terminating gateway is
still muting the media and is now waiting for an updated
RemoteConnectionDescriptor with "image/t38".
Step 15:
The terminating Call Agent sends a re-INVITE to the originating Call
Agent with the updated SDP.
Step 16:
The originating Call Agent then sends a ModifyConnection command to
the originating gateway:
MDCX 1003 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
I: 1
v=0
o=- 25678 753850 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=image 1296 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Andreasen & Hancock Informational [Page 25]
^L
RFC 5347 MGCP Fax Package October 2008
Step 17:
The originating gateway changes to T.38 and sends back a success
response with updated SDP:
200 1003 OK
v=0
o=- 25678 753850 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=image 3456 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Step 18:
The originating Call Agent sends a SIP 200 OK response with the
updated SDP to the terminating Call Agent, which in turn sends a SIP
ACK (not shown).
Step 19:
The terminating Call Agent sends a ModifyConnection with the updated
SDP to the terminating gateway:
MDCX 2003 ds/ds1-1/2@gw-t.example.net MGCP 1.0
C: 2
I: 2
v=0
o=- 25678 753850 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=image 3456 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Andreasen & Hancock Informational [Page 26]
^L
RFC 5347 MGCP Fax Package October 2008
Step 20:
The terminating gateway sends back a success response:
200 2003 OK
Since the terminating gateway now has a RemoteConnectionDescriptor
with "image/t38" as valid media, it can start exchanging T.38 with
the originating gateway.
Steps 21, 22:
The originating endpoint detects V.21 fax preamble. Even though the
endpoint is already using "image/t38" for media, it generates a
"t38(start)" event and notifies the Call Agent.
NTFY 3500 ds/ds1-1/1@gw-o.example.net MGCP 1.0
O: fxr/t38(start)
X: 1
Steps 23, 24:
The Call Agent acknowledges the Notify command, then issues a new
request for notification of the "t38" event.
200 3500 OK
.
RQNT 1004 ds/ds1-1/1@gw-o.example.net MGCP 1.0
R: fxr/t38
X: 2
Step 25:
The gateway acknowledges the command.
200 1004 OK
Steps 26, 27:
When the fax ends, a "t38(stop)" event is generated by the
terminating endpoint, which is notified to the Call Agent:
NTFY 2501 ds/ds1-1/2@gw-t.example.net MGCP 1.0
O: t38(stop)
X: 21
Andreasen & Hancock Informational [Page 27]
^L
RFC 5347 MGCP Fax Package October 2008
Step 28:
The Call Agent acknowledges the Notify command:
200 2501 OK
Step 29:
The originating endpoint also generates a "t38(stop)" event, which is
notified to the Call Agent:
NTFY 3502 ds/ds1-1/1@gw-o.example.net MGCP 1.0
O: t38(stop)
X: 2
Step 30:
The Call Agent acknowledges the Notify command:
200 3502 OK
The fax call is now over. The Call Agent may now decide to change
back to a voice codec, delete the connection, or do something
different.
Andreasen & Hancock Informational [Page 28]
^L
RFC 5347 MGCP Fax Package October 2008
3.2. Multiple and Different Options
In this example, the originating gateway is instructed to use the
gateway procedure, whereas the terminating gateway is given a choice
between the gateway procedure and the strict t38 procedure.
Furthermore, the originating fax machine is generating CNG tone.
------------------------------------------------------------------
| #| GW-o | CA-o | CA-t | GW-t |
|==|===============|===============|===============|===============|
| 1| <-|CRCX | | |
| 2| 200(sdp-o)|-> | | |
| 3| | INVITE(sdp-o)|-> | |
| 4| | | CRCX(sdp-o)|-> |
| 5| | | <-|200 (sdp-t) |
| 6| | <-|200(sdp-t) | |
| 7| <-|MDCX(sdp-t) | | |
| 8| 200|-> | | |
|--|---------------|---------------|---------------|---------------|
| 9| CNG ->| | | |
|10| | | |<- ANS/T.30 CED|
|11| | | |<- V.21 fax |
| | | | | preamble |
|12| | | <-|NTFY(t38 start)|
|13| | | 200|-> |
|14| | | MDCX(t38)|-> |
|15| | | <-|200(sdp-t2) |
|16| | <-|INVITE(sdp-t2) | |
|17| <-|MDCX(sdp-t2) | | |
|18| 200(sdp-o2)|-> | | |
|19| | 200(sdp-o2)|-> | |
|20| | | MDCX(sdp-o2)|-> |
|21| | | <-|200 |
|--|---------------|---------------|---------------|---------------|
|22| | | | (fax ends) |
|23| | | <-|NTFY(t38 stop) |
|24| | | 200|-> |
------------------------------------------------------------------
Andreasen & Hancock Informational [Page 29]
^L
RFC 5347 MGCP Fax Package October 2008
Step 1:
The Call Agent issues a CreateConnection command to the gateway,
instructing it to use PCMU media encoding and to use the gateway
procedure. Consequently, the Call Agent asks the gateway to notify
it of the "gwfax" event:
CRCX 1000 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
L: a:PCMU, fxr/fx:gw
M: recvonly
R: fxr/gwfax
X: 1
Step 2:
The gateway acknowledges the command and includes SDP with codec
information and capability information:
200 1000 OK
I:1
v=0
o=- 25678 753849 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=audio 3456 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
a=X-FaxScheme: 123
We assume the gateway supports some other fax scheme, and it
indicates this by including an attribute "X-FaxScheme: 123".
Step 3:
The originating Call Agent sends a SIP INVITE message with the SDP to
the terminating Call Agent.
Andreasen & Hancock Informational [Page 30]
^L
RFC 5347 MGCP Fax Package October 2008
Step 4:
The terminating Call Agent issues a CreateConnection command to the
terminating gateway, instructing it to use PCMU media encoding and to
use either the gateway procedure or the strict Call Agent controlled
T.38 procedure. Consequently, the Call Agent asks the gateway to
notify it of both the "gwfax" and "t38" events:
CRCX 2000 ds/ds1-1/2@gw-t.example.net MGCP 1.0
C: 2
L: a:PCMU, fxr/fx:gw;t38
M: sendrecv
R: fxr/t38, fxr/gwfax
X: 20
v=0
o=- 25678 753849 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=audio 3456 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
a=X-FaxScheme: 123
Step 5:
The terminating gateway does not support any special gateway fax
handling; however, it does support T.38, and the
RemoteConnectionDescriptor included indicates that the other side
supports T.38 as well, so the strict T.38 Call Agent controlled
procedure requested can be honored. The terminating gateway sends
back a success response with its SDP, which also includes capability
information:
200 2000 OK
I:2
v=0
o=- 25678 753849 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=audio 1296 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Andreasen & Hancock Informational [Page 31]
^L
RFC 5347 MGCP Fax Package October 2008
Step 6:
The terminating Call Agent sends back a SIP 200 OK response to the
originating Call Agent, which in turn sends a SIP ACK (not shown).
Step 7:
The originating Call Agent in turns sends a ModifyConnection command
to the originating gateway:
MDCX 1001 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
I: 1
M: sendrecv
v=0
o=- 25678 753849 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=audio 1296 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
The ModifyConnection command does not repeat the
LocalConnectionOptions sent previously. As far as fax handling is
concerned, the gateway therefore attempts to continue using the
current fax handling, i.e., the gateway procedure. The SDP
information returned however does not indicate support for the "X-
FaxScheme: 123", and hence the originating gateway will not invoke
any special fax handling procedure for this call.
Step 8:
The gateway acknowledges the command. At this point, a call is
established using PCMU encoding, and if a fax call is detected, no
special fax handling procedure will occur.
Andreasen & Hancock Informational [Page 32]
^L
RFC 5347 MGCP Fax Package October 2008
Steps 9-12:
A CNG tone is generated by the originating fax, thereby indicating a
fax call. If the gateway was using either of the T.38 modes, or if
it had negotiated support for a special gateway handling procedure
with the other side, a "t38(start)" or "gwfax(start)" event would now
have been generated and the switch to T.38 (or special gateway
handling) could start. However, since the negotiation with the
terminating gateway resulted in the originating gateway not doing
anything special for fax, no such event is generated. Instead, the
"nopfax(start)" event is now generated, but since the Call Agent has
not requested this event, it is not detected and hence not reported
to the Call Agent. Consequently, the CNG tone is simply passed
through the current PCMU encoding without the (originating) Call
Agent being aware of the fax call.
Subsequently, the T.30 CED tone (a.k.a. V.25 ANS) occurs -- in this
case, it is also simply passed through the current PCMU encoding.
Since both fax and modem calls can start with this sequence, it is
not possible to determine that this is a fax call until step 11,
where the V.21 fax preamble is detected.
The terminating gateway is using the Call Agent controlled T.38
procedure for fax calls, so it begins to mute audio, generates the
"t38(start)" event, and notifies the Call Agent:
NTFY 2500 ds/ds1-1/2@gw-t.example.net MGCP 1.0
O: fxr/t38(start)
X: 20
Step 13:
The Call Agent acknowledges the Notify command:
200 2500 OK
Step 14:
The Call Agent then instructs the terminating gateway to use the
"image/t38" MIME type instead:
MDCX 2002 ds/ds1-1/2@gw-t.example.net MGCP 1.0
C: 2
I: 2
L: a:image/t38
R: fxr/t38
X: 21
Andreasen & Hancock Informational [Page 33]
^L
RFC 5347 MGCP Fax Package October 2008
Step 15:
The gateway changes to T.38 and sends back a success response with
updated SDP:
200 2002 OK
v=0
o=- 25678 753850 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=image 1296 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Note that since the terminating gateway's last received
RemoteConnectionDescriptor (as opposed to the
LocalConnectionDescriptor returned here) did not list "image/t38" as
a valid encoding method, the terminating gateway is still muting the
media and is now waiting for an updated RemoteConnectionDescriptor
with "image/t38".
Step 16:
The terminating Call Agent sends a re-INVITE to the originating Call
Agent with the updated SDP.
Step 17:
The originating Call Agent then sends a ModifyConnection command to
the originating gateway:
MDCX 1003 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
I: 1
v=0
o=- 25678 753850 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=image 1296 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Andreasen & Hancock Informational [Page 34]
^L
RFC 5347 MGCP Fax Package October 2008
Step 18:
The originating gateway changes to T.38 and sends back a success
response with updated SDP:
200 1003 OK
v=0
o=- 25678 753850 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=image 3456 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Step 19:
The originating Call Agent sends a SIP 200 OK response with the
updated SDP to the terminating Call Agent, which in turn sends a SIP
ACK (not shown).
Step 20:
The terminating Call Agent sends a ModifyConnection with the updated
SDP to the terminating gateway:
MDCX 2003 ds/ds1-1/2@gw-t.example.net MGCP 1.0
C: 2
I: 2
v=0
o=- 25678 753850 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=image 3456 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Andreasen & Hancock Informational [Page 35]
^L
RFC 5347 MGCP Fax Package October 2008
Step 21:
The terminating gateway sends back a success response:
200 2003 OK
Since the terminating gateway now has a RemoteConnectionDescriptor
with "image/t38" as valid media, it can start exchanging T.38 with
the originating gateway.
Steps 22, 23:
When the fax ends, a "t38(stop)" event is generated, which is
notified to the Call Agent:
NTFY 2501 ds/ds1-1/2@gw-t.example.net MGCP 1.0
O: t38(stop)
X: 21
Step 24:
The Call Agent acknowledges the Notify command:
200 2501 OK
The fax call is now over. The Call Agent may now decide to change
back to a voice codec, delete the connection, or do something
different.
Andreasen & Hancock Informational [Page 36]
^L
RFC 5347 MGCP Fax Package October 2008
3.3. Interaction with SIP Endpoints
In this example, we show interaction with a SIP endpoint that does
not support the RFC 3407 [RFC3407] capability descriptors. To
accommodate such endpoints, the T.38 loose mode is being used (at the
risk of initiating T.38 to an endpoint that does not support it).
Once again, the originating fax does not generate CNG tone.
------------------------------------------------------------------
| #| GW-o | CA-o | SIP-UA-t | fax |
|==|===============|===============|===============|===============|
| 1| <-|CRCX | | |
| 2| 200(sdp-o)|-> | | |
| 3| | INVITE(sdp-o)|-> | |
| 4| | <-|200(sdp-t) | |
| 5| | ACK|-> | |
| 6| <-|MDCX(sdp-t) | | |
| 7| 200|-> | | |
|--|---------------|---------------|---------------|---------------|
| 8| | | | <- ANS/ |
| | | | | T.30 CED |
| 9| | | | <- V.21 fax |
| | | | | preamble |
|10| | <-|INVITE(sdp-t2) | |
|11| <-|MDCX(sdp-t2) | | |
|12| 200(sdp-o2)|-> | | |
|13| | 200(sdp-o2)|-> | |
|14| | <-|ACK | |
|15| V.21 fax -> | | | |
| | preamble | | | |
|16|NTFY(t38 start)|-> | | |
|17| <-|200 | | |
|18| <-|RQNT(T38 event)| | |
|19| 200|-> | | |
|--|---------------|---------------|---------------|---------------|
|20| | | | (fax ends) |
|21| | <-|BYE | |
|22| | 200|-> | |
|23|NTFY(t38 stop) |-> | | |
|24| <-|200 | | |
------------------------------------------------------------------
Andreasen & Hancock Informational [Page 37]
^L
RFC 5347 MGCP Fax Package October 2008
Step 1:
The Call Agent issues a CreateConnection command to the gateway,
instructing it to use PCMU media encoding and to use the loose Call
Agent controlled T.38 procedure. Consequently, the Call Agent asks
the gateway to notify it of the "t38" event:
CRCX 1000 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
L: a:PCMU, fxr/fx:t38-loose
M: recvonly
R: fxr/t38
X: 1
Step 2:
The gateway acknowledges the command and includes SDP with codec
information and RFC 3407 [RFC3407] capability information:
200 1000 OK
I:1
v=0
o=- 25678 753849 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=audio 3456 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Andreasen & Hancock Informational [Page 38]
^L
RFC 5347 MGCP Fax Package October 2008
Step 3:
The originating SIP User Agent (UA) sends a SIP INVITE message with
the SDP to the terminating Call Agent (not all SIP details shown
here):
INVITE sip:bob@biloxi.example.com SIP/2.0
...
Content-Type: application/sdp
Content-Length: 167
v=0
o=- 25678 753849 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=audio 3456 RTP/AVP 0
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Step 4:
The terminating SIP User Agent sends back a SIP 200 OK response (not
all SIP details shown) to the originating Call Agent:
SIP/2.0 200 OK
...
Content-Type: application/sdp
Content-Length: 100
v=0
o=- 25678 753849 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=audio 1296 RTP/AVP 0
Note that the terminating SIP User Agent does not use the RFC 3407
[RFC3407] capability descriptor to indicate support for (or lack of
support for) T.38.
Andreasen & Hancock Informational [Page 39]
^L
RFC 5347 MGCP Fax Package October 2008
Step 5:
The originating Call Agent receives the SIP 200 response and sends a
SIP ACK message to the terminating SIP UA.
Note that the Call Agent does not know whether the peer entity
supports T.38. In order to figure this out, the Call Agent could
send a SIP OPTIONS request to the terminating SIP UA, requesting it
to return its capabilities (not shown). Note that this can of course
be done towards any SIP peer, e.g., if the other side was a Call
Agent speaking SIP it could be done there too.
Step 6:
The originating Call Agent in turns sends a ModifyConnection command
to the originating gateway:
MDCX 1001 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
I: 1
M: sendrecv
v=0
o=- 25678 753849 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=audio 1296 RTP/AVP 0
The ModifyConnection command does not repeat the
LocalConnectionOptions sent previously. As far as fax handling is
concerned, the gateway therefore attempts to continue using the
current fax handling procedure, i.e., loose Call Agent controlled
T.38. The T.38 loose procedure can always be supported, and hence a
switch to T.38 will be attempted if the originating gateway detects a
fax call.
Step 7:
The gateway acknowledges the command. At this point, a call is
established using PCMU encoding, and if a fax call is detected, the
Call Agent controlled T.38 procedure will be initiated.
Andreasen & Hancock Informational [Page 40]
^L
RFC 5347 MGCP Fax Package October 2008
Steps 8, 9:
A fax call now occurs. The T.30 CED tone (a.k.a. V.25 ANS) is
sent--in this case, it is simply passed through the current PCMU
encoding. Since both fax and modem calls can start with this
sequence, it is not possible to determine that this is a fax call
until step 9, where the V.21 fax preamble is detected.
Step 10:
The terminating SIP UA does in fact support T.38 and, upon detecting
the fax call, attempts to change to T.38. Consequently, it sends a
re-INVITE to the originating Call Agent with an updated SDP
indicating a switch to T.38.
INVITE sip:ca@ca-o.example.net SIP/2.0
...
Content-Type: application/sdp
Content-Length: 100
v=0
o=- 25678 753850 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=image 1296 udptl t38
Step 11:
The originating Call Agent then sends a ModifyConnection command to
the originating gateway:
MDCX 1003 ds/ds1-1/1@gw-o.example.net MGCP 1.0
C: 1
I: 1
v=0
o=- 25678 753850 IN IP4 192.0.2.2
s=-
c=IN IP4 192.0.2.2
t=0 0
m=image 1296 udptl t38
Andreasen & Hancock Informational [Page 41]
^L
RFC 5347 MGCP Fax Package October 2008
Step 12:
The originating gateway changes to T.38 and sends back a success
response with updated SDP:
200 1003 OK
v=0
o=- 25678 753850 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=image 3456 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Step 13:
The originating Call Agent sends a SIP 200 OK response with the
updated SDP to the terminating SIP User Agent:
SIP/2.0 200 OK
...
Content-Type: application/sdp
Content-Length: 167
v=0
o=- 25678 753850 IN IP4 192.0.2.1
s=-
c=IN IP4 192.0.2.1
t=0 0
m=image 3456 udptl t38
a=sqn: 0
a=cdsc: 1 audio RTP/AVP 0 18
a=cdsc: 3 image udptl t38
Step 14:
The terminating SIP User Agent receives the SIP 200 and sends a SIP
ACK.
Since the terminating SIP User Agent now has a
RemoteConnectionDescriptor with "image/t38" as valid media, it can
start exchanging T.38 with the originating gateway (and vice versa).
Andreasen & Hancock Informational [Page 42]
^L
RFC 5347 MGCP Fax Package October 2008
Steps 15, 16:
The originating endpoint detects V.21 fax preamble. Even though the
endpoint is already using "image/t38" for media, it generates a
"t38(start)" event and notifies the Call Agent.
NTFY 3500 ds/ds1-1/1@gw-o.example.net MGCP 1.0
O: fxr/t38(start)
X: 1
Steps 17, 18:
The Call Agent acknowledges the Notify command and issues a new
(piggybacked) request for notification of the T38 event.
200 3500 OK
.
RQNT 1004 ds/ds1-1/1@gw-o.example.net MGCP 1.0
R: fxr/t38
X: 2
Step 19:
The gateway acknowledges the command.
200 1004 OK
Steps 20-22:
When the fax ends, the terminating SIP UA decides to tear down the
call and hence sends a SIP BYE message, which the Call Agent responds
to with a SIP 200.
Step 23:
The originating endpoint also generates a "t38(stop)" event, which is
notified to the Call Agent:
NTFY 3502 ds/ds1-1/1@gw-o.example.net MGCP 1.0 O: t38(stop) X: 2
Andreasen & Hancock Informational [Page 43]
^L
RFC 5347 MGCP Fax Package October 2008
Step 24:
The Call Agent acknowledges the Notify command:
200 3502 OK
The fax call is now over. The Call Agent may now decide to change
back to a voice codec, delete the connection, or do something
different.
4. Security Considerations
The MGCP fax package itself is not known to introduce any new
security concerns. However, implementers should note that T.38 media
is currently transported over UDP (UDPTL) or TCP in the clear and
without any integrity protection. If for example security services
are in place to protect RTP media streams, these will thus not be in
effect for the T.38 media stream. If such lack of security is a
concern, the fax LocalConnectionOptions allowing T.38 in this package
SHOULD NOT be used, i.e., the "off" (or a new secure extension) fax
LocalConnectionOption should be used.
5. IANA Considerations
IANA has registered the following MGCP package:
Package Title Name Version
------------- ---- -------
Fax FXR 0
6. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC3435] Andreasen, F. and B. Foster, "Media Gateway Control
Protocol (MGCP) Version 1.0", RFC 3435, January 2003.
[T38] ITU-T Recommendation T.38, "Procedures for real-time Group
3 facsimile communication over IP networks", March 2002.
[RFC3407] Andreasen, F., "Session Description Protocol (SDP) Simple
Capability Declaration", RFC 3407, October 2002.
Andreasen & Hancock Informational [Page 44]
^L
RFC 5347 MGCP Fax Package October 2008
7. Informative References
[T30] ITU-T Recommendation T.30, "Procedures for document
facsimile transmission in the general switched telephone
network", July 2003.
[RFC3261] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston,
A., Peterson, J., Sparks, R., Handley, M., and E. Schooler,
"SIP: Session Initiation Protocol", RFC 3261, June 2002.
[RFC3264] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model
with Session Description Protocol (SDP)", RFC 3264, June
2002.
Acknowledgements
Several people have contributed to the development of the MGCP fax
package. In particular, the author would like to thank Bill Foster,
Paul Jones, Gary Kelly, Rajesh Kumar, Dave Horwitz, Hiroshi Tamura,
Rob Thompson, and the CableLabs PacketCable NCS focus team for their
contributions.
Authors' Addresses
Flemming Andreasen
Cisco Systems
499 Thornall Street, 8th Floor
Edison, NJ 08837
EMail: fandreas@cisco.com
David Hancock
CableLabs
858 Coal Creek Circle
Louisville, CO 80027
EMail: d.hancock@cablelabs.com
Andreasen & Hancock Informational [Page 45]
^L
RFC 5347 MGCP Fax Package October 2008
Full Copyright Statement
Copyright (C) The IETF Trust (2008).
This document is subject to the rights, licenses and restrictions
contained in BCP 78, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in BCP 78 and BCP 79.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
http://www.ietf.org/ipr.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Andreasen & Hancock Informational [Page 46]
^L
|