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
  
     | 
    
      <pre>Network Working Group                                        J. Ash, Ed.
Request for Comments: 4901                                  J. Hand, Ed.
Category: Standards Track                                           AT&T
                                                           A. Malis, Ed.
                                                  Verizon Communications
                                                               June 2007
          <span class="h1">Protocol Extensions for Header Compression over MPLS</span>
Status of This Memo
   This document specifies an Internet standards track protocol for the
   Internet community, and requests discussion and suggestions for
   improvements.  Please refer to the current edition of the "Internet
   Official Protocol Standards" (STD 1) for the standardization state
   and status of this protocol.  Distribution of this memo is unlimited.
Copyright Notice
   Copyright (C) The IETF Trust (2007).
Abstract
   This specification defines how to use Multi-Protocol Label Switching
   (MPLS) to route Header-Compressed (HC) packets over an MPLS label
   switched path.  HC can significantly reduce packet-header overhead
   and, in combination with MPLS, can also increases bandwidth
   efficiency and processing scalability in terms of the maximum number
   of simultaneous compressed flows that use HC at each router).  Here
   we define how MPLS pseudowires are used to transport the HC context
   and control messages between the ingress and egress MPLS label
   switching routers.  This is defined for a specific set of existing HC
   mechanisms that might be used, for example, to support voice over IP.
   This specification also describes extension mechanisms to allow
   support for future, as yet to be defined, HC protocols.  In this
   specification, each HC protocol operates independently over a single
   pseudowire instance, very much as it would over a single point-to-
   point link.
<span class="grey">Ash, et al.                 Standards Track                     [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
Table of Contents
   <a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
   <a href="#section-2">2</a>. Terminology .....................................................<a href="#page-3">3</a>
   <a href="#section-3">3</a>. Header Compression over MPLS Protocol Overview ..................<a href="#page-6">6</a>
   <a href="#section-4">4</a>. Protocol Specifications ........................................<a href="#page-11">11</a>
      <a href="#section-4.1">4.1</a>. MPLS Pseudowire Setup and Signaling .......................<a href="#page-13">13</a>
      4.2. Header Compression Scheme Setup, Negotiation, and
           Signaling .................................................<a href="#page-14">14</a>
           <a href="#section-4.2.1">4.2.1</a>. Configuration Option Format [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] ..............<a href="#page-15">15</a>
           <a href="#section-4.2.2">4.2.2</a>. RTP-Compression Suboption [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] ................<a href="#page-17">17</a>
           <a href="#section-4.2.3">4.2.3</a>. Enhanced RTP-Compression Suboption [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] .......<a href="#page-18">18</a>
           4.2.4. Negotiating Header Compression for Only TCP
                  or Only Non-TCP Packets [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] ..................<a href="#page-19">19</a>
           <a href="#section-4.2.5">4.2.5</a>. Configuration Option Format [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>] ..............<a href="#page-20">20</a>
           <a href="#section-4.2.6">4.2.6</a>. PROFILES Suboption [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>] .......................<a href="#page-21">21</a>
      <a href="#section-4.3">4.3</a>. Encapsulation of Header Compressed Packets ................<a href="#page-22">22</a>
      <a href="#section-4.4">4.4</a>. Packet Reordering .........................................<a href="#page-23">23</a>
   <a href="#section-5">5</a>. HC Pseudowire Setup Example ....................................<a href="#page-24">24</a>
   <a href="#section-6">6</a>. Security Considerations ........................................<a href="#page-29">29</a>
   <a href="#section-7">7</a>. Acknowledgements ...............................................<a href="#page-29">29</a>
   <a href="#section-8">8</a>. IANA Considerations ............................................<a href="#page-29">29</a>
   <a href="#section-9">9</a>. Normative References ...........................................<a href="#page-30">30</a>
   <a href="#section-10">10</a>. Informative References ........................................<a href="#page-31">31</a>
   <a href="#section-11">11</a>. Contributors ..................................................<a href="#page-33">33</a>
<span class="grey">Ash, et al.                 Standards Track                     [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>.  Introduction</span>
   Voice over IP (VoIP) typically uses the encapsulation
   voice/RTP/UDP/IP.  When MPLS labels [<a href="./rfc3031" title=""Multiprotocol Label Switching Architecture"">RFC3031</a>] are added, this becomes
   voice/RTP/UDP/IP/MPLS-labels.  MPLS VPNs (e.g., [<a href="./rfc4364" title=""BGP/MPLS IP Virtual Private Networks (VPN)s"">RFC4364</a>]) use label
   stacking, and in the simplest case of IPv4 the total packet header is
   at least 48 bytes, while the voice payload is often no more than 30
   bytes, for example.  When IPv6 is used, the relative size of the
   header in comparison to the payload is even greater.  The interest in
   header compression (HC) is to exploit the possibility of
   significantly reducing the overhead through various compression
   mechanisms, such as with enhanced compressed RTP (ECRTP) [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>]
   and robust header compression (ROHC) [RFC3095, RFC3095bis, <a href="./rfc4815">RFC4815</a>],
   and also to increase scalability of HC.  MPLS is used to route HC
   packets over an MPLS label switched path (LSP) without
   compression/decompression cycles at each router.  Such an HC over
   MPLS capability can increase bandwidth efficiency as well as the
   processing scalability of the maximum number of simultaneous
   compressed flows that use HC at each router.  Goals and requirements
   for HC over MPLS are discussed in [<a href="./rfc4247" title=""Requirements for Header Compression over MPLS"">RFC4247</a>].  The solution using MPLS
   pseudowire (PW) technology put forth in this document has been
   designed to address these goals and requirements.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>.  Terminology</span>
   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 <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
   Context: the state associated with a flow subject to IP header
   compression.  While the exact nature of the context is specific to a
   particular HC protocol (CRTP, ECRTP, ROHC, etc.), this state
   typically includes:
      - the values of all of the fields in all of the headers (IP, UDP,
        TCP, RTP, Encapsulating Security Payload (ESP), etc.) that the
        particular header compression protocol operates on for the last
        packet of the flow sent (by the compressor) or received (by the
        decompressor).
      - the change in the value of some of the fields in the IP, UDP,
        TCP, etc. headers between the last two consecutive sent packets
        (compressor) or received packets (decompressor) of the flow.
        Some of the fields in the header change by a constant amount
        between subsequent packets in the flow most of the time.  Saving
        the changes in these fields from packet to packet allows
<span class="grey">Ash, et al.                 Standards Track                     [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
        verification that a constant rate of change is taking place, and
        to take appropriate action when a deviation from the normal
        changes are encountered.
   For most HC protocols, a copy of the context of each compressed flow
   is maintained at both the compressor and the decompressor.
   compressed Real-time Transport Protocol (CRTP): a particular HC
   protocol described in [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>].
   Context ID (CID): a small number, typically 8 or 16 bits, used to
   identify a particular flow, and the context associated with the flow.
   Most HC protocols in essence work by sending the CID across the link
   in place of the full header, along with any unexpected changes in the
   values in the various fields of the headers.
   Enhanced Compressed Real-time Protocol (ECRTP): a particular HC
   protocol described in [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>].
   Forwarding Equivalence Class (FEC): a group of packets that are
   forwarded in the same manner (e.g., over the same LSP, with the same
   forwarding treatment)
   Header Compression scheme (HC scheme):  a particular method of
   performing HC and its associated protocol.  Multiple methods of HC
   have been defined, including Robust Header Compression (ROHC
   [<a href="./rfc3095" title=""RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed"">RFC3095</a>, <a href="#ref-RFC3095bis" title=""The RObust Header Compression (ROHC) Framework"">RFC3095bis</a>]), compressed RTP (CRTP, [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>]), enhanced
   CRTP (ECRTP, [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>]), and IP Header Compression (IPHC, [<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>]).
   This document explicitly supports all of the HC schemes listed above,
   and is intended to be extensible to others that may be developed.
   Header Compression channel (HC channel): a session established
   between a header compressor and a header decompressor using a single
   HC scheme, over which multiple individual flows may be compressed.
   From this perspective, every PPP link over which HC is operating
   defines a single HC channel, and based on this specification, every
   HC PW defines a single HC channel.  HC PWs are bi-directional, which
   means that a unidirectional leg of the PW is set up in each
   direction.  One leg of the bi-directional PW may be set up to carry
   only compression feedback, not header compressed traffic.  An HC
   channel should not be confused with the individual traffic flows that
   may be compressed using a single Context ID.  Each HC channel manages
   a set of unique CIDs.
   IP Header Compression (IPHC): a particular HC protocol described in
   [<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>]
<span class="grey">Ash, et al.                 Standards Track                     [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   Label: a short fixed length physically contiguous identifier that is
   used to identify a FEC, usually of local significance
   Label Stack: an ordered set of labels
   Label Switched Path (LSP): the path through one or more LSRs at one
   level of the hierarchy followed by a packet in a particular
   forwarding equivalence class (FEC)
   Label Switching Router (LSR): an MPLS node that is capable of
   forwarding native L3 packets
   MPLS domain: a contiguous set of nodes that operate MPLS routing and
   forwarding and which are also in one Routing or Administrative Domain
   MPLS label: a label that is carried in a packet header, and that
   represents the packet's FEC
   MPLS node: a node that is running MPLS.  An MPLS node will be aware
   of MPLS control protocols, will operate one or more L3 routing
   protocols, and will be capable of forwarding packets based on labels.
   An MPLS node may also optionally be capable of forwarding native L3
   packets.
   Multiprotocol Label Switching (MPLS): an IETF working group and the
   effort associated with the working group, including the technology
   (signaling, encapsulation, etc.) itself
   Packet Switched Network (PSN): Within the context of Pseudowire PWE3,
   this is a network using IP or MPLS as the mechanism for packet
   forwarding.
   Protocol Data Unit (PDU): the unit of data output to, or received
   from, the network by a protocol layer.
   Pseudowire (PW): a mechanism that carries the essential elements of
   an emulated service from one provider edge router to one or more
   other provider edge routers over a PSN
   Pseudowire Emulation Edge to Edge (PWE3): a mechanism that emulates
   the essential attributes of service (such as a T1 leased line or
   Frame Relay) over a PSN
   Pseudowire PDU (PW-PDU): a PDU sent on the PW that contains all of
   the data and control information necessary to emulate the desired
   service
<span class="grey">Ash, et al.                 Standards Track                     [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   PSN Tunnel: a tunnel across a PSN, inside which one or more PWs can
   be carried
   PSN Tunnel Signaling: a protocol used to set up, maintain, and tear
   down the underlying PSN tunnel
   PW Demultiplexer: data-plane method of identifying a PW terminating
   at a provider edge router
   Real Time Transport Protocol (RTP): a protocol for end-to-end network
   transport for applications transmitting real-time data, such as audio
   or video [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications,"">RFC3550</a>].
   Robust Header Compression (ROHC): a particular HC protocol consisting
   of a framework [<a href="#ref-RFC3095bis" title=""The RObust Header Compression (ROHC) Framework"">RFC3095bis</a>] and a number of profiles for different
   protocols, e.g., for RTP, UDP, ESP [<a href="./rfc3095" title=""RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed"">RFC3095</a>], and IP [<a href="./rfc3843" title=""RObust Header Compression (ROHC): A Compression Profile for IP"">RFC3843</a>]
   Tunnel: a method of transparently carrying information over a network
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>.  Header Compression over MPLS Protocol Overview</span>
   To implement HC over MPLS, after the ingress router applies the HC
   algorithm to the IP packet, the compressed packet is forwarded on an
   MPLS LSP using MPLS labels, and then the egress router restores the
   uncompressed header.  Any of a number of HC algorithms/protocols can
   be used.  These algorithms have generally been designed for operation
   over a single point-to-point link-layer hop.  MPLS PWs [<a href="./rfc3985" title=""Pseudo Wire Emulation Edge-to- Edge (PWE3) Architecture,"">RFC3985</a>],
   which are used to provide emulation of many point-to-point link layer
   services (such as frame relay permanent virtual circuits (PVCs) and
   ATM PVCs) are used here to provide emulation of a single, point-to-
   point link layer hop over which HC traffic may be transported.
   Figure 1 illustrates an HC over MPLS channel established on an LSP
   that traverses several LSRs, from R1/HC --> R2 --> R3 --> R4/HD,
   where R1/HC is the ingress router performing HC, and R4/HD is the
   egress router performing header decompression (HD).  This example
   assumes that the packet flow being compressed has RTP/UDP/IP headers
   and is using a HC scheme such as ROHC, CRTP, or ECRTP.  Compression
   of the RTP/UDP/IP header is performed at R1/HC, and the compressed
   packets are routed using MPLS labels from R1/HC to R2, to R3, and
   finally to R4/HD, without further decompression/recompression cycles.
   The RTP/UDP/IP header is decompressed at R4/HD and can be forwarded
   to other routers, as needed.  This example assumes that the
   application is VoIP and that the HC algorithm operates on the RTP,
   UDP, and IP headers of the VoIP flows.  This is an extremely common
   application of HC, but need not be the only one.  The HC algorithms
   supported by the protocol extensions specified in this document may
   operate on TCP or IPsec ESP headers as well.
<span class="grey">Ash, et al.                 Standards Track                     [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
                      |
                      | data (e.g., voice)/RTP/UDP/IP/link layer
                      V
                    _____
                   |     |
                   |R1/HC| Header Compression (HC) Performed
                   |_____|
                      |
                      | data (e.g., voice)/compressed-header/MPLS-labels
                      V
                    _____
                   |     |
                   | R2  | Label Switching
                   |_____| (no compression/decompression)
                      |
                      | data (e.g., voice)/compressed-header/MPLS-labels
                      V
                    _____
                   |     |
                   | R3  | Label Switching
                   |_____| (no compression/decompression)
                      |
                      | data (e.g., voice)/compressed-header/MPLS-labels
                      V
                    _____
                   |     |
                   |R4/HD| Header Decompression (HD) Performed
                   |_____|
                      |
                      | data (e.g., voice)/RTP/UDP/IP/link layer
                      V
      Figure 1: Example of HC over MPLS over Routers R1 --> R4
   In the example scenario, HC therefore takes place between R1 and R4,
   and the MPLS LSP transports data/compressed-header/MPLS-labels
   instead of data/RTP/UDP/IP/MPLS-labels, often saving more than 90% of
   the RTP/UDP/IP overhead.  Typically there are two MPLS labels (8
   octets) and a link-layer HC control parameter (2 octets).  The MPLS
   label stack and link-layer headers are not compressed.  Therefore, HC
   over MPLS can significantly reduce the header overhead through
   compression mechanisms.
   HC reduces the IP/UDP/RTP headers to 2-4 bytes for most packets.
   Half of the reduction in header size comes from the observation that
   half of the bytes in the IP/UDP/RTP headers remain constant over the
   life of the flow.  After sending the uncompressed header template
   once, these fields may be removed from the compressed headers that
<span class="grey">Ash, et al.                 Standards Track                     [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   follow.  The remaining compression comes from the observation that
   although several fields change in every packet, the difference from
   packet to packet is often constant or at least limited, and therefore
   the second-order difference is zero.
   The compressor and decompressor both maintain a context for each
   compressed flow.  The context is the session state shared between the
   compressor and decompressor.  The details of what is included in the
   context may vary between HC schemes.  The context at the compressor
   would typically include the uncompressed headers of the last packet
   sent on the flow, and some measure of the differences in selected
   header field values between the last packet transmitted and the
   packet(s) transmitted just before it.  The context at the
   decompressor would include similar information about received
   packets.  With this information, all that must be communicated across
   the wire is an indication of which flow a packet is associated with
   (the CID), and some compact encoding of the second order differences
   (i.e., the harder to predict differences) between packets.
   MPLS PWs [<a href="./rfc3985" title=""Pseudo Wire Emulation Edge-to- Edge (PWE3) Architecture,"">RFC3985</a>] are used to transport the HC packets between the
   ingress and egress MPLS LSRs.  Each PW acts like a logical point-to-
   point link between the compressor and the decompressor.  Each PW
   supports a single HC channel, which, from the perspective of the HC
   scheme operation, is similar to a single PPP link or a single frame
   relay PVC.  One exception to this general model is that PWs carry
   only packets with compressed headers, and do not share the PW with
   uncompressed packets.
   The PW architecture specifies the use of a label stack with at least
   2 levels.  The label at the bottom of the stack is called the PW
   label.  The PW label acts as an identifier for a particular PW.  With
   HC PWs, the compressor adds the label at the bottom of the stack and
   the decompressor removes this label.  No LSRs between the compressor
   and decompressor inspect or modify this label.  Labels higher in the
   stack are called the packet switch network (PSN) labels, and are used
   to forward the packet through the MPLS network as described in
   [<a href="./rfc3031" title=""Multiprotocol Label Switching Architecture"">RFC3031</a>].  The decompressor uses the incoming MPLS PW label (the
   label at the bottom of the stack), along with the CID to locate the
   proper decompression context.  Standard HC methods (e.g., ECRTP,
   ROHC, etc.) are used to determine the contexts.  The CIDs are
   assigned by the HC as normal, and there would be no problem if
   duplicate CIDs are received at the HD for different PWs, which
   support different compressed channels.  For example, if two different
   compressors, HCa and HCb, both assign the same CID to each of 2
   separate flows destined to decompressor HDc, HDc can still
   differentiate the flows and locate the proper decompression context
   for each, because the tuples <PWlabel-HCa, CID> and <PWlabel-HCb,
   CID> are still unique.
<span class="grey">Ash, et al.                 Standards Track                     [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   In addition to the PW label and PSN label(s), HC over MPLS packets
   also carry a HC control parameter.  The HC control parameter contains
   both a packet type field and a packet length field.  The packet type
   field is needed because each HC scheme supported by this
   specification defines multiple packet types, for example, "full
   header" packets, which are used to initialize and/or re-synchronize
   the context between compressor and decompressor, vs. normal HC
   packets.  And most of the HC schemes require that the underlying link
   layer protocols provide the differentiation between packet types.
   Similarly, one of the assumptions that is part of most of the HC
   schemes is that the packet length fields in the RTP/UDP/IP, etc.
   headers need not be explicitly sent across the network, because the
   IP datagram length can be implicitly determined from the lower
   layers.  This specification assumes that, with one exception, the
   length of an HC IP datagram can be determined from the link layers of
   the packets transmitted across the MPLS network.  The exception is
   for packets that traverse an Ethernet link.  Ethernet requires
   padding for packets whose payload size is less than 46 bytes in
   length.  So the HC control parameter contains a length field of 6
   bits to encode the lengths of any HC packets less than 64 bytes in
   length.
   HC PWs are set up by the PW signaling protocol [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>].  [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>]
   actually defines a set of extensions to the MPLS label distribution
   protocol (LDP) [<a href="./rfc3036" title=""LDP Specification"">RFC3036</a>].  As defined in [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>], LDP signaling to
   set up, tear down, and manage PWs is performed directly between the
   PW endpoints, in this case, the compressor and the decompressor.  PW
   signaling is used only to set up the PW label at the bottom of the
   stack, and is used independently of any other signaling that may be
   used to set up PSN labels.  So, for example, in Figure 1, LDP PW
   signaling would be performed directly between R1/HC and R4/HD.
   Router R2 and R3 would not participate in PW signaling.
   [<a id="ref-RFC4447">RFC4447</a>] provides extensions to LDP for PWs, and this document
   provides further extensions specific to HC.  Since PWs provide a
   logical point-to-point connection over which HC can be run, the
   extensions specified in this document reuse elements of the protocols
   used to negotiate HC over the Point-to-Point Protocol [<a href="./rfc1661" title=""The Point-to-Point Protocol (PPP)"">RFC1661</a>].
   [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>] specifies how ROHC is used over PPP and [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] specifies
   how several other HC schemes (CRTP, ECRTP, IPHC) are used over PPP.
   Both of these RFCs provide configuration options for negotiating HC
   over PPP.  The formats of these configuration options are reused here
   for setting up HC over PWs.  When used in the PPP environment, these
   configuration options are used as extensions to PPP's IP Control
   Protocol [<a href="./rfc1332" title=""The PPP Internet Protocol Control Protocol (IPCP)"">RFC1332</a>] and the detailed PPP options negotiations process
   described in [<a href="./rfc1661" title=""The Point-to-Point Protocol (PPP)"">RFC1661</a>].  This is necessary because a PPP link may
   support multiple protocols, each with its own addressing scheme and
   options.  Achieving interoperability requires a negotiation process
<span class="grey">Ash, et al.                 Standards Track                     [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   so that the nodes at each end of the link can agree on a set of
   protocols and options that both support.  However, a single HC PW
   supports only HC traffic using a single HC scheme.  So while the
   formats of configuration options from [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>] and [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] are
   reused here, the detailed PPP negotiation process is not.  Instead,
   these options are reused here just as descriptors (TLVs in the
   specific terminology of LDP and [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>]) of basic parameters of an
   HC PW.  These parameters are further described in <a href="#section-4">Section 4</a>.  The HC
   configuration parameters are initially generated by the decompressor
   and describe what the decompressor is prepared to receive.
   Most HC schemes use a feedback mechanism which requires bi-
   directional flow of HC packets, even if the flow of compressed IP
   packets is in one direction only.  The basic signaling process of
   [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>] sets up unidirectional PWs, and must be repeated in each
   direction in order to set up the bi-directional flow needed for HC.
   Figure 1 illustrates an example data flow set up from R1/HC --> R2
   --> R3 --> R4/HD, where R1/HC is the ingress router where header
   compression is performed, and R4/HD is the egress router where header
   decompression is done.  Each router functions as an LSR and supports
   signaling of LSP/PWs.  See <a href="#section-5">Section 5</a> for a detailed example of how
   the flow depicted in Figure 1 is established.
   All the HC schemes used here are built so that if an uncompressible
   packet is seen, it should just be sent uncompressed.  For some types
   of compression (e.g., IPHC-TCP), a non-compressed path is required.
   For IPHC-TCP compression, uncompressible packets occur for every TCP
   flow.  Another way that this kind of issue can occur is if MAX_HEADER
   is configured lower than the longest header, in which case,
   compression might not be possible in some cases.
   The uncompressed packets associated with HC flows (e.g., uncompressed
   IPHC-TCP packets) can be sent through the same MPLS tunnel along with
   all other non-HC (non-PW) IP packets.  MPLS tunnels can transport
   many types of packets simultaneously, including non-PW IP packets,
   layer 3 VPN packets, and PW (e.g., HC flow) packets.  In the
   specification, we assume that there is a path for uncompressed
   traffic, and it is a compressor decision as to what would or would
   not go in the HC-PW.
<span class="grey">Ash, et al.                 Standards Track                    [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>.  Protocol Specifications</span>
   Figure 2 illustrates the PW stack reference model to support PW
   emulated services.
   +-------------+                                +-------------+
   |  Layer2     |                                |  Layer2     |
   |  Emulated   |                                |  Emulated   |
   |  Services   |         Emulated Service       |  Services   |
   |             |<==============================>|             |
   +-------------+                                +-------------+
   |     HC      |           Pseudowire           |     HD      |
   |Demultiplexer|<==============================>|Demultiplexer|
   +-------------+                                +-------------+
   |    PSN      |            PSN Tunnel          |    PSN      |
   |   MPLS      |<==============================>|   MPLS      |
   +-------------+                                +-------------+
   |  Physical   |                                |  Physical   |
   +-----+-------+                                +-----+-------+
             Figure 2: Pseudowire Protocol Stack Reference Model
   Each HC-HD compressed channel is mapped to a single PW and associated
   with 2 PW labels, one in each direction.  A single PW label MUST be
   used for many HC flows (could be 100's or 1000's) rather than
   assigning a different PW label to each flow.  The latter approach
   would involve a complex mechanism for PW label assignment, freeing up
   of labels after a flow terminates, etc., for potentially 1000's of
   simultaneous HC flows.  On the other hand, the mechanism for CID
   assignment, freeing up, etc., is in place and there is no need to
   duplicate it with PW assignment/deassignment for individual HC flows.
   Multiple PWs SHOULD be established in case different quality of
   service (QoS) requirements are needed for different compressed
   streams.  The QoS received by the flow would be determined by the EXP
   bit marking in the PW label.  Normally, all RTP packets would get the
   same EXP marking [<a href="./rfc3270" title=""Multi-Protocol Label Switching (MPLS) Support of Differentiated Services,"">RFC3270</a>], equivalent to expedited forwarding (EF)
   treatment [<a href="./rfc3246" title=""An Expedited Forwarding PHB (Per- Hop Behavior),"">RFC3246</a>] in Diffserv.  However, the protocol specified in
   this document applies to several different types of streams, not just
   RTP streams, and QoS treatment other than EF may be required for
   those streams.
   Figure 3 shows the HC over MPLS protocol stack (with uncompressed
   header):
<span class="grey">Ash, et al.                 Standards Track                    [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   Media stream
   RTP
   UDP
   IP
   HC control parameter
   MPLS label stack (at least 2 labels for this application)
   Link layer under MPLS (PPP, PoS, Ethernet)
   Physical layer (SONET/SDH, fiber, copper)
                                                        +--------------+
                                                        | Media stream |
                                                        +--------------+
                                                        \_______ ______/
                                                2-4 octets      V
                                                 +------+--------------+
                         Compressed /RTP/UDP/IP/ |header|              |
                                                 +------+--------------+
                                                 \__________ __________/
                                          2 octets          V
                                          +------+---------------------+
                     HC Control Parameter |header|                     |
                                          +------+---------------------+
                                          \______________ _____________/
                                   8 octets              V
                                   +------+----------------------------+
                       MPLS Labels |header|                            |
                                   +------+----------------------------+
                                   \_________________ _________________/
                                                     V
                            +------------------------------------------+
      Link Layer under MPLS |                                          |
                            +------------------------------------------+
                            \____________________ _____________________/
                                                 V
                     +-------------------------------------------------+
      Physical Layer |                                                 |
                     +-------------------------------------------------+
     Figure 3: Header Compression over MPLS Media Stream Transport
   The HC control parameter MUST be used to identify the packet types
   for the HC scheme in use.  The MPLS labels technically define two
   layers: the PW identifier and the MPLS tunnel identifier.  The PW
   label MUST be used as the demultiplexer field by the HD, where the PW
   label appears at the bottom label of an MPLS label stack.  The LSR
   that will be performing decompression MUST ensure that the label it
   distributes (e.g., via LDP) for a channel is unique.  There can also
<span class="grey">Ash, et al.                 Standards Track                    [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   be other MPLS labels, for example, to identify an MPLS VPN.  The
   IP/UDP/RTP headers are compressed before transmission, leaving the
   rest of the stack alone, as shown in Figure 3.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>.  MPLS Pseudowire Setup and Signaling</span>
   PWs MUST be set up in advance for the transport of media streams
   using [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>] control messages exchanged by the HC-HD endpoints.
   Furthermore, a PW type MUST be used to indicate the HC scheme being
   used on the PW.  [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>] specifies the MPLS label distribution
   protocol (LDP) [<a href="./rfc3036" title=""LDP Specification"">RFC3036</a>] extensions to set up and maintain the PWs,
   and defines new LDP objects to identify and signal attributes of PWs.
   Any acceptable method of MPLS label distribution MAY be used for
   distributing the MPLS tunnel label [<a href="./rfc3031" title=""Multiprotocol Label Switching Architecture"">RFC3031</a>].  These methods include
   LDP [<a href="./rfc3036" title=""LDP Specification"">RFC3036</a>], RSVP-TE [<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels,"">RFC3209</a>], or configuration.
   To assign and distribute the PW labels, an LDP session MUST be set up
   between the PW endpoints using the extended discovery mechanism
   described in [<a href="./rfc3036" title=""LDP Specification"">RFC3036</a>].  The PW label bindings are distributed using
   the LDP downstream unsolicited mode described in [<a href="./rfc3036" title=""LDP Specification"">RFC3036</a>].  An LDP
   label mapping message contains a FEC object, a label object, and
   possible other optional objects.  The FEC object indicates the
   meaning of the label, identifies the PW type, and identifies the PW
   that the PW label is bound to.  See [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>] for further explanation
   of PW signaling.
   This specification defines new PW type values to be carried within
   the FEC object to identify HC PWs for each HC scheme.  The PW type is
   a 15-bit parameter assigned by IANA, as specified in the [<a href="./rfc4446" title=""IANA Allocations for Pseudo Wire Edge To Edge Emulation (PWE3),"">RFC4446</a>]
   registry, and MUST be used to indicate the HC scheme being used on
   the PW.  IANA has set aside the following PW type values for
   assignment according to the registry specified in <a href="./rfc4446#section-3.2">RFC 4446, Section </a>
   <a href="#section-3.2">3.2</a>:
   PW type Description                                 Reference
   =============================================================
   0x001A  ROHC Transport Header-compressed Packets    [<a href="#ref-RFC3095bis" title=""The RObust Header Compression (ROHC) Framework"">RFC3095bis</a>]
   0x001B  ECRTP Transport Header-compressed Packets   [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>]
   0x001C  IPHC Transport Header-compressed Packets    [<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>]
   0x001D  CRTP Transport Header-compressed Packets    [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>]
   The HC control parameter enables distinguishing between various
   packets types (e.g., uncompressed, UDP compressed, RTP compressed,
   context-state, etc.).  However, the HC control parameter indications
   are not unique across HC schemes, and therefore the PW type value
   allows the HC scheme to be identified.
<span class="grey">Ash, et al.                 Standards Track                    [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>.  Header Compression Scheme Setup, Negotiation, and Signaling</span>
   As described in the previous section, the HC PW MUST be used for
   compressed packets only, which is configured at PW setup.  If a flow
   is not compressed, it MUST NOT be placed on the HC PW.  HC PWs MUST
   be bi-directional, which means that a unidirectional leg of the PW
   MUST be set up in each direction.  One leg of the bi-directional PW
   MAY be set up to carry only compression feedback, not header
   compressed traffic.  The same PW type MUST be used for PW signaling
   in both directions.
   HC scheme parameters MAY be manually configured, but if so, manual
   configuration MUST be done in both directions.  If HC scheme
   parameters are signaled, the Interface Parameters Sub-TLV MUST be
   used on any unidirectional legs of a PW that will carry HC traffic.
   For a unidirectional leg of a PW that will carry only compression
   feedback, the components of the Interface Parameters Sub-TLV
   described below are not relevant and MUST NOT be used.
   The PW HC approach relies on the PW/MPLS layer to convey HC channel
   configuration information.  The Interface Parameters Sub-TLV [IANA,
   <a href="./rfc4447">RFC4447</a>] must be used to signal HC channel setup and specify HC
   parameters.  That is, the configuration options specified in
   [RFC3241, <a href="./rfc3544">RFC3544</a>] are reused in this specification to specify PW-
   specific parameters, and to configure the HC and HD ports at the
   edges of the PW so that they have the necessary capabilities to
   interoperate with each other.
   Pseudowire Interface Parameter Sub-TLV type values are specified in
   [<a href="./rfc4446" title=""IANA Allocations for Pseudo Wire Edge To Edge Emulation (PWE3),"">RFC4446</a>].  IANA has set aside the following Pseudowire Interface
   Parameter Sub-TLV type values according to the registry specified in
   <a href="./rfc4446#section-3.3">RFC 4446, Section 3.3</a>:
   Parameter  ID Length        Description                   Reference
   ---------  ---------------  ----------------------------  ---------
   0x0D       up to 256 bytes  ROHC over MPLS configuration  <a href="./rfc4901">RFC 4901</a>
                                <a href="./rfc3241">RFC 3241</a>
   0x0F       up to 256 bytes  CRTP/ECRTP/IPHC HC over MPLS  <a href="./rfc4901">RFC 4901</a>
                                configuration <a href="./rfc3544">RFC 3544</a>
   TLVs identified in [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>] and [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] MUST be encapsulated in
   the PW Interface Parameters Sub-TLV and used to negotiate header
   compression session setup and parameter negotiation for their
   respective protocols.  The TLVs supported in this manner MUST include
   the following:
<span class="grey">Ash, et al.                 Standards Track                    [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   o  Configuration Option Format, RTP-Compression Suboption, Enhanced
      RTP-Compression Suboption, TCP/non-TCP Compression Suboptions, as
      specified in [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>]
   o  Configuration Option Format, PROFILES Suboption, as specified in
      [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>]
   These TLVs are now specified in the following sections.
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>.  Configuration Option Format [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>]</span>
   Both the network control protocol for IPv4, IPCP [<a href="./rfc1332" title=""The PPP Internet Protocol Control Protocol (IPCP)"">RFC1332</a>] and the
   IPv6 Network Control Protocol (NCP), IPV6CP [<a href="./rfc2472" title=""IP Version 6 over PPP"">RFC2472</a>] may be used to
   negotiate IP HC parameters for their respective controlled protocols.
   The format of the configuration option is the same for both IPCP and
   IPV6CP.  This configuration option MUST be included for ECRTP, CRTP
   and IPHC PW types and MUST NOT be included for ROHC PW types.  A
   decompressor MUST reject this option (if misconfigured) for ROHC PW
   types and send an explicit error message to the compressor [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>].
   Description
      This NCP configuration option is used to negotiate parameters for
      IP HC.  Successful negotiation of parameters enables the use of
      Protocol Identifiers FULL_HEADER, COMPRESSED_TCP,
      COMPRESSED_TCP_NODELTA, COMPRESSED_NON_TCP, and CONTEXT_STATE as
      specified in [<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>].  The option format is summarized below.
      The fields are transmitted from left to right.
       0                   1                   2                   3
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |     Type      |    Length     |    IP-Compression-Protocol    |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |           TCP_SPACE           |         NON_TCP_SPACE         |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |         F_MAX_PERIOD          |          F_MAX_TIME           |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |           MAX_HEADER          |          suboptions...        |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      Type
         2
<span class="grey">Ash, et al.                 Standards Track                    [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
      Length
         >= 14
         The length may be increased if the presence of additional
         parameters is indicated by additional suboptions.
      IP-Compression-Protocol
         0061 (hex)
      TCP_SPACE
         The TCP_SPACE field is two octets and indicates the maximum
         value of a context identifier in the space of context
         identifiers allocated for TCP.
            Suggested value: 15
         TCP_SPACE must be at least 0 and at most 255 (the value 0
         implies having one context).  This field is not used for CRTP
         (PW type 0x001B) and ECRTP (PW type 0x001B) PWs.  For these PW
         types, it should be set to its suggested value by the sender
         and ignored by the receiver.
      NON_TCP_SPACE
         The NON_TCP_SPACE field is two octets and indicates the maximum
         value of a context identifier in the space of context
         identifiers allocated for non-TCP.  These context identifiers
         are carried in COMPRESSED_NON_TCP, COMPRESSED_UDP and
         COMPRESSED_RTP packet headers.
            Suggested value: 15
         NON_TCP_SPACE must be at least 0 and at most 65535 (the value 0
         implies having one context).
      F_MAX_PERIOD
         Maximum interval between full headers.  No more than
         F_MAX_PERIOD COMPRESSED_NON_TCP headers may be sent between
         FULL_HEADER headers.
            Suggested value: 256
         A value of zero implies infinity, i.e., there is no limit to
         the number of consecutive COMPRESSED_NON_TCP headers.  This
         field is not used for CRTP (PW type 0x001B) and ECRTP (PW type
         0x001B) PWs.  For these PW types, it should be set to its
         suggested value by the sender and ignored by the receiver.
<span class="grey">Ash, et al.                 Standards Track                    [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
      F_MAX_TIME
         Maximum time interval between full headers.  COMPRESSED_NON_TCP
         headers may not be sent more than F_MAX_TIME seconds after
         sending the last FULL_HEADER header.
         Suggested value: 5 seconds
         A value of zero implies infinity.  This field is not used for
         CRTP (PW type 0x001B) and ECRTP (PW type 0x001B) PWs.  For
         these PW types, it should be set to its suggested value by the
         sender and ignored by the receiver.
      MAX_HEADER
         The largest header size in octets that may be compressed.
         Suggested value: 168 octets
         The value of MAX_HEADER should be large enough so that at least
         the outer network layer header can be compressed.  To increase
         compression efficiency MAX_HEADER should be set to a value
         large enough to cover common combinations of network and
         transport layer headers.
      suboptions
         The suboptions field consists of zero or more suboptions.  Each
         suboption consists of a type field, a length field and zero or
         more parameter octets, as defined by the suboption type.  The
         value of the length field indicates the length of the suboption
         in its entirety, including the lengths of the type and length
         fields.
       0                   1                   2
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |     Type      |    Length     |  Parameters...|
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>.  RTP-Compression Suboption [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>]</span>
   The RTP-Compression suboption is included in the NCP IP-Compression-
   Protocol option for IPHC if IP/UDP/RTP compression is to be enabled.
   This suboption MUST be included for CRTP PWs (0x001C) and MUST NOT be
   included for other PW types.
   Inclusion of the RTP-Compression suboption enables use of additional
   Protocol Identifiers COMPRESSED_RTP and COMPRESSED_UDP along with
   additional forms of CONTEXT_STATE as specified in [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>].
<span class="grey">Ash, et al.                 Standards Track                    [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   Description
      Enables the use of Protocol Identifiers COMPRESSED_RTP,
      COMPRESSED_UDP, and CONTEXT_STATE as specified in [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>].
          0                   1
          0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
         +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
         |     Type      |    Length     |
         +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
         Type
            1
         Length
            2
<span class="h4"><a class="selflink" id="section-4.2.3" href="#section-4.2.3">4.2.3</a>.  Enhanced RTP-Compression Suboption [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>]</span>
   To use the enhanced RTP HC defined in [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>], a new suboption 2 is
   added.  Suboption 2 is negotiated instead of, not in addition to,
   suboption 1.  This suboption MUST be included for ECRTP PWs (0x001B)
   and MUST NOT be included for other PW types.
   Note that suboption 1 refers to the RTP-Compression Suboption, as
   specified in <a href="#section-4.2.2">Section 4.2.2</a>, and suboption 2 refers to the Enhanced
   RTP-Compression Suboption, as specified in <a href="#section-4.2.3">Section 4.2.3</a>.  These
   suboptions MUST NOT occur together.  If they do (e.g., if
   misconfigured), a decompressor MUST reject this option and send an
   explicit error message to the compressor [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>].
   Description
      Enables the use of Protocol Identifiers COMPRESSED_RTP and
      CONTEXT_STATE as specified in [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>].  In addition, it enables
      the use of [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>] compliant compression including the use of
      Protocol Identifier COMPRESSED_UDP with additional flags and use
      of the C flag with the FULL_HEADER Protocol Identifier to indicate
      use of HDRCKSUM with COMPRESSED_RTP and COMPRESSED_UDP packets.
          0                   1
          0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
         +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
         |     Type      |    Length     |
         +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      Type
         2
<span class="grey">Ash, et al.                 Standards Track                    [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
      Length
         2
<span class="h4"><a class="selflink" id="section-4.2.4" href="#section-4.2.4">4.2.4</a>.  Negotiating Header Compression for Only TCP or Only Non-TCP</span>
<span class="h4">        Packets [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>]</span>
   In [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>] it was not possible to negotiate only TCP HC or only
   non-TCP HC because a value of 0 in the TCP_SPACE or the NON_TCP_SPACE
   fields actually means that 1 context is negotiated.
   A new suboption 3 is added to allow specifying that the number of
   contexts for TCP_SPACE or NON_TCP_SPACE is zero, disabling use of the
   corresponding compression.  This suboption MUST be included for IPHC
   PWs (0x001C) and MUST NOT be included for other PW types.
   Description
      Enable HC for only TCP or only non-TCP packets.
       0                   1                   2
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |     Type      |    Length     |   Parameter   |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      Type
         3
      Length
         3
      Parameter
         The parameter is 1 byte with one of the following values:
         1 = the number of contexts for TCP_SPACE is 0
         2 = the number of contexts for NON_TCP_SPACE is 0
   This suboption overrides the values that were previously assigned to
   TCP_SPACE and NON_TCP_SPACE in the IP HC option.
   If suboption 3 is included multiple times with parameter 1 and 2,
   compression is disabled for all packets.
<span class="grey">Ash, et al.                 Standards Track                    [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
<span class="h4"><a class="selflink" id="section-4.2.5" href="#section-4.2.5">4.2.5</a>.  Configuration Option Format [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>]</span>
   Both the network control protocol for IPv4, IPCP [<a href="./rfc1332" title=""The PPP Internet Protocol Control Protocol (IPCP)"">RFC1332</a>] and the
   IPv6 NCP, IPV6CP [<a href="./rfc2472" title=""IP Version 6 over PPP"">RFC2472</a>] may be used to negotiate IP HC parameters
   for their respective controlled protocols.  The format of the
   configuration option is the same for both IPCP and IPV6CP.  This
   configuration option MUST be included for ROHC PW types and MUST NOT
   be included for ECRTP, CRTP, and IPHC PW types.  A decompressor MUST
   reject this option (if misconfigured) for ECRTP, CRTP, and IPHC PW
   types, and send an explicit error message to the compressor
   [<a href="./rfc3544" title=""IP Header Compression over PPP,"">RFC3544</a>].
   Description
      This NCP configuration option is used to negotiate parameters for
      ROHC.  The option format is summarized below.  The fields are
      transmitted from left to right.
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |     Type      |    Length     |    IP-Compression-Protocol    |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |            MAX_CID            |             MRRU              |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |           MAX_HEADER          |          suboptions...        |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   Type
      2
   Length
      >= 10
      The length may be increased if the presence of additional
      parameters is indicated by additional suboptions.
   IP-Compression-Protocol
      0003 (hex)
   MAX_CID
      The MAX_CID field is two octets and indicates the maximum value of
      a context identifier.
      Suggested value: 15
      MAX_CID must be at least 0 and at most 16383 (The value 0 implies
      having one context).
<span class="grey">Ash, et al.                 Standards Track                    [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   MRRU
      The MRRU field is two octets and indicates the maximum
      reconstructed reception unit (see [<a href="#ref-RFC3095bis" title=""The RObust Header Compression (ROHC) Framework"">RFC3095bis</a>], Section 5.1.2).
      Suggested value: 0
   MAX_HEADER
      The largest header size in octets that may be compressed.
            Suggested value: 168 octets
      The value of MAX_HEADER should be large enough so that at least
      the outer network layer header can be compressed.  To increase
      compression efficiency MAX_HEADER should be set to a value large
      enough to cover common combinations of network and transport layer
      headers.
      NOTE: The four ROHC profiles defined in <a href="./rfc3095">RFC 3095</a> do not provide
      for a MAX_HEADER parameter.  The parameter MAX_HEADER defined by
      this document is therefore without consequence in these profiles
      because the maximum compressible header size is unspecified.
      Other profiles (e.g., ones based on <a href="./rfc2507">RFC 2507</a>) can make use of the
      parameter by explicitly referencing it.
   suboptions
      The suboptions field consists of zero or more suboptions.  Each
      suboption consists of a type field, a length field, and zero or
      more parameter octets, as defined by the suboption type.  The
      value of the length field indicates the length of the suboption in
      its entirety, including the lengths of the type and length fields.
             0                   1                   2
             0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
            |     Type      |    Length     |  Parameters...|
            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
<span class="h4"><a class="selflink" id="section-4.2.6" href="#section-4.2.6">4.2.6</a>.  PROFILES Suboption [<a href="./rfc3241" title=""Robust Header Compression (ROHC) over PPP"">RFC3241</a>]</span>
   The set of profiles to be enabled is subject to negotiation.  Most
   initial implementations of ROHC implement profiles 0x0000 to 0x0003.
   This option MUST be supplied.
   Description
      Define the set of profiles supported by the decompressor.
<span class="grey">Ash, et al.                 Standards Track                    [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
             0                   1                   2
             0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
            |     Type      |    Length     |  Profiles...  |
            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      Type
         1
      Length
         2n+2
      Value
         n octet-pairs in ascending order, each octet-pair specifying a
         ROHC profile supported.
   HC flow identification is being done now in many ways.  Since there
   are multiple possible approaches to the problem, no specific method
   is specified in this document.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>.  Encapsulation of Header Compressed Packets</span>
   The HC control parameter is used to identify the packet types for
   IPHC [<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>], CRTP [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>], and ECRTP [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>], as shown in
   Figure 4:
                                    1
                0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
               |0 0 0 0|Pkt Typ|  Length   |Res|
               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                 Figure 4: HC Control Parameter
   where:
   "Packet Type" encoding:
   0: ROHC Small-CIDs
   1: ROHC Large-CIDs
   2: FULL_HEADER
   3: COMPRESSED_TCP
   4: COMPRESSED_TCP_NODELTA
   5: COMPRESSED_NON_TCP
   6: COMPRESSED_RTP_8
   7: COMPRESSED_RTP_16
   8: COMPRESSED_UDP_8
   9: COMPRESSED_UDP_16
   10: CONTEXT_STATE
<span class="grey">Ash, et al.                 Standards Track                    [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   11-15: Not yet assigned.  (See <a href="#section-8">Section 8</a>, "IANA Considerations",
          for discussion of the registration rules.)
   As discussed in [<a href="#ref-ECMP-AVOID" title=""Avoiding Equal Cost Multipath Treatment in MPLS Networks"">ECMP-AVOID</a>], since this MPLS payload type is not IP,
   the first nibble is set to 0000 to avoid being mistaken for IP.  This
   is also consistent with the encoding of the PW MPLS control word
   (PWMCW) described in [<a href="./rfc4385" title=""Pseudowire Emulation Edge-to-Edge (PWE3) Control Word for Use over an MPLS PSN,"">RFC4385</a>]; however, the HC control parameter is
   not intended to be a PWMCW.
   Note that ROHC [<a href="./rfc3095" title=""RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed"">RFC3095</a>, <a href="#ref-RFC3095bis" title=""The RObust Header Compression (ROHC) Framework"">RFC3095bis</a>] provides its own packet type
   within the protocol; however, the HC control parameter MUST still be
   used to avoid the problems identified above.  Since the "Packet Type"
   will be there anyway, it is used to indicate ROHC CID size, in the
   same way as with PPP.
   The HC control parameter length field is ONLY used for short packets
   because padding may be appended by the Ethernet Data Link Layer.  If
   the length is greater than or equal to 64 octets, the length field
   MUST be set to zero.  If the MPLS payload is less than 64 bytes, then
   the length field MUST be set to the length of the PW payload plus the
   length of the HC control parameter.  Note that the last 2 bits in the
   HC control parameter are reserved.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>.  Packet Reordering</span>
   Packet reordering for ROHC is discussed in [<a href="./rfc4224" title=""RObust Header Compression (ROHC): ROHC over Channels that can Reorder Packets,"">RFC4224</a>], which is a
   useful source of information.  In case of lossy links and other
   reasons for reordering, implementation adaptations are needed to
   allow all the schemes to be used in this case.  Although CRTP is
   viewed as having risks for a number of PW environments due to
   reordering and loss, it is still the protocol of choice in many
   cases.  CRTP was designed for reliable point to point links with
   short delays.  It does not perform well over links with a high rate
   of packet loss, packet reordering, and long delays.  In such cases,
   ECRTP [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>] may be considered to increase robustness to both
   packet loss and misordering between the compressor and the
   decompressor.  This is achieved by repeating updates and sending of
   absolute (uncompressed) values in addition to delta values for
   selected context parameters.  IPHC should use TCP_NODELTA, ECRTP
   should send absolute values, ROHC should be adapted as discussed in
   [<a href="./rfc4224" title=""RObust Header Compression (ROHC): ROHC over Channels that can Reorder Packets,"">RFC4224</a>].  An evaluation and simulation of ECRTP and ROHC reordering
   is given in [<a href="#ref-REORDER-EVAL" title=""Evaluation and Implementation of Header Compression Algorithm ECRTP"">REORDER-EVAL</a>].
<span class="grey">Ash, et al.                 Standards Track                    [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>.  HC Pseudowire Setup Example</span>
   This example will trace the setup of an MPLS PW supporting bi-
   directional ECRTP [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>] traffic.  The example assumes the
   topology shown in Figure 1.  The PW will be set up between LSRs R1/HC
   and R4/HD.  LSRs R2 and R3 have no direct involvement in the
   signaling for this PW, other than to transport the signaling traffic.
   For this example, it is assumed that R1/HC has already obtained the
   IP address of R4/HD used for LDP signaling, and vice versa, that both
   R1/HC and R4/HD have been configured with the same 32-bit PW ID, as
   described in <a href="./rfc4447#section-5.2">Section 5.2 of [RFC4447]</a>, and that R1/HC has been
   configured to initiate the LDP discovery process.  Furthermore, we
   assume that R1/HC has been configured to receive a maximum of 200
   simultaneous ECRTP flows from R4/HD, and R4/HD has been configured to
   receive a maximum of 255 ECRTP flows from R1/HC.
   Assuming that there is no existing LDP session between R1/HC and
   R4/HD, the PW signaling must start by setting up an LDP session
   between them.  As described earlier in this document, LDP extended
   discovery is used between HC over MPLS LSRs.  Since R1/HC has been
   configured to initiate extended discovery, it will send LDP Targeted
   Hello messages to R4/HD's IP address at UDP port 646.  The Targeted
   Hello messages sent by R1/HC will have the "R" bit set in the Common
   Hello Parameters TLV, requesting R4/HD to send Targeted Hello
   messages back to R1/HC.  Since R4/HD has been configured to set up an
   HC PW with R1/HD, R4/HD will do as requested and send LDP Targeted
   Hello messages as unicast UDP packets to UDP port 646 of R1/HC's IP
   address.
   When R1/HC receives a Targeted Hello message from R4/HD, it may begin
   establishing an LDP session to R4/HD.  It starts this by initiating a
   TCP connection on port 646 to R4/HD's signaling IP address.  After
   successful TCP connection establishment, R1/HC sends an LDP
   Initialization message to R4/HD with the following characteristics:
   When R1/HC receives a Targeted Hello message from R4/HD, it may begin
   establishing an LDP session to R4/HD.  The procedure described in
   <a href="./rfc3036#section-2.5.2">Section 2.5.2 of [RFC3036]</a> is used to determine which LSR is the
   active LSR and which is the passive LSR.  Assume that R1/HC has the
   numerically higher IP address and therefore takes the active role.
   R1/HC starts by initiating a TCP connection on port 646 to R4/HD's
   signaling IP address.  After successful TCP connection establishment,
   R1/HC sends an LDP Initialization message to R4/HD with the following
   characteristics:
<span class="grey">Ash, et al.                 Standards Track                    [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   o Common Session Parameters TLV:
     - A bit = 0 (Downstream Unsolicited Mode)
     - D bit = 0 (Loop Detection Disabled)
     - PVLim = 0 (required when D bit = 0)
     - Receive LDP identifier (taken from R4/HD's Hello message)
       > 4 octets LSR identifier (typically an IP address with IPv4)
       > 2 octet Label space identifier (typically 0)
   o No Optional Parameters TLV
   Following the LDP session initialization state machine of <a href="./rfc3036#section-2.5.4">Section</a>
   <a href="./rfc3036#section-2.5.4">2.5.4 of [RFC3036]</a>, R4/HD would send a similar Initialization message
   to R1/HD.  The primary difference would be that R4/HD would use the
   LDP identifier it received in R1/HC's Hello message(s) as the Receive
   LDP identifier.  Assuming that all other fields in the Common Session
   Parameters TLV were acceptable to both sides, R1/HC would send an LDP
   Keepalive message to R4/HD, R4/HD would send a LDP Keepalive message
   to R1/HC, and the LDP session would become operational.
   At this point, either R1/HC or R4/HD may send LDP Label Mapping
   messages to configure the PW.  The Label Mapping message sent by a
   particular router advertises the label that should be used at the
   bottom of the MPLS label stack for all packets sent to that router
   and associated with the particular PW.  The Label Mapping message
   sent from R1/HC to R4/HD would have the following characteristics:
   o FEC TLV
     - FEC Element type 0x80 (PWid FEC Element, as defined in [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>]
     - Control Parameter bit = 1 (Control Parameter present)
     - PW type = 0x001B (ECRTP [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>])
     - Group ID as chosen by R1/HC
     - PW ID = the configured value for this PW, which must be the same
       as that sent in the Label Mapping message by R4/HD
     - Interface Parameter Sub-TLVs
       > Interface MTU sub-TLV (Type 0x01)
       > CRTP/ECRTP/IPHC HC over MPLS configuration sub-TLV (Type 0x0F)
         + Type = 2 (From <a href="./rfc3544">RFC 3544</a>)
         + Length = 16
         + TCP_SPACE = Don't Care (leave at suggested value = 15)
         + NON_TCP_SPACE = 200 (configured on R1)
         + F_MAX_PERIOD = Don't Care (leave at suggested value = 256)
         + F_MAX_TIME = Don't Care (leave at suggested value = 5
           seconds)
         + MAX_HEADER = 168 (Suggested Value)
         + Enhanced RTP-Compression Suboption
           & Type = 2
           & Length = 2
   o Label TLV - contains label selected by R1, Lr1
   o No Optional Parameters
<span class="grey">Ash, et al.                 Standards Track                    [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   The Label Mapping message sent from R4/HD to R1/HC would be almost
   identical to the one sent in the opposite direction, with the
   following exceptions:
   o R4/HD could select a different Group ID
   o The Value of NON_TCP_SPACE in the CRTP/ECRTP/IPHC HC over MPLS
     configuration sub-TLV would be 255 instead of 200, as configured
     on R4/HD
   o R4/HD would choose its own value for the Label TLV, Lr4
   As soon as either R1/HC or R4/HD has both transmitted and received
   Label Mapping Messages with the same PW Type and PW ID, that HC
   endpoint considers the PW established.  R1/HC could send ECRTP
   packets using the label it received in the Label Mapping Message from
   R4/HD, Lr4, and could identify received ECRTP packets by the label it
   had sent to R4/HD, Lr1.  And vice versa.
   In this case, assume that R1/HC has an IPv4 RTP flow to send to R4/HD
   that it wishes to compress using the ECRTP PW just set up.  The RTP
   flow is G.729 media with 20 bytes of payload in each RTP packet.  In
   this particular case, the IPv4 identifier changes by a small constant
   value between consecutive packets in the stream.  In the RTP layer of
   the flow, the Contributing Source Identifiers count is 0.  R1/HC
   decides to use 8-bit Context Identifiers for the compressed flow.
   Also, R1/HC determines that compression in this particular flow
   should be able to recover from the loss of 2 consecutive packets
   without requiring re-synchronization of the context (i.e., the "N"
   value from [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>] is 2).
   The first 3 (N + 1) packets of this flow would be sent as FULL_HEADER
   packets.  The MPLS and PW headers at the beginning of these packets
   would be formatted as follows:
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                Label                  | Exp |S|       TTL     |
   |                  XX                   |  XX |0|        XX     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                Label                  | Exp |S|       TTL     |
   |                 Lr4                   |  XX |1|        >0     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |       |Pkt Typ|  Length   |Res|
   |0 0 0 0|   2   |     62    |0 0|
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
               ^
               |
                -- 2 == FULL_HEADER
<span class="grey">Ash, et al.                 Standards Track                    [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
        where XX signifies either
        a. value determined by the MPLS routing layer
        b. don't care
   Immediately following the above header would come the FULL_HEADER
   packet as defined in [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>], which basically consists of the
   IP/UDP/RTP header, with the IP and UDP length field replaced by
   values encoding the CID, sequence number, and "generation", as
   defined in [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>].  The length field value of 62 comprises:
   o 2 bytes of HC control parameter (included in the above diagram)
   o 20 bytes of the IP header portion of the <a href="./rfc3545">RFC 3545</a> FULL_HEADER
   o 8 bytes of the UDP header portion of the <a href="./rfc3545">RFC 3545</a> FULL_HEADER
   o 12 bytes of the RTP header portion of the <a href="./rfc3545">RFC 3545</a> FULL_HEADER
   o 20 bytes of G.729 payload
   The next 3 RTP packets from this flow would be sent as
   COMPRESSED_UDP_8, to establish the absolute and delta values of the
   IPv4 identifier and RTP timestamp fields.  These packets would use
   the same ECRTP CID as the previous 3 FULL_HEADER packets.  The MPLS
   and PW headers at the beginning of these packets would be formatted
   as follows:
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                Label                  | Exp |S|       TTL     |
   |                  XX                   |  XX |0|        XX     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                Label                  | Exp |S|       TTL     |
   |                 Lr4                   |  XX |1|        >0     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |       |Pkt Typ|  Length   |Res|
   |0 0 0 0|   8   |     36    |0 0|
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
               ^
               |
                -- 8 == COMPRESSED_UDP_8
   There is no change in the MPLS label stack between the FULL_HEADER
   packets and the COMPRESSED_UDP packets.  The HC control parameter
   changes to reflect another ECRTP packet type following the control
   parameter, and a change of packet length.  The length changes because
   the new packet type more compactly encodes the headers.  The length
   field value of 36 comprises:
<span class="grey">Ash, et al.                 Standards Track                    [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   o 2 bytes of HC control parameter (included in the above diagram)
   o 1 byte of CID
   o 2 bytes of COMPRESSED_UDP fields that are not octet-aligned:
     - 4 bits of COMPRESSED_UDP flags
     - 4 bits of sequence number
     - 5 bits of COMPRESSED UDP extension flags
     - 3 bits MUST_BE_ZERO
   o 2 bytes of UDP checksum or HDRCKSUM
   o 1 byte of delta IPv4 ID
   o 2 bytes of delta RTP timestamp (changes by 160 in this case,
       differential encoding will encode as 2 bytes)
   o 2 bytes of absolute IPv4 ID
   o 4 bytes of absolute RTP timestamp
   o 20 bytes of G.729 payload
   After the context for the IPv4 ID and RTP timestamp is initialized.
   Subsequent packets on this flow, at least until the end of the talk
   spurt or until there is some other unexpected change in the
   IP/UDP/RTP headers, may be sent as COMPRESSED_RTP_8 packets.  Again,
   the same MPLS stack would be used for these packets, and the same
   value of the CID would be used in this case as for the packets
   described above.  The MPLS and PW headers at the beginning of these
   packets would be formatted as follows:
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                Label                  | Exp |S|       TTL     |
   |                  XX                   |  XX |0|        XX     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                Label                  | Exp |S|       TTL     |
   |                 Lr4                   |  XX |1|        >0     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |       |Pkt Typ|  Length   |Res|
   |0 0 0 0|   6   |     26    |0 0|
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
               ^
               |
                -- 6 == COMPRESSED_RTP_8
   The HC control parameter again changes to reflect another ECRTP
   packet type following the control parameter, and shorter length
   associated with an even more compact encoding of headers.  The length
   field value of 26 comprises:
<span class="grey">Ash, et al.                 Standards Track                    [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   o 2 bytes of HC control parameter (included in the above diagram)
   o 1 byte of CID
   o 1 byte COMPRESSED_UDP fields that are not octet-aligned:
     - 4 bits of COMPRESSED_RTP flags
     - 4 bits of sequence number
   o 2 bytes of UDP checksum or HDRCKSUM
   o 20 bytes of G.729 payload
   Additional flows in the same direction may be compressed using the
   same basic encapsulation, including the same PW label.  The CID that
   is part of the HC protocol is used to differentiate flows.  For
   traffic in the opposite direction, the primary change would be the PW
   label, Lr4, used in the example above would be replaced by the label
   Lr1 that R1/HC provides to R4/HD.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>.  Security Considerations</span>
   MPLS PW security considerations in general are discussed in [<a href="./rfc3985" title=""Pseudo Wire Emulation Edge-to- Edge (PWE3) Architecture,"">RFC3985</a>]
   and [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>], and those considerations also apply to this document.
   This document specifies an encapsulation and not the protocols that
   may be used to carry the encapsulated packets across the PSN, or the
   protocols being encapsulated.  Each such protocol may have its own
   set of security issues, but those issues are not affected by the
   encapsulations specified herein.
   The security considerations of the supported HC protocols [RFC2507,
   <a href="./rfc2508">RFC2508</a>, <a href="./rfc3095">RFC3095</a>, RFC3095bis, <a href="./rfc3545">RFC3545</a>] all apply to this document as
   well.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>.  Acknowledgements</span>
   The authors appreciate valuable inputs and suggestions from Loa
   Andersson, Scott Brim, Stewart Bryant, Spencer Dawkins, Adrian
   Farrel, Victoria Fineberg, Eric Gray, Allison Mankin, Luca Martini,
   Colin Perkins, Kristofer Sandlund, Yaakov Stein, George Swallow, Mark
   Townsley, Curtis Villamizar, and Magnus Westerlund.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>.  IANA Considerations</span>
   As discussed in <a href="#section-4.1">Section 4.1</a>, PW type values have been assigned by
   IANA, as follows:
   0x001A  ROHC Transport Header-compressed Packets    [<a href="#ref-RFC3095bis" title=""The RObust Header Compression (ROHC) Framework"">RFC3095bis</a>]
   0x001B  ECRTP Transport Header-compressed Packets   [<a href="./rfc3545" title=""Compressing IP/UDP/RTP Headers on Links with High Delay, Packet Loss, and Reordering,"">RFC3545</a>]
   0x001C  IPHC Transport Header-compressed Packets    [<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>]
   0x001D  CRTP Transport Header-compressed Packets    [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>]
   Procedures for registering new PW type values are given in [<a href="./rfc4446" title=""IANA Allocations for Pseudo Wire Edge To Edge Emulation (PWE3),"">RFC4446</a>].
<span class="grey">Ash, et al.                 Standards Track                    [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   As discussed in <a href="#section-4.2">Section 4.2</a>, Pseudowire Interface Parameter Sub-TLV
   type values have been specified by IANA, as follows:
   Parameter  ID Length        Description                   Reference
   ---------  ---------------  ----------------------------  ---------
   0x0D       up to 256 bytes  ROHC over MPLS configuration  <a href="./rfc4901">RFC 4901</a>
                               <a href="./rfc3241">RFC 3241</a>
   0x0F       up to 256 bytes  CRTP/ECRTP/IPHC HC over MPLS  <a href="./rfc4901">RFC 4901</a>
                               configuration <a href="./rfc3544">RFC 3544</a>
   As discussed in <a href="#section-4.3">Section 4.3</a>, IANA has defined a new registry, "Header
   Compression Over MPLS HC Control Parameter Packet Type".  This is a
   four-bit value.  Packet Types 0 through 10 are defined in <a href="#section-4.3">Section 4.3</a>
   of this document.  Packet Types 11 to 15 are to be assigned by IANA
   using the "Expert Review" policy defined in [<a href="./rfc2434" title="">RFC2434</a>].
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>.  Normative References</span>
   [<a id="ref-RFC2119">RFC2119</a>]      Bradner, S., "Key words for use in RFCs to Indicate
                  Requirement Levels", <a href="./rfc2119">RFC 2119</a>, March 1997.
   [<a id="ref-RFC3031">RFC3031</a>]      Rosen, E., Viswanathan, A., and R. Callon,
                  "Multiprotocol Label Switching Architecture", <a href="./rfc3031">RFC</a>
                  <a href="./rfc3031">3031</a>, January 2001.
   [<a id="ref-RFC3036">RFC3036</a>]      Andersson, L., Doolan, P., Feldman, N., Fredette, A.,
                  and B. Thomas, "LDP Specification", <a href="./rfc3036">RFC 3036</a>, January
                  2001.
   [<a id="ref-RFC3241">RFC3241</a>]      Bormann, C., "Robust Header Compression (ROHC) over
                  PPP", <a href="./rfc3241">RFC 3241</a>, April 2002.
   [<a id="ref-RFC3544">RFC3544</a>]      Engan, M., Casner, S., Bormann, C., and T. Koren, "IP
                  Header Compression over PPP", <a href="./rfc3544">RFC 3544</a>, July 2003.
   [<a id="ref-RFC4447">RFC4447</a>]      Martini, L., Ed., Rosen, E., El-Aawar, N., Smith, T.,
                  and G. Heron, "Pseudowire Setup and Maintenance Using
                  the Label Distribution Protocol (LDP)", <a href="./rfc4447">RFC 4447</a>,
                  April 2006.
<span class="grey">Ash, et al.                 Standards Track                    [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>.  Informative References</span>
   [<a id="ref-ECMP-AVOID">ECMP-AVOID</a>]   Swallow, G., Bryant, S., and L. Andersson, "Avoiding
                  Equal Cost Multipath Treatment in MPLS Networks", Work
                  in Progress, February 2007.
   [<a id="ref-REORDER-EVAL">REORDER-EVAL</a>] Knutsson, C., "Evaluation and Implementation of Header
                  Compression Algorithm ECRTP", <a href="http://epubl.luth.se/1402-1617/2004/286/LTU-EX-04286-SE.pdf">http://epubl.luth.se/</a>
                  <a href="http://epubl.luth.se/1402-1617/2004/286/LTU-EX-04286-SE.pdf">1402-1617/2004/286/LTU-EX-04286-SE.pdf</a>.
   [<a id="ref-RFC1332">RFC1332</a>]      McGregor, G., "The PPP Internet Protocol Control
                  Protocol (IPCP)", <a href="./rfc1332">RFC 1332</a>, May 1992.
   [<a id="ref-RFC1661">RFC1661</a>]      Simpson, W., Ed., "The Point-to-Point Protocol (PPP)",
                  STD 51, <a href="./rfc1661">RFC 1661</a>, July 1994.
   [<a id="ref-RFC2434">RFC2434</a>]      Narten, T. and H. Alvestrand, "Guidelines for Writing
                  an IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc2434">RFC</a>
                  <a href="./rfc2434">2434</a>, October 1998.
   [<a id="ref-RFC2472">RFC2472</a>]      Haskin, D. and E. Allen, "IP Version 6 over PPP", <a href="./rfc2472">RFC</a>
                  <a href="./rfc2472">2472</a>, December 1998.
   [<a id="ref-RFC2507">RFC2507</a>]      Degermark, M., Nordgren, B., and S. Pink, "IP Header
                  Compression", <a href="./rfc2507">RFC 2507</a>, February 1999.
   [<a id="ref-RFC2508">RFC2508</a>]      Casner, S. and V. Jacobson, "Compressing IP/UDP/RTP
                  Headers for Low-Speed Serial Links", <a href="./rfc2508">RFC 2508</a>,
                  February 1999.
   [<a id="ref-RFC3095">RFC3095</a>]      Bormann, C., et al., "RObust Header Compression
                  (ROHC):  Framework and four profiles: RTP, UDP, ESP,
                  and uncompressed", <a href="./rfc3095">RFC 3095</a>, July 2001.
   [<a id="ref-RFC3095bis">RFC3095bis</a>]   Jonsson, L-E. Pelletier, G., and K. Sandlund, "The
                  RObust Header Compression (ROHC) Framework", Work in
                  Progress, November 2006.
   [<a id="ref-RFC3209">RFC3209</a>]      Awduche, D., et al., "RSVP-TE: Extensions to RSVP for
                  LSP Tunnels," <a href="./rfc3209">RFC 3209</a>, December 2001.
   [<a id="ref-RFC3544">RFC3544</a>]      Koren, T., et al., "IP Header Compression over PPP,"
                  <a href="./rfc3544">RFC 3544</a>, July 2003.
   [<a id="ref-RFC3545">RFC3545</a>]      Koren, T., et al., "Compressing IP/UDP/RTP Headers on
                  Links with High Delay, Packet Loss, and Reordering,"
                  <a href="./rfc3545">RFC 3545</a>, July 2003.
<span class="grey">Ash, et al.                 Standards Track                    [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
   [<a id="ref-RFC3246">RFC3246</a>]      Davie, B., et al., "An Expedited Forwarding PHB (Per-
                  Hop Behavior)," <a href="./rfc3246">RFC 3246</a>, March 2002.
   [<a id="ref-RFC3270">RFC3270</a>]      Le Faucheur, F., et al., "Multi-Protocol Label
                  Switching (MPLS) Support of Differentiated Services,"
                  <a href="./rfc3270">RFC 3270</a>, May 2002.
   [<a id="ref-RFC3550">RFC3550</a>]      Schulzrinne, H., et al., "RTP: A Transport Protocol
                  for Real-Time Applications," <a href="./rfc3550">RFC 3550</a>, July 2003.
   [<a id="ref-RFC3843">RFC3843</a>]      Jonsson, L-E. and G. Pelletier, "RObust Header
                  Compression (ROHC): A Compression Profile for IP", <a href="./rfc3843">RFC</a>
                  <a href="./rfc3843">3843</a>, June 2004.
   [<a id="ref-RFC3985">RFC3985</a>]      Bryant, S., Pate, P., "Pseudo Wire Emulation Edge-to-
                  Edge (PWE3) Architecture," <a href="./rfc3985">RFC 3985</a>, March 2005.
   [<a id="ref-RFC4224">RFC4224</a>]      Pelletier, G., et al., "RObust Header Compression
                  (ROHC): ROHC over Channels that can Reorder Packets,"
                  <a href="./rfc4224">RFC 4224</a>, January 2006.
   [<a id="ref-RFC4247">RFC4247</a>]      Ash, G., Goode, B., Hand, J., "Requirements for Header
                  Compression over MPLS", <a href="./rfc4247">RFC 4247</a>, November 2005.
   [<a id="ref-RFC4364">RFC4364</a>]      Rosen, E., Rekhter, Y., "BGP/MPLS IP Virtual Private
                  Networks (VPN)s", <a href="./rfc4364">RFC 4364</a>, February 2006.
   [<a id="ref-RFC4385">RFC4385</a>]      Bryant, S., et al., "Pseudowire Emulation Edge-to-Edge
                  (PWE3) Control Word for Use over an MPLS PSN," <a href="./rfc4385">RFC</a>
                  <a href="./rfc4385">4385</a>, February 2006.
   [<a id="ref-RFC4446">RFC4446</a>]      Martini, L., et al., "IANA Allocations for Pseudo Wire
                  Edge To Edge Emulation (PWE3)," <a href="./rfc4446">RFC 4446</a>, April 2006.
   [<a id="ref-RFC4815">RFC4815</a>]      Jonsson, L-E., Sandlund, K., Pelletier, G., and P.
                  Kremer, "RObust Header Compression (ROHC): Corrections
                  and Clarifications to <a href="./rfc3095">RFC 3095</a>", <a href="./rfc4815">RFC 4815</a>, February
                  2007.
<span class="grey">Ash, et al.                 Standards Track                    [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>.  Contributors</span>
   Besides the editors listed below, the following people contributed to
   the document:
   Bur Goode
   AT&T
   Phone: +1 203-341-8705
   EMail: bgoode@att.com
   Lars-Erik Jonsson
   Optand 737
   SE-831 92 Ostersund, Sweden
   Phone: +46 70 365 20 58
   EMail: lars-erik@lejonsson.com
   Raymond Zhang
   Infonet Services Corporation
   2160 E. Grand Ave. El Segundo, CA 90025 USA
   EMail: zhangr@bt.infonet.com
Editors' Addresses
   Jerry Ash
   AT&T
   Email: gash5107@yahoo.com
   Jim Hand
   AT&T
   Room MT A2-1A03
   200 Laurel Avenue
   Middletown, NJ 07748, USA
   Phone: +1 732-420-3017
   EMail: jameshand@att.com
   Andrew G. Malis
   Verizon Communications
   40 Sylvan Road
   Waltham, MA  02451 USA
   EMail: andrew.g.malis@verizon.com
<span class="grey">Ash, et al.                 Standards Track                    [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc4901">RFC 4901</a>         Header Compression over MPLS Protocol         June 2007</span>
Full Copyright Statement
   Copyright (C) The IETF Trust (2007).
   This document is subject to the rights, licenses and restrictions
   contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, 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 <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
   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
   <a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
   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.
Acknowledgement
   Funding for the RFC Editor function is currently provided by the
   Internet Society.
Ash, et al.                 Standards Track                    [Page 34]
</pre>
 
     |