1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
|
<pre>Internet Engineering Task Force (IETF) P. Quinn, Ed.
Request for Comments: 8300 Cisco
Category: Standards Track U. Elzur, Ed.
ISSN: 2070-1721 Intel
C. Pignataro, Ed.
Cisco
January 2018
<span class="h1">Network Service Header (NSH)</span>
Abstract
This document describes a Network Service Header (NSH) imposed on
packets or frames to realize Service Function Paths (SFPs). The NSH
also provides a mechanism for metadata exchange along the
instantiated service paths. The NSH is the Service Function Chaining
(SFC) encapsulation required to support the SFC architecture (defined
in <a href="./rfc7665">RFC 7665</a>).
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="https://www.rfc-editor.org/info/rfc8300">https://www.rfc-editor.org/info/rfc8300</a>.
Copyright Notice
Copyright (c) 2018 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Applicability ..............................................<a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. Requirements Language ......................................<a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Definition of Terms ........................................<a href="#page-4">4</a>
<a href="#section-1.4">1.4</a>. Problem Space ..............................................<a href="#page-6">6</a>
<a href="#section-1.5">1.5</a>. NSH-Based Service Chaining .................................<a href="#page-6">6</a>
<a href="#section-2">2</a>. Network Service Header ..........................................<a href="#page-7">7</a>
<a href="#section-2.1">2.1</a>. Network Service Header Format ..............................<a href="#page-7">7</a>
<a href="#section-2.2">2.2</a>. NSH Base Header ............................................<a href="#page-8">8</a>
<a href="#section-2.3">2.3</a>. Service Path Header .......................................<a href="#page-11">11</a>
<a href="#section-2.4">2.4</a>. NSH MD Type 1 .............................................<a href="#page-12">12</a>
<a href="#section-2.5">2.5</a>. NSH MD Type 2 .............................................<a href="#page-13">13</a>
<a href="#section-2.5.1">2.5.1</a>. Optional Variable-Length Metadata ..................<a href="#page-13">13</a>
<a href="#section-3">3</a>. NSH Actions ....................................................<a href="#page-15">15</a>
<a href="#section-4">4</a>. NSH Transport Encapsulation ....................................<a href="#page-16">16</a>
<a href="#section-5">5</a>. Fragmentation Considerations ...................................<a href="#page-17">17</a>
<a href="#section-6">6</a>. Service Path Forwarding with NSH ...............................<a href="#page-18">18</a>
<a href="#section-6.1">6.1</a>. SFFs and Overlay Selection ................................<a href="#page-18">18</a>
<a href="#section-6.2">6.2</a>. Mapping the NSH to Network Topology .......................<a href="#page-21">21</a>
<a href="#section-6.3">6.3</a>. Service Plane Visibility ..................................<a href="#page-21">21</a>
<a href="#section-6.4">6.4</a>. Service Graphs ............................................<a href="#page-22">22</a>
<a href="#section-7">7</a>. Policy Enforcement with NSH ....................................<a href="#page-22">22</a>
<a href="#section-7.1">7.1</a>. NSH Metadata and Policy Enforcement .......................<a href="#page-22">22</a>
<a href="#section-7.2">7.2</a>. Updating/Augmenting Metadata ..............................<a href="#page-24">24</a>
<a href="#section-7.3">7.3</a>. Service Path Identifier and Metadata ......................<a href="#page-25">25</a>
<a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-26">26</a>
<a href="#section-8.1">8.1</a>. NSH Security Considerations from Operators' Environments ..27
<a href="#section-8.2">8.2</a>. NSH Security Considerations from the SFC Architecture .....<a href="#page-28">28</a>
<a href="#section-8.2.1">8.2.1</a>. Integrity ..........................................<a href="#page-29">29</a>
<a href="#section-8.2.2">8.2.2</a>. Confidentiality ....................................<a href="#page-31">31</a>
<a href="#section-9">9</a>. IANA Considerations ............................................<a href="#page-32">32</a>
<a href="#section-9.1">9.1</a>. NSH Parameters ............................................<a href="#page-32">32</a>
<a href="#section-9.1.1">9.1.1</a>. NSH Base Header Bits ...............................<a href="#page-32">32</a>
<a href="#section-9.1.2">9.1.2</a>. NSH Version ........................................<a href="#page-32">32</a>
<a href="#section-9.1.3">9.1.3</a>. NSH MD Types .......................................<a href="#page-33">33</a>
<a href="#section-9.1.4">9.1.4</a>. NSH MD Class .......................................<a href="#page-33">33</a>
9.1.5. NSH IETF-Assigned Optional Variable-Length
Metadata Types .....................................<a href="#page-34">34</a>
<a href="#section-9.1.6">9.1.6</a>. NSH Next Protocol ..................................<a href="#page-35">35</a>
<a href="#section-10">10</a>. NSH-Related Codepoints ........................................<a href="#page-35">35</a>
<a href="#section-10.1">10.1</a>. NSH Ethertype ............................................<a href="#page-35">35</a>
<a href="#section-11">11</a>. References ....................................................<a href="#page-36">36</a>
Acknowledgments ...................................................<a href="#page-38">38</a>
Contributors ......................................................<a href="#page-39">39</a>
Authors' Addresses ................................................<a href="#page-40">40</a>
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Service Functions are widely deployed and essential in many networks.
These Service Functions provide a range of features such as security,
WAN acceleration, and server load balancing. Service Functions may
be instantiated at different points in the network infrastructure
such as the WAN, data center, and so forth.
Prior to development of the SFC architecture [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>] and the
protocol specified in this document, current Service Function
deployment models have been relatively static and bound to topology
for insertion and policy selection. Furthermore, they do not adapt
well to elastic service environments enabled by virtualization.
New data-center network and cloud architectures require more flexible
Service Function deployment models. Additionally, the transition to
virtual platforms demands an agile service insertion model that
supports dynamic and elastic service delivery. Specifically, the
following functions are necessary:
1. The movement of Service Functions and application workloads in
the network.
2. The ability to easily bind service policy to granular
information, such as per-subscriber state.
3. The capability to steer traffic to the requisite Service
Function(s).
This document, the Network Service Header (NSH) specification,
defines a new data-plane protocol, which is an encapsulation for
SFCs. The NSH is designed to encapsulate an original packet or frame
and, in turn, be encapsulated by an outer transport encapsulation
(which is used to deliver the NSH to NSH-aware network elements), as
shown in Figure 1:
+------------------------------+
| Transport Encapsulation |
+------------------------------+
| Network Service Header (NSH) |
+------------------------------+
| Original Packet / Frame |
+------------------------------+
Figure 1: Network Service Header Encapsulation
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
The NSH is composed of the following elements:
1. Service Function Path identification.
2. Indication of location within a Service Function Path.
3. Optional, per-packet metadata (fixed-length or variable).
[<a id="ref-RFC7665">RFC7665</a>] provides an overview of a service chaining architecture
that clearly defines the roles of the various elements and the scope
of a SFC encapsulation. Figure 3 of [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>] depicts the SFC
architectural components after classification. The NSH is the SFC
encapsulation referenced in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Applicability</span>
The NSH is designed to be easy to implement across a range of
devices, both physical and virtual, including hardware platforms.
The intended scope of the NSH is for use within a single provider's
operational domain. This deployment scope is deliberately
constrained, as explained also in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>], and limited to a single
network administrative domain. In this context, a "domain" is a set
of network entities within a single administration. For example, a
network administrative domain can include a single data center, or an
overlay domain using virtual connections and tunnels. A corollary is
that a network administrative domain has a well-defined perimeter.
An NSH-aware control plane is outside the scope of this document.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Requirements Language</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
<a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>] [<a href="./rfc8174" title=""Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"">RFC8174</a>] when, and only when, they appear in all
capitals, as shown here.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Definition of Terms</span>
Byte: All references to "bytes" in this document refer to 8-bit
bytes, or octets.
Classification: Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
Classifier: Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Metadata (MD): Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>]. The metadata, or context
information shared between Classifiers and SFs, and among SFs, is
carried on the NSH's Context Headers. It allows summarizing a
classification result in the packet itself, avoiding subsequent
re-classifications. Examples of metadata include classification
information used for policy enforcement and network context for
forwarding after service delivery.
Network Locator: Data-plane address, typically IPv4 or IPv6, used to
send and receive network traffic.
Network Node/Element: Device that forwards packets or frames based
on an outer header (i.e., transport encapsulation) information.
Network Overlay: Logical network built on top of an existing network
(the underlay). Packets are encapsulated or tunneled to create
the overlay network topology.
NSH-aware: NSH-aware means SFC-encapsulation-aware, where the NSH
provides the SFC encapsulation. This specification uses NSH-aware
as a more specific term from the more generic term "SFC-aware"
[<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
Service Classifier: Logical entity providing classification
function. Since they are logical, Classifiers may be co-resident
with SFC elements such as SFs or SFFs. Service Classifiers
perform classification and impose the NSH. The initial Classifier
imposes the initial NSH and sends the NSH packet to the first SFF
in the path. Non-initial (i.e., subsequent) classification can
occur as needed and can alter, or create a new service path.
Service Function (SF): Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
Service Function Chain (SFC): Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
Service Function Forwarder (SFF): Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
Service Function Path (SFP): Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
Service Plane: The collection of SFFs and associated SFs creates a
service-plane overlay in which all SFs and SFC Proxies reside
[<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
SFC Proxy: Defined in [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Problem Space</span>
The NSH addresses several limitations associated with Service
Function deployments. [<a href="./rfc7498" title=""Problem Statement for Service Function Chaining"">RFC7498</a>] provides a comprehensive review of
those issues.
<span class="h3"><a class="selflink" id="section-1.5" href="#section-1.5">1.5</a>. NSH-Based Service Chaining</span>
The NSH creates a dedicated service plane; more specifically, the NSH
enables:
1. Topological Independence: Service forwarding occurs within the
service plane, so the underlying network topology does not
require modification. The NSH provides an identifier used to
select the network overlay for network forwarding.
2. Service Chaining: The NSH enables service chaining per [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>].
The NSH contains path identification information needed to
realize a service path. Furthermore, the NSH provides the
ability to monitor and troubleshoot a service chain, end-to-end
via service-specific Operations, Administration, and Maintenance
(OAM) messages. The NSH fields can be used by administrators
(for example, via a traffic analyzer) to verify the path
specifics (e.g., accounting, ensuring correct chaining, providing
reports, etc.) of packets being forwarded along a service path.
3. The NSH provides a mechanism to carry shared metadata between
participating entities and Service Functions. The semantics of
the shared metadata are communicated via a control plane (which
is outside the scope of this document) to participating nodes.
Section 3.3 of [<a href="#ref-SFC-CONTROL-PLANE">SFC-CONTROL-PLANE</a>] provides an example of this.
Examples of metadata include classification information used for
policy enforcement and network context for forwarding post
service delivery. Sharing the metadata allows Service Functions
to share initial and intermediate classification results with
downstream Service Functions saving re-classification, where
enough information was enclosed.
4. The NSH offers a common and standards-based header for service
chaining to all network and service nodes.
5. Transport Encapsulation Agnostic: The NSH is transport
encapsulation independent: meaning it can be transported by a
variety of encapsulation protocols. An appropriate (for a given
deployment) encapsulation protocol can be used to carry NSH-
encapsulated traffic. This transport encapsulation may form an
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
overlay network; and if an existing overlay topology provides the
required service path connectivity, that existing overlay may be
used.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Network Service Header</span>
An NSH is imposed on the original packet/frame. This NSH contains
service path information and, optionally, metadata that are added to
a packet or frame and used to create a service plane. Subsequently,
an outer transport encapsulation is imposed on the NSH, which is used
for network forwarding.
A Service Classifier adds the NSH. The NSH is removed by the last
SFF in the service chain or by an SF that consumes the packet.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Network Service Header Format</span>
The NSH is composed of a 4-byte Base Header, a 4-byte Service Path
Header, and optional Context Headers, as shown in Figure 2.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Base Header |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Service Path Header |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
~ Context Header(s) ~
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 2: Network Service Header
Base Header: Provides information about the service header and the
payload protocol.
Service Path Header: Provides path identification and location
within a service path.
Context Header: Carries metadata (i.e., context data) along a
service path.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. NSH Base Header</span>
Figure 3 depicts the NSH Base Header:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Ver|O|U| TTL | Length |U|U|U|U|MD Type| Next Protocol |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 3: NSH Base Header
The field descriptions are as follows:
Version: The Version field is used to ensure backward compatibility
going forward with future NSH specification updates. It MUST be
set to 0x0 by the sender, in this first revision of the NSH. If a
packet presumed to carry an NSH header is received at an SFF, and
the SFF does not understand the version of the protocol as
indicated in the base header, the packet MUST be discarded, and
the event SHOULD be logged. Given the widespread implementation
of existing hardware that uses the first nibble after an MPLS
label stack for Equal-Cost Multipath (ECMP) decision processing,
this document reserves version 01b. This value MUST NOT be used
in future versions of the protocol. Please see [<a href="./rfc7325" title=""MPLS Forwarding Compliance and Performance Requirements"">RFC7325</a>] for
further discussion of MPLS-related forwarding requirements.
O bit: Setting this bit indicates an OAM packet (see [<a href="./rfc6291" title=""Guidelines for the Use of the "">RFC6291</a>]).
The actual format and processing of SFC OAM packets is outside the
scope of this specification (for example, see [<a href="#ref-SFC-OAM-FRAMEWORK">SFC-OAM-FRAMEWORK</a>]
for one approach).
The O bit MUST be set for OAM packets and MUST NOT be set for
non-OAM packets. The O bit MUST NOT be modified along the SFP.
SF/SFF/SFC Proxy/Classifier implementations that do not support
SFC OAM procedures SHOULD discard packets with O bit set, but MAY
support a configurable parameter to enable forwarding received SFC
OAM packets unmodified to the next element in the chain.
Forwarding OAM packets unmodified by SFC elements that do not
support SFC OAM procedures may be acceptable for a subset of OAM
functions, but it can result in unexpected outcomes for others;
thus, it is recommended to analyze the impact of forwarding an OAM
packet for all OAM functions prior to enabling this behavior. The
configurable parameter MUST be disabled by default.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
TTL: Indicates the maximum SFF hops for an SFP. This field is used
for service-plane loop detection. The initial TTL value SHOULD be
configurable via the control plane; the configured initial value
can be specific to one or more SFPs. If no initial value is
explicitly provided, the default initial TTL value of 63 MUST be
used. Each SFF involved in forwarding an NSH packet MUST
decrement the TTL value by 1 prior to NSH forwarding lookup.
Decrementing by 1 from an incoming value of 0 shall result in a
TTL value of 63. The packet MUST NOT be forwarded if TTL is,
after decrement, 0.
This TTL field is the primary loop-prevention mechanism. This TTL
mechanism represents a robust complement to the Service Index (see
<a href="#section-2.3">Section 2.3</a>), as the TTL is decremented by each SFF. The handling
of an incoming 0 TTL allows for better, although not perfect,
interoperation with pre-standard implementations that do not
support this TTL field.
Length: The total length, in 4-byte words, of the NSH including the
Base Header, the Service Path Header, the Fixed-Length Context
Header, or Variable-Length Context Header(s). The length MUST be
0x6 for MD Type 0x1, and it MUST be 0x2 or greater for MD Type
0x2. The length of the Network Service Header MUST be an integer
multiple of 4 bytes; thus, variable-length metadata is always
padded out to a multiple of 4 bytes.
Unassigned bits: All other flag fields, marked U, are unassigned and
available for future use; see <a href="#section-9.1.1">Section 9.1.1</a>. Unassigned bits MUST
be set to zero upon origination, and they MUST be ignored and
preserved unmodified by other NSH supporting elements. At
reception, all elements MUST NOT modify their actions based on
these unknown bits.
Metadata (MD) Type: Indicates the format of the NSH beyond the
mandatory NSH Base Header and the Service Path Header. MD Type
defines the format of the metadata being carried. Please see the
IANA Considerations in <a href="#section-9.1.3">Section 9.1.3</a>.
This document specifies the following four MD Type values:
0x0: This is a reserved value. Implementations SHOULD silently
discard packets with MD Type 0x0.
0x1: This indicates that the format of the header includes a
Fixed-Length Context Header (see Figure 5 below).
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
0x2: This does not mandate any headers beyond the Base Header and
Service Path Header, but may contain optional Variable-
Length Context Header(s). With MD Type 0x2, a length of 0x2
implies there are no Context Headers. The semantics of the
Variable-Length Context Header(s) are not defined in this
document. The format of the optional Variable-Length
Context Headers is provided in <a href="#section-2.5.1">Section 2.5.1</a>.
0xF: This value is reserved for experimentation and testing, as
per [<a href="./rfc3692" title=""Assigning Experimental and Testing Numbers Considered Useful"">RFC3692</a>]. Implementations not explicitly configured to
be part of an experiment SHOULD silently discard packets
with MD Type 0xF.
The format of the Base Header and the Service Path Header is
invariant and not affected by MD Type.
The NSH MD Type 1 and MD Type 2 are described in detail in
Sections <a href="#section-2.4">2.4</a> and <a href="#section-2.5">2.5</a>, respectively. NSH implementations MUST
support MD Types 0x1 and 0x2 (where the length is 0x2). NSH
implementations SHOULD support MD Type 0x2 with length greater
than 0x2. Devices that do not support MD Type 0x2 with a length
greater than 0x2 MUST ignore any optional Context Headers and
process the packet without them; the Base Header Length field can
be used to determine the original payload offset if access to the
original packet/frame is required. This specification does not
disallow the MD Type value from changing along an SFP; however,
the specification of the necessary mechanism to allow the MD Type
to change along an SFP are outside the scope of this document and
would need to be defined for that functionality to be available.
Packets with MD Type values not supported by an implementation
MUST be silently dropped.
Next Protocol: Indicates the protocol type of the encapsulated data.
The NSH does not alter the inner payload, and the semantics on the
inner protocol remain unchanged due to NSH SFC. Please see the
IANA Considerations in <a href="#section-9.1.6">Section 9.1.6</a>.
This document defines the following Next Protocol values:
0x1: IPv4
0x2: IPv6
0x3: Ethernet
0x4: NSH
0x5: MPLS
0xFE: Experiment 1
0xFF: Experiment 2
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
The functionality of hierarchical NSH using a Next Protocol value
of 0x4 (NSH) is outside the scope of this specification. Packets
with Next Protocol values not supported SHOULD be silently dropped
by default, although an implementation MAY provide a configuration
parameter to forward them. Additionally, an implementation not
explicitly configured for a specific experiment [<a href="./rfc3692" title=""Assigning Experimental and Testing Numbers Considered Useful"">RFC3692</a>] SHOULD
silently drop packets with Next Protocol values 0xFE and 0xFF.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Service Path Header</span>
Figure 4 shows the format of the Service Path Header:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Service Path Identifier (SPI) | Service Index |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Service Path Identifier (SPI): 24 bits
Service Index (SI): 8 bits
Figure 4: NSH Service Path Header
The meaning of these fields is as follows:
Service Path Identifier (SPI): Uniquely identifies a Service Function
Path (SFP). Participating nodes MUST use this identifier for SFP
selection. The initial Classifier MUST set the appropriate SPI for a
given classification result.
Service Index (SI): Provides location within the SFP. The initial
Classifier for a given SFP SHOULD set the SI to 255; however, the
control plane MAY configure the initial value of the SI as
appropriate (i.e., taking into account the length of the SFP). The
Service Index MUST be decremented by a value of 1 by Service
Functions or by SFC Proxy nodes after performing required services;
the new decremented SI value MUST be used in the egress packet's NSH.
The initial Classifier MUST send the packet to the first SFF in the
identified SFP for forwarding along an SFP. If re-classification
occurs, and that re-classification results in a new SPI, the
(re-)Classifier is, in effect, the initial Classifier for the
resultant SPI.
The SI is used in conjunction with the Service Path Identifier for
SFP selection and for determining the next SFF/SF in the path. The
SI is also valuable when troubleshooting or reporting service paths.
While the TTL provides the primary SFF-based loop prevention for this
mechanism, SI decrement by SF serves as a limited loop-prevention
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
mechanism. NSH packets, as described above, are discarded when an
SFF decrements the TTL to 0. In addition, an SFF that is not the
terminal SFF for an SFP will discard any NSH packet with an SI of 0,
as there will be no valid next SF information.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. NSH MD Type 1</span>
When the Base Header specifies MD Type 0x1, a Fixed-Length Context
Header (16-bytes) MUST be present immediately following the Service
Path Header, as per Figure 5. The value of a Fixed-Length Context
Header that carries no metadata MUST be set to zero.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Ver|O|U| TTL | Length |U|U|U|U|MD Type| Next Protocol |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Service Path Identifier | Service Index |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| Fixed-Length Context Header |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 5: NSH MD Type 0x1
This specification does not make any assumptions about the content of
the 16-byte Context Header that must be present when the MD Type
field is set to 1, and it does not describe the structure or meaning
of the included metadata.
An SFC-aware SF or SFC Proxy needs to receive the data structure and
semantics first in order to process the data placed in the mandatory
context field. The data structure and semantics include both the
allocation schema and order as well as the meaning of the included
data. How an SFC-aware SF or SFC Proxy gets the data structure and
semantics is outside the scope of this specification.
An SF or SFC Proxy that does not know the format or semantics of the
Context Header for an NSH with MD Type 1 MUST discard any packet with
such an NSH (i.e., MUST NOT ignore the metadata that it cannot
process), and MUST log the event at least once per the SPI for which
the event occurs (subject to thresholding).
[<a id="ref-NSH-DC-ALLOCATION">NSH-DC-ALLOCATION</a>] and [<a href="#ref-NSH-BROADBAND-ALLOCATION">NSH-BROADBAND-ALLOCATION</a>] provide specific
examples of how metadata can be allocated.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. NSH MD Type 2</span>
When the Base Header specifies MD Type 0x2, zero or more Variable-
Length Context Headers MAY be added, immediately following the
Service Path Header (see Figure 6). Therefore, Length = 0x2,
indicates that only the Base Header and Service Path Header are
present (and in that order). The optional Variable-Length Context
Headers MUST be of an integer number of 4-bytes. The Base Header
Length field MUST be used to determine the offset to locate the
original packet or frame for SFC nodes that require access to that
information.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Ver|O|U| TTL | Length |U|U|U|U|MD Type| Next Protocol |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Service Path Identifier | Service Index |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
~ Variable-Length Context Headers (opt.) ~
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 6: NSH MD Type 0x2
<span class="h4"><a class="selflink" id="section-2.5.1" href="#section-2.5.1">2.5.1</a>. Optional Variable-Length Metadata</span>
The format of the optional Variable-Length Context Headers, is as
depicted in Figure 7.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Metadata Class | Type |U| Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Variable-Length Metadata |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 7: Variable-Length Context Headers
Metadata Class (MD Class): Defines the scope of the Type field to
provide a hierarchical namespace. <a href="#section-9.1.4">Section 9.1.4</a> defines how the
MD Class values can be allocated to standards bodies, vendors, and
others.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Type: Indicates the explicit type of metadata being carried. The
definition of the Type is the responsibility of the MD Class
owner.
Unassigned bit: One unassigned bit is available for future use.
This bit MUST NOT be set, and it MUST be ignored on receipt.
Length: Indicates the length of the variable-length metadata, in
bytes. In case the metadata length is not an integer number of
4-byte words, the sender MUST add pad bytes immediately following
the last metadata byte to extend the metadata to an integer number
of 4-byte words. The receiver MUST round the Length field up to
the nearest 4-byte-word boundary, to locate and process the next
field in the packet. The receiver MUST access only those bytes in
the metadata indicated by the Length field (i.e., actual number of
bytes) and MUST ignore the remaining bytes up to the nearest
4-byte-word boundary. The length may be 0 or greater.
A value of 0 denotes a Context Header without a Variable-Length
Metadata field.
This specification does not make any assumption about Context Headers
that are mandatory to implement or those that are mandatory to
process. These considerations are deployment specific. However, the
control plane is entitled to instruct SFC-aware SFs with the data
structure of the Context Header together with its scoping (see e.g.,
Section 3.3.3 of [<a href="#ref-SFC-CONTROL-PLANE">SFC-CONTROL-PLANE</a>]).
Upon receipt of a packet that belongs to a given SFP, if a mandatory-
to-process Context Header is missing in that packet, the SFC-aware SF
MUST NOT process the packet and MUST log an error at least once per
the SPI for which the mandatory metadata is missing.
If multiple mandatory-to-process Context Headers are required for a
given SFP, the control plane MAY instruct the SFC-aware SF with the
order to consume these Context Headers. If no instructions are
provided and the SFC-aware SF will make use of or modify the specific
Context Header, then the SFC-aware SF MUST process these Context
Headers in the order they appear in an NSH packet.
If multiple instances of the same metadata are included in an NSH
packet, but the definition of that Context Header does not allow for
it, the SFC-aware SF MUST process the first instance and ignore
subsequent instances. The SFC-aware SF MAY log or increase a counter
for this event.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. NSH Actions</span>
NSH-aware nodes (which include Service Classifiers, SFFs, SFs, and
SFC Proxies) may alter the contents of the NSH headers. These nodes
have several possible NSH-related actions:
1. Insert or remove the NSH: These actions can occur respectively at
the start and end of a service path. Packets are classified, and
if determined to require servicing, an NSH will be imposed. A
Service Classifier MUST insert an NSH at the start of an SFP. An
imposed NSH MUST contain both a valid Base Header and Service
Path Header. At the end of an SFP, an SFF MUST remove the NSH
before forwarding or delivering the un-encapsulated packet.
Therefore, it is the last node operating on the service header.
Multiple logical Classifiers may exist within a given service
path. Non-initial Classifiers may re-classify data, and that
re-classification MAY result in the selection of a different SFP.
When the logical Classifier performs re-classification that
results in a change of service path, it MUST replace the existing
NSH with a new NSH with the Base Header and Service Path Header
reflecting the new service path information and MUST set the
initial SI. The O bit, the TTL field, and unassigned flags MUST
be copied transparently from the old NSH to a new NSH. Metadata
MAY be preserved in the new NSH.
2. Select service path: The Service Path Header provides service
path information and is used by SFFs to determine correct service
path selection. SFFs MUST use the Service Path Header for
selecting the next SF or SFF in the service path.
3. Update the NSH: SFs MUST decrement the service index by one. If
an SFF receives a packet with an SPI and SI that do not
correspond to a valid next hop in a valid SFP, that packet MUST
be dropped by the SFF.
Classifiers MAY update Context Headers if new/updated context is
available.
If an SFC proxy is in use (acting on behalf of an NSH-unaware
Service Function for NSH actions), then the proxy MUST update the
Service Index and MAY update contexts. When an SFC Proxy
receives an NSH-encapsulated packet, it MUST remove the NSH
before forwarding it to an NSH-unaware SF. When the SFC Proxy
receives a packet back from an NSH-unaware SF, it MUST
re-encapsulate it with the correct NSH, and it MUST decrement the
Service Index by one.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
4. Service policy selection: Service Functions derive policy (i.e.,
service actions such as permit or deny) selection and enforcement
from the NSH. Metadata shared in the NSH can provide a range of
service-relevant information such as traffic classification.
Figure 8 maps each of the four actions above to the components in the
SFC architecture that can perform it.
+-----------+-----------------------+-------+---------------+-------+
| | Insert, remove, or |Forward| Update |Service|
| | replace the NSH |the NSH| the NSH |policy |
| | |packets| |sel. |
|Component +-------+-------+-------+ +-------+-------+ |
| | | | | |Dec. |Update | |
| |Insert |Remove |Replace| |Service|Context| |
| | | | | |Index |Header | |
+-----------+-------+-------+-------+-------+-------+-------+-------+
| | + | | + | | | + | |
|Classifier | | | | | | | |
+-----------+-------+-------+-------+-------+-------+-------+-------+
|Service | | + | | + | | | |
|Function | | | | | | | |
|Forwarder | | | | | | | |
|(SFF) | | | | | | | |
+-----------+-------+-------+-------+-------+-------+-------+-------+
|Service | | | | | + | + | + |
|Function | | | | | | | |
|(SF) | | | | | | | |
+-----------+-------+-------+-------+-------+-------+-------+-------+
| | + | + | | | + | + | |
|SFC Proxy | | | | | | | |
+-----------+-------+-------+-------+-------+-------+-------+-------+
Figure 8: NSH Action and Role Mapping
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. NSH Transport Encapsulation</span>
Once the NSH is added to a packet, an outer transport encapsulation
is used to forward the original packet and the associated metadata to
the start of a service chain. The encapsulation serves two purposes:
1. Creates a topologically independent services plane. Packets are
forwarded to the required services without changing the
underlying network topology.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
2. Transit network nodes simply forward the encapsulated packets
without modification.
The service header is independent of the transport encapsulation
used. Existing transport encapsulations can be used. The presence
of an NSH is indicated via a protocol type or another indicator in
the outer transport encapsulation.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Fragmentation Considerations</span>
The NSH and the associated transport encapsulation header are "added"
to the encapsulated packet/frame. This additional information
increases the size of the packet.
Within a managed administrative domain, an operator can ensure that
the underlay MTU is sufficient to carry SFC traffic without requiring
fragmentation. Given that the intended scope of the NSH is within a
single provider's operational domain, that approach is sufficient.
However, although explicitly outside the scope of this specification,
there might be cases where the underlay MTU is not large enough to
carry the NSH traffic. Since the NSH does not provide fragmentation
support at the service plane, the transport encapsulation protocol
ought to provide the requisite fragmentation handling. For instance,
Section 9 of [<a href="#ref-RTG-ENCAP">RTG-ENCAP</a>] provides exemplary approaches and guidance
for those scenarios.
When the transport encapsulation protocol supports fragmentation, and
fragmentation procedures needs to be used, such fragmentation is part
of the transport encapsulation logic. If, as it is common,
fragmentation is performed by the endpoints of the transport
encapsulation, then fragmentation procedures are performed at the
sending NSH entity as part of the transport encapsulation, and
reassembly procedures are performed at the receiving NSH entity
during transport de-encapsulation handling logic. In no case would
such fragmentation result in duplication of the NSH header.
For example, when the NSH is encapsulated in IP, IP-level
fragmentation coupled with Path MTU Discovery (PMTUD) (e.g.,
[<a href="./rfc8201" title=""Path MTU Discovery for IP version 6"">RFC8201</a>]) is used. Since PMTUD relies on ICMP messages, an operator
should ensure ICMP packets are not blocked. When, on the other hand,
the underlay does not support fragmentation procedures, an error
message SHOULD be logged when dropping a packet too big. Lastly,
NSH-specific fragmentation and reassembly methods may be defined as
well, but these methods are outside the scope of this document and
subject for future work.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Service Path Forwarding with NSH</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. SFFs and Overlay Selection</span>
As described above, the NSH contains a Service Path Identifier (SPI)
and a Service Index (SI). The SPI is, as per its name, an
identifier. The SPI alone cannot be used to forward packets along a
service path. Rather, the SPI provides a level of indirection
between the service path / topology and the network transport
encapsulation. Furthermore, there is no requirement for, or
expectation of, an SPI being bound to a predetermined or static
network path.
The Service Index provides an indication of location within a service
path. The combination of SPI and SI provides the identification of a
logical SF and its order within the service plane. This combination
is used to select the appropriate network locator(s) for overlay
forwarding. The logical SF may be a single SF or a set of eligible
SFs that are equivalent. In the latter case, the SFF provides load
distribution amongst the collection of SFs as needed.
SI serves as a mechanism for detecting invalid SFPs. In particular,
an SI value of zero indicates that forwarding is incorrect and the
packet must be discarded.
This indirection -- SPI to overlay -- creates a true service plane.
That is, the SFF/SF topology is constructed without impacting the
network topology, but, more importantly, service-plane-only
participants (i.e., most SFs) need not be part of the network overlay
topology and its associated infrastructure (e.g., control plane,
routing tables, etc.). SFs need to be able to return a packet to an
appropriate SFF (i.e., has the requisite NSH information) when
service processing is complete. This can be via the overlay or
underlay and, in some cases, can require additional configuration on
the SF. As mentioned above, an existing overlay topology may be
used, provided it offers the requisite connectivity.
The mapping of SPI to transport encapsulation occurs on an SFF (as
discussed above, the first SFF in the path gets an NSH encapsulated
packet from the Classifier). The SFF consults the SPI/ID values to
determine the appropriate overlay transport encapsulation protocol
(several may be used within a given network) and next hop for the
requisite SF. Table 1 depicts an example of a single next-hop SPI/
SI-to-network overlay network locator mapping.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
+------+------+---------------------+-------------------------+
| SPI | SI | Next Hop(s) | Transport Encapsulation |
+------+------+---------------------+-------------------------+
| 10 | 255 | 192.0.2.1 | VXLAN-gpe |
| | | | |
| 10 | 254 | 198.51.100.10 | GRE |
| | | | |
| 10 | 251 | 198.51.100.15 | GRE |
| | | | |
| 40 | 251 | 198.51.100.15 | GRE |
| | | | |
| 50 | 200 | 01:23:45:67:89:ab | Ethernet |
| | | | |
| 15 | 212 | Null (end of path) | None |
+------+------+---------------------+-------------------------+
Table 1: SFF NSH Mapping Example
Additionally, further indirection is possible: the resolution of the
required SF network locator may be a localized resolution on an SFF,
rather than an SFC control plane responsibility, as per Tables 2 and
3.
Please note: VXLAN-gpe and GRE in the above table refer to
[<a href="#ref-VXLAN-GPE">VXLAN-GPE</a>] and [<a href="./rfc2784" title=""Generic Routing Encapsulation (GRE)"">RFC2784</a>] [<a href="./rfc7676" title=""IPv6 Support for Generic Routing Encapsulation (GRE)"">RFC7676</a>], respectively.
+------+-----+----------------+
| SPI | SI | Next Hop(s) |
+------+-----+----------------+
| 10 | 3 | SF2 |
| | | |
| 245 | 12 | SF34 |
| | | |
| 40 | 9 | SF9 |
+------+-----+----------------+
Table 2: NSH-to-SF Mapping Example
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
+------+-------------------+-------------------------+
| SF | Next Hop(s) | Transport Encapsulation |
+------+-------------------+-------------------------+
| SF2 | 192.0.2.2 | VXLAN-gpe |
| | | |
| SF34 | 198.51.100.34 | UDP |
| | | |
| SF9 | 2001:db8::1 | GRE |
+------+-------------------+-------------------------+
Table 3: SF Locator Mapping Example
Since the SPI is a representation of the service path, the lookup may
return more than one possible next hop within a service path for a
given SF, essentially a series of weighted (equally or otherwise)
paths to be used (for load distribution, redundancy, or policy); see
Table 4. The metric depicted in Table 4 is an example to help
illustrate weighing SFs. In a real network, the metric will range
from a simple preference (similar to routing next-hop) to a true
dynamic composite metric based on the state of a Service Function
(including load, session state, capacity, etc.).
+------+-----+--------------+---------+
| SPI | SI | NH | Metric |
+------+-----+--------------+---------+
| 10 | 3 | 203.0.113.1 | 1 |
| | | | |
| | | 203.0.113.2 | 1 |
| | | | |
| 20 | 12 | 192.0.2.1 | 1 |
| | | | |
| | | 203.0.113.4 | 1 |
| | | | |
| 30 | 7 | 192.0.2.10 | 10 |
| | | | |
| | | 198.51.100.1 | 5 |
+------+-----+--------------+---------+
(encapsulation type omitted for formatting)
Table 4: NSH Weighted Service Path
The information contained in Tables 1-4 may be received from the
control plane, but the exact mechanism is outside the scope of this
document.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Mapping the NSH to Network Topology</span>
As described above, the mapping of the SPI to network topology may
result in a single path, or it might result in a more complex
topology. Furthermore, the SPI-to-overlay mapping occurs at each SFF
independently. Any combination of topology selection is possible.
Please note, there is no requirement to create a new overlay topology
if a suitable one already exists. NSH packets can use any (new or
existing) overlay, provided the requisite connectivity requirements
are satisfied.
Examples of mapping for a topology:
1. Next SF is located at SFFb with locator 2001:db8::1
SFFa mapping: SPI=10 --> VXLAN-gpe, dst-ip: 2001:db8::1
2. Next SF is located at SFFc with multiple network locators for
load-distribution purposes:
SFFb mapping: SPI=10 --> VXLAN-gpe, dst_ip:203.0.113.1,
203.0.113.2, 203.0.113.3, equal cost
3. Next SF is located at SFFd with two paths from SFFc, one for
redundancy:
SFFc mapping: SPI=10 --> VXLAN-gpe, dst_ip:192.0.2.10 cost=10,
203.0.113.10, cost=20
In the above example, each SFF makes an independent decision about
the network overlay path and policy for that path. In other words,
there is no a priori mandate about how to forward packets in the
network (only the order of services that must be traversed).
The network operator retains the ability to engineer the network
paths as required. For example, the overlay path between SFFs may
utilize traffic engineering, QoS marking, or ECMP, without requiring
complex configuration and network protocol support to be extended to
the service path explicitly. In other words, the network operates as
expected, and evolves as required, as does the service plane.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Service Plane Visibility</span>
The SPI and SI serve an important function for visibility into the
service topology. An operator can determine what service path a
packet is "on" and its location within that path simply by viewing
NSH information (packet capture, IP Flow Information Export (IPFIX),
etc.). The information can be used for service scheduling and
placement decisions, troubleshooting, and compliance verification.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Service Graphs</span>
While a given realized SFP is a specific sequence of Service
Functions, the service, as seen by a user, can actually be a
collection of SFPs, with the interconnection provided by Classifiers
(in-service path, non-initial re-classification). These internal re-
Classifiers examine the packet at relevant points in the network,
and, if needed, SPI and SI are updated (whether this update is a re-
write, or the imposition of a new NSH with new values is
implementation specific) to reflect the "result" of the
classification. These Classifiers may, of course, also modify the
metadata associated with the packet.
<a href="./rfc7665#section-2.1">Section 2.1 of [RFC7665]</a> describes Service Graphs in detail.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Policy Enforcement with NSH</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. NSH Metadata and Policy Enforcement</span>
As described in <a href="#section-2">Section 2</a>, NSH provides the ability to carry metadata
along a service path. This metadata may be derived from several
sources. Common examples include:
Network nodes/devices: Information provided by network nodes can
indicate network-centric information (such as VPN Routing and
Forwarding (VRF) or tenant) that may be used by Service Functions
or conveyed to another network node post service path egress.
External (to the network) systems: External systems, such as
orchestration systems, often contain information that is valuable
for Service Function policy decisions. In most cases, this
information cannot be deduced by network nodes. For example, a
cloud orchestration platform placing workloads "knows" what
application is being instantiated and can communicate this
information to all NSH nodes via metadata carried in the Context
Header(s).
Service Functions: A Classifier co-resident with Service Functions
often performs very detailed and valuable classification.
Regardless of the source, metadata reflects the "result" of
classification. The granularity of classification may vary. For
example, a network switch, acting as a Classifier, might only be able
to classify based on a 2-tuple, or based on a 5-tuple, while a
Service Function may be able to inspect application information.
Regardless of granularity, the classification information can be
represented in the NSH.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Once the data is added to the NSH, it is carried along the service
path. NSH-aware SFs receive the metadata, and can use that metadata
for local decisions and policy enforcement. Figures 9 and 10
highlight the relationship between metadata and policy.
+-------+ +-------+ +-------+
| SFF )------->( SFF |------->| SFF |
+---+---+ +---+---+ +---+---+
^ | |
,-|-. ,-|-. ,-|-.
/ \ / \ / \
( Class ) ( SF1 ) ( SF2 )
\ ify / \ / \ /
`---' `---' `---'
5-tuple: Permit Inspect
Tenant A Tenant A AppY
AppY
Figure 9: Metadata and Policy
+-----+ +-----+ +-----+
| SFF |---------> | SFF |----------> | SFF |
+--+--+ +--+--+ +--+--+
^ | |
,-+-. ,-+-. ,-+-.
/ \ / \ / \
( Class ) ( SF1 ) ( SF2 )
\ ify / \ / \ /
`-+-' `---' `---'
| Permit Deny AppZ
+---+---+ employees
| |
+-------+
External
system:
Employee
AppZ
Figure 10: External Metadata and Policy
In both of the examples above, the Service Functions perform policy
decisions based on the result of the initial classification: the SFs
did not need to perform re-classification; instead, they rely on an
antecedent classification for local policy enforcement.
Depending on the information carried in the metadata, data privacy
impact needs to be considered. For example, if the metadata conveys
tenant information, that information may need to be authenticated
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
and/or encrypted between the originator and the intended recipients
(which may include intended SFs only); one approach to an optional
capability to do this is explored in [<a href="#ref-NSH-ENCRYPT">NSH-ENCRYPT</a>]. The NSH itself
does not provide privacy functions, rather it relies on the transport
encapsulation/overlay. An operator can select the appropriate set of
transport encapsulation protocols to ensure confidentiality (and
other security) considerations are met. Metadata privacy and
security considerations are a matter for the documents that define
metadata format.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Updating/Augmenting Metadata</span>
Post-initial metadata imposition (typically, performed during initial
service path determination), the metadata may be augmented or
updated:
1. Metadata Augmentation: Information may be added to the NSH's
existing metadata, as depicted in Figure 11. For example, if the
initial classification returns the tenant information, a
secondary classification (perhaps co-resident with deep packet
inspection (DPI) or server load balancing (SLB)) may augment the
tenant classification with application information, and impose
that new information in NSH metadata. The tenant classification
is still valid and present, but additional information has been
added to it.
2. Metadata Update: Subsequent Classifiers may update the initial
classification if it is determined to be incorrect or not
descriptive enough. For example, the initial Classifier adds
metadata that describes the traffic as "Internet", but a security
Service Function determines that the traffic is really "attack".
Figure 12 illustrates an example of updating metadata.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
+-----+ +-----+ +-----+
| SFF |---------> | SFF |----------> | SFF |
+--+--+ +--+--+ +--+--+
^ | |
,---. ,---. ,---.
/ \ / \ / \
( Class ) ( SF1 ) ( SF2 )
\ / \ / \ /
`-+-' `---' `---'
| Inspect Deny
+---+---+ employees employee+
| | Class=AppZ appZ
+-------+
External
system:
Employee
Figure 11: Metadata Augmentation
+-----+ +-----+ +-----+
| SFF |---------> | SFF |----------> | SFF |
+--+--+ +--+--+ +--+--+
^ | |
,---. ,---. ,---.
/ \ / \ / \
( Class ) ( SF1 ) ( SF2 )
\ / \ / \ /
`---' `---' `---'
5-tuple: Inspect Deny
Tenant A Tenant A attack
--> attack
Figure 12: Metadata Update
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Service Path Identifier and Metadata</span>
Metadata information may influence the service path selection since
the Service Path Identifier values can represent the result of
classification. A given SPI can be defined based on classification
results (including metadata classification). The imposition of the
SPI and SI results in the packet being placed on the newly specified
SFP at the position indicated by the imposed SPI and SI.
This relationship provides the ability to create a dynamic service
plane based on complex classification, without requiring each node to
be capable of such classification or requiring a coupling to the
network topology. This yields Service Graph functionality as
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
described in <a href="#section-6.4">Section 6.4</a>. Figure 13 illustrates an example of this
behavior.
+-----+ +-----+ +-----+
| SFF |---------> | SFF |------+---> | SFF |
+--+--+ +--+--+ | +--+--+
| | | |
,---. ,---. | ,---.
/ \ / SF1 \ | / \
( SCL ) ( + ) | ( SF2 )
\ / \SCL2 / | \ /
`---' `---' +-----+ `---'
5-tuple: Inspect | SFF | Original
Tenant A Tenant A +--+--+ next SF
--> DoS |
V
,-+-.
/ \
( SF10 )
\ /
`---'
DoS
"Scrubber"
Legend:
SCL = Service Classifier
Figure 13: Path ID and Metadata
Specific algorithms for mapping metadata to an SPI are outside the
scope of this document.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
NSH security must be considered in the contexts of the SFC
architecture and operators' environments. One important
characteristic of NSH is that it is not an end-to-end protocol. As
opposed to a protocol that "starts" on a host and "ends" on a server
or another host, NSH is typically imposed by a network device on
ingress to the SFC domain and removed at the egress of the SFC
domain. As such, and as with any other network-centric protocols
(e.g., IP Tunneling, Traffic Engineering, MPLS, or Provider-
Provisioned Virtual Private Networks), there is an underlying trust
in the network devices responsible for imposing, removing, and acting
on NSH information.
The following sections detail an analysis and present a set of
requirements and recommendations in those two areas.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. NSH Security Considerations from Operators' Environments</span>
Trusted Devices
All Classifiers, SFFs and SFs (hereinafter referred to as "SFC
devices") within an operator's environment are assumed to have
been selected, vetted, and actively maintained; therefore, they
are trusted by that operator. This assumption differs from the
oft held view that devices are untrusted, often referred to as the
"zero-trust model". Operators SHOULD regularly monitor (i.e.,
continuously audit) these devices to help ensure compliant
behavior. This trust, therefore, extends into NSH operations: SFC
devices are not, themselves, considered to be attack vectors.
This assumption, and the resultant conclusion is reasonable since
this is the very basis of an operator posture; the operator
depends on this reality to function. If these devices are not
trusted, and indeed are compromised, almost the entirety of the
operator's standard-based IP and MPLS protocol suites are
vulnerable; therefore, the operation of the entire network is
compromised. Although there are well-documented monitoring-based
methods for detecting compromise (such as included continuous
monitoring and audit and log review), these may not be sufficient
to contain damage by a completely compromised element.
Methods and best practices to secure devices are also widely
documented and outside the scope of this document.
Single Domain Boundary
As per [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>], NSH is designed for use within a single
administrative domain. This scoping provides two important
characteristics:
i) Clear NSH boundaries
NSH egress devices MUST strip the NSH headers before they send the
users' packets or frames out of the NSH domain.
Means to prevent leaking privacy-related information outside an
administrative domain are natively supported by the NSH given that
the last SFF of a service path will systematically remove the NSH
encapsulation before forwarding a packet exiting the service path.
The second step in such prevention is to filter the transport
encapsulation protocol used by NSH at the domain edge. The
transport encapsulation protocol MUST be filtered and MUST NOT
leave the domain edge.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Depending upon the transport encapsulation protocol used for NSH,
this can be done either by completely blocking the transport
encapsulation (e.g., if MPLS is the chosen NSH transport
encapsulation protocol, it is therefore never allowed to leave the
domain) or by examining the carried protocol with the transport
encapsulation (e.g., if VXLAN-gpe is used as the NSH transport
encapsulation protocol, all domain edges need to filter based on
the carried protocol in the VXLAN-gpe.)
The other consequence of this bounding is that ingress packets
MUST also be filtered to prevent attackers from sending in NSH
packets with service path identification and metadata of their own
selection. The same filters as described above for both the NSH
at SFC devices and for the transport encapsulation protocol as
general edge protections MUST be applied on ingress.
In summary, packets originating outside the SFC-enabled domain
MUST be dropped if they contain an NSH. Similarly, packets
exiting the SFC-enabled domain MUST be dropped if they contain an
NSH.
ii) Mitigation of external threats
As per the trusted SFC device points raised above, given that NSH
is scoped within an operator's domain, that operator can ensure
that the environment and its transitive properties comply with
that operator's required security posture. Continuous audits for
assurance are recommended with this reliance on a fully trusted
environment. The term "continuous audits" describes a method
(automated or manual) of checking security-control compliance on a
regular basis, at some set period of time.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. NSH Security Considerations from the SFC Architecture</span>
The SFC architecture defines functional roles (e.g., SFF), as well as
protocol elements (e.g., Metadata). This section considers each role
and element in the context of threats posed in the areas of integrity
and confidentiality. As with routing, the distributed computation
model assumes a distributed trust model.
An important consideration is that NSH contains mandatory-to-mute
fields, and further, the SFC architecture describes cases where other
fields in NSH change, all on a possible SFP hop-by-hop basis. This
means that any cryptographic solution requires complex key
distribution and life-cycle operations.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h4"><a class="selflink" id="section-8.2.1" href="#section-8.2.1">8.2.1</a>. Integrity</span>
SFC devices
SFC devices MAY perform various forms of verification on received
NSH packets such as only accepting NSH packets from expected
devices, checking that NSH SPI and SI values received from
expected devices conform to expected values and so on.
Implementation of these additional checks are a local matter and,
thus, out of scope of this document.
NSH Base and Service Path Headers
Attackers who can modify packets within the operator's network may
be able to modify the SFP, path position, and/or the metadata
associated with a packet.
One specific concern is an attack in which a malicious
modification of the SPI/SI results in an alteration of the path to
avoid security devices. The options discussed in this section
help thwart that attack, and so does the use of the optional
"Proof of Transit" method [<a href="#ref-PROOF-OF-TRANSIT">PROOF-OF-TRANSIT</a>].
As stated above, SFC devices are trusted; in the case where an SFC
device is compromised, NSH integrity protection would be subject
to forging (in many cases) as well.
NSH itself does not mandate protocol-specific integrity
protection. However, if an operator deems protection is required,
several options are viable:
1. SFF/SF NSH verification
Although, strictly speaking, not integrity protection, some of
the techniques mentioned above, such as checking expected NSH
values are received from expected SFC device(s), can provide a
form of verification without incurring the burden of a full-
fledged integrity-protection deployment.
2. Transport Security
NSH is always encapsulated by an outer transport encapsulation
as detailed in <a href="#section-4">Section 4</a> of this specification, and as
depicted in Figure 1. If an operator deems cryptographic
integrity protection necessary due to their risk analysis,
then an outer transport encapsulation that provides such
protection [<a href="./rfc6071" title=""IP Security (IPsec) and Internet Key Exchange (IKE) Document Roadmap"">RFC6071</a>], such as IPsec, MUST be used.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Although the threat model and recommendations of <a href="https://www.rfc-editor.org/bcp/bcp72#section-5">Section 5 of
BCP 72</a> [<a href="./rfc3552" title=""Guidelines for Writing RFC Text on Security Considerations"">RFC3552</a>] would normally require cryptographic data
origin authentication for the header, this document does not
mandate such mechanisms in order to reflect the operational
and technical realities of deployment.
Given that NSH is transport independent, as mentioned above, a
secure transport, such as IPsec can be used for carry NSH.
IPsec can be used either alone or in conjunction with other
transport encapsulation protocols, in turn, encapsulating NSH.
Operators MUST ensure the selected transport encapsulation
protocol can be supported by the transport encapsulation/
underlay of all relevant network segments as well as SFFs,
SFs, and SFC Proxies in the service path.
If connectivity between SFC-enabled devices traverses the
public Internet, then such connectivity MUST be secured at the
transport encapsulation layer. IPsec is an example of such a
transport.
3. NSH Variable Header-Based Integrity
Lastly, NSH MD Type 2 provides, via variable-length headers,
the ability to append cryptographic integrity protection to
the NSH packet. The implementation of such a scheme is
outside the scope of this document.
NSH metadata
As with the Base and Service Path Headers, if an operator deems
cryptographic integrity protection needed, then an existing,
standard transport protocol MUST be used since the integrity
protection applies to entire encapsulated NSH packets. As
mentioned above, a risk assessment that deems data-plane traffic
subject to tampering will apply not only to NSH but to the
transport information; therefore, the use of a secure transport is
likely needed already to protect the entire stack.
If an MD Type 2 variable header integrity scheme is in place, then
the integrity of the metadata can be ensured via that mechanism as
well.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h4"><a class="selflink" id="section-8.2.2" href="#section-8.2.2">8.2.2</a>. Confidentiality</span>
SFC devices
SFC devices can "see" (and need to use) NSH information.
NSH Base and Service Path Headers
SPI and other base / service path information does not typically
require confidentiality; however, if an operator does deem
confidentiality to be required, then, as with integrity, an
existing transport encapsulation that provides encryption MUST be
utilized.
NSH metadata
An attacker with access to the traffic in an operator's network
can potentially observe the metadata NSH carries with packets,
potentially discovering privacy-sensitive information.
Much of the metadata carried by NSH is not sensitive. It often
reflects information that can be derived from the underlying
packet or frame. Direct protection of such information is not
necessary, as the risks are simply those of carrying the
underlying packet or frame.
Implementers and operators MUST be aware that metadata can have
privacy implications, and those implications are sometimes hard to
predict. Therefore, attached metadata should be limited to that
necessary for correct operation of the SFP. Further, [<a href="./rfc8165" title=""Design Considerations for Metadata Insertion"">RFC8165</a>]
defines metadata considerations that operators can take into
account when using NSH.
Protecting NSH metadata information between SFC components can be
done using transport encapsulation protocols with suitable
security capabilities, along the lines discussed above. If a
security analysis deems these protections necessary, then security
features in the transport encapsulation protocol (such as IPsec)
MUST be used.
One useful element of providing privacy protection for sensitive
metadata is described under the "SFC Encapsulation" area of the
Security Considerations of [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>]. Operators can and should
use indirect identification for metadata deemed to be sensitive
(such as personally identifying information), significantly
mitigating the risk of a privacy violation. In particular,
subscriber-identifying information should be handled carefully,
and, in general, SHOULD be obfuscated.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
For those situations where obfuscation is either inapplicable or
judged to be insufficient, an operator can also encrypt the
metadata. An approach to an optional capability to do this was
explored in [<a href="#ref-NSH-ENCRYPT">NSH-ENCRYPT</a>]. For other situations where greater
assurance is desired, optional mechanisms such as
[<a href="#ref-PROOF-OF-TRANSIT">PROOF-OF-TRANSIT</a>] can be used.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. NSH Parameters</span>
IANA has created a new "Network Service Header (NSH) Parameters"
registry. The following subsections detail new registries within the
"Network Service Header (NSH) Parameters" registry.
<span class="h4"><a class="selflink" id="section-9.1.1" href="#section-9.1.1">9.1.1</a>. NSH Base Header Bits</span>
There are five unassigned bits (U bits) in the NSH Base Header, and
one assigned bit (O bit). New bits are assigned via Standards Action
[<a href="./rfc8126" title="">RFC8126</a>].
Bit 2 - O (OAM) bit
Bit 3 - Unassigned
Bits 16-19 - Unassigned
<span class="h4"><a class="selflink" id="section-9.1.2" href="#section-9.1.2">9.1.2</a>. NSH Version</span>
IANA has set up the "NSH Version" registry. New values are assigned
via Standards Action [<a href="./rfc8126" title="">RFC8126</a>].
+-------------+---------------------------------+-----------+
| Version | Description | Reference |
+-------------+---------------------------------+-----------+
| Version 00b | Protocol as defined by <a href="./rfc8300">RFC 8300</a> | <a href="./rfc8300">RFC 8300</a> |
| Version 01b | Reserved | <a href="./rfc8300">RFC 8300</a> |
| Version 10b | Unassigned | |
| Version 11b | Unassigned | |
+-------------+---------------------------------+-----------+
Table 5: NSH Version
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h4"><a class="selflink" id="section-9.1.3" href="#section-9.1.3">9.1.3</a>. NSH MD Types</span>
IANA has set up the "NSH MD Types" registry, which contains 4-bit
values. MD Type values 0x0, 0x1, 0x2, and 0xF are specified in this
document; see Table 6. Registry entries are assigned via the "IETF
Review" policy defined in <a href="./rfc8126">RFC 8126</a> [<a href="./rfc8126" title="">RFC8126</a>].
+-----------+-----------------+-----------+
| MD Type | Description | Reference |
+-----------+-----------------+-----------+
| 0x0 | Reserved | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x1 | NSH MD Type 1 | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x2 | NSH MD Type 2 | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x3 - 0xE | Unassigned | |
| | | |
| 0xF | Experimentation | <a href="./rfc8300">RFC 8300</a> |
+-----------+-----------------+-----------+
Table 6: MD Type Values
<span class="h4"><a class="selflink" id="section-9.1.4" href="#section-9.1.4">9.1.4</a>. NSH MD Class</span>
IANA has set up the "NSH MD Class" registry, which contains 16-bit
values. New allocations are to be made according to the following
policies:
0x0000 to 0x01ff: IETF Review
0x0200 to 0xfff5: Expert Review
IANA has assigned the values as follows:
+------------------+------------------------+------------+
| Value | Meaning | Reference |
+------------------+------------------------+------------+
| 0x0000 | IETF Base NSH MD Class | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0xfff6 to 0xfffe | Experimental | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0xffff | Reserved | <a href="./rfc8300">RFC 8300</a> |
+------------------+------------------------+------------+
Table 7: NSH MD Class
A registry for Types for the MD Class of 0x0000 is defined in
<a href="#section-9.1.5">Section 9.1.5</a>.
<span class="grey">Quinn, 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="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Designated Experts evaluating new allocation requests from the
"Expert Review" range should principally consider whether a new MD
class is needed compared to adding MD Types to an existing class.
The Designated Experts should also encourage the existence of an
associated and publicly visible registry of MD Types although this
registry need not be maintained by IANA.
When evaluating a request for an allocation, the Expert should verify
that the allocation plan includes considerations to handle privacy
and security issues associated with the anticipated individual MD
Types allocated within this class. These plans should consider, when
appropriate, alternatives such as indirection, encryption, and
limited-deployment scenarios. Information that can't be directly
derived from viewing the packet contents should be examined for
privacy and security implications.
<span class="h4"><a class="selflink" id="section-9.1.5" href="#section-9.1.5">9.1.5</a>. NSH IETF-Assigned Optional Variable-Length Metadata Types</span>
The Type values within the IETF Base NSH MD Class, i.e., when the MD
Class is set to 0x0000 (see <a href="#section-9.1.4">Section 9.1.4</a>), are the Types owned by
the IETF. Per this document, IANA has created a registry for the
Type values for the IETF Base NSH MD Class called the "NSH IETF-
Assigned Optional Variable-Length Metadata Types" registry, as
specified in <a href="#section-2.5.1">Section 2.5.1</a>.
The type values are assigned via Standards Action [<a href="./rfc8126" title="">RFC8126</a>].
No initial values are assigned at the creation of the registry.
<span class="grey">Quinn, et al. Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h4"><a class="selflink" id="section-9.1.6" href="#section-9.1.6">9.1.6</a>. NSH Next Protocol</span>
IANA has set up the "NSH Next Protocol" registry, which contains
8-bit values. Next Protocol values 0, 1, 2, 3, 4, and 5 are defined
in this document (see Table 8). New values are assigned via "Expert
Review" as per [<a href="./rfc8126" title="">RFC8126</a>].
+---------------+--------------+-----------+
| Next Protocol | Description | Reference |
+---------------+--------------+-----------+
| 0x00 | Unassigned | |
| | | |
| 0x01 | IPv4 | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x02 | IPv6 | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x03 | Ethernet | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x04 | NSH | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x05 | MPLS | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0x06 - 0xFD | Unassigned | |
| | | |
| 0xFE | Experiment 1 | <a href="./rfc8300">RFC 8300</a> |
| | | |
| 0xFF | Experiment 2 | <a href="./rfc8300">RFC 8300</a> |
+---------------+--------------+-----------+
Table 8: NSH Base Header Next Protocol Values
Expert Review requests MUST include a single codepoint per request.
Designated Experts evaluating new allocation requests from this
registry should consider the potential scarcity of codepoints for an
8-bit value, and check both for duplications and availability of
documentation. If the actual assignment of the Next Protocol field
allocation reaches half of the range (that is, when there are 128
unassigned values), IANA needs to alert the IESG. At that point, a
new more strict allocation policy SHOULD be considered.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. NSH-Related Codepoints</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. NSH Ethertype</span>
An IEEE Ethertype, 0x894F, has been allocated for NSH.
<span class="grey">Quinn, et al. Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. References</span>
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC7665">RFC7665</a>] Halpern, J., Ed. and C. Pignataro, Ed., "Service Function
Chaining (SFC) Architecture", <a href="./rfc7665">RFC 7665</a>,
DOI 10.17487/RFC7665, October 2015,
<<a href="https://www.rfc-editor.org/info/rfc7665">https://www.rfc-editor.org/info/rfc7665</a>>.
[<a id="ref-RFC8126">RFC8126</a>] Cotton, M., Leiba, B., and T. Narten, "Guidelines for
Writing an IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>,
<a href="./rfc8126">RFC 8126</a>, DOI 10.17487/RFC8126, June 2017,
<<a href="https://www.rfc-editor.org/info/rfc8126">https://www.rfc-editor.org/info/rfc8126</a>>.
[<a id="ref-RFC8174">RFC8174</a>] Leiba, B., "Ambiguity of Uppercase vs Lowercase in <a href="./rfc2119">RFC</a>
<a href="./rfc2119">2119</a> Key Words", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc8174">RFC 8174</a>, DOI 10.17487/RFC8174,
May 2017, <<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>>.
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a>. Informative References</span>
[<a id="ref-NSH-BROADBAND-ALLOCATION">NSH-BROADBAND-ALLOCATION</a>]
Napper, J., Kumar, S., Muley, P., Henderickx, W., and M.
Boucadair, "NSH Context Header Allocation -- Broadband",
Work in Progress, <a href="./draft-napper-sfc-nsh-broadband-allocation-04">draft-napper-sfc-nsh-broadband-</a>
<a href="./draft-napper-sfc-nsh-broadband-allocation-04">allocation-04</a>, November 2017.
[<a id="ref-NSH-DC-ALLOCATION">NSH-DC-ALLOCATION</a>]
Guichard, J., Smith, M., Kumar, S., Majee, S., Agarwal,
P., Glavin, K., Laribi, Y., and T. Mizrahi, "Network
Service Header (NSH) MD Type 1: Context Header Allocation
(Data Center)", Work in Progress,
<a href="./draft-guichard-sfc-nsh-dc-allocation-07">draft-guichard-sfc-nsh-dc-allocation-07</a>, August 2017.
[<a id="ref-NSH-ENCRYPT">NSH-ENCRYPT</a>]
Reddy, T., Patil, P., Fluhrer, S., and P. Quinn,
"Authenticated and encrypted NSH service chains", Work in
Progress, <a href="./draft-reddy-sfc-nsh-encrypt-00">draft-reddy-sfc-nsh-encrypt-00</a>, April 2015.
<span class="grey">Quinn, et al. Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
[<a id="ref-PROOF-OF-TRANSIT">PROOF-OF-TRANSIT</a>]
Brockners, F., Bhandari, S., Dara, S., Pignataro, C.,
Leddy, J., Youell, S., Mozes, D., and T. Mizrahi, "Proof
of Transit", Work in Progress, <a href="./draft-brockners-proof-of-transit-04">draft-brockners-proof-</a>
<a href="./draft-brockners-proof-of-transit-04">of-transit-04</a>, October 2017.
[<a id="ref-RFC2784">RFC2784</a>] Farinacci, D., Li, T., Hanks, S., Meyer, D., and P.
Traina, "Generic Routing Encapsulation (GRE)", <a href="./rfc2784">RFC 2784</a>,
DOI 10.17487/RFC2784, March 2000,
<<a href="https://www.rfc-editor.org/info/rfc2784">https://www.rfc-editor.org/info/rfc2784</a>>.
[<a id="ref-RFC3552">RFC3552</a>] Rescorla, E. and B. Korver, "Guidelines for Writing RFC
Text on Security Considerations", <a href="https://www.rfc-editor.org/bcp/bcp72">BCP 72</a>, <a href="./rfc3552">RFC 3552</a>,
DOI 10.17487/RFC3552, July 2003,
<<a href="https://www.rfc-editor.org/info/rfc3552">https://www.rfc-editor.org/info/rfc3552</a>>.
[<a id="ref-RFC3692">RFC3692</a>] Narten, T., "Assigning Experimental and Testing Numbers
Considered Useful", <a href="https://www.rfc-editor.org/bcp/bcp82">BCP 82</a>, <a href="./rfc3692">RFC 3692</a>,
DOI 10.17487/RFC3692, January 2004,
<<a href="https://www.rfc-editor.org/info/rfc3692">https://www.rfc-editor.org/info/rfc3692</a>>.
[<a id="ref-RFC6071">RFC6071</a>] Frankel, S. and S. Krishnan, "IP Security (IPsec) and
Internet Key Exchange (IKE) Document Roadmap", <a href="./rfc6071">RFC 6071</a>,
DOI 10.17487/RFC6071, February 2011,
<<a href="https://www.rfc-editor.org/info/rfc6071">https://www.rfc-editor.org/info/rfc6071</a>>.
[<a id="ref-RFC6291">RFC6291</a>] Andersson, L., van Helvoort, H., Bonica, R., Romascanu,
D., and S. Mansfield, "Guidelines for the Use of the "OAM"
Acronym in the IETF", <a href="https://www.rfc-editor.org/bcp/bcp161">BCP 161</a>, <a href="./rfc6291">RFC 6291</a>,
DOI 10.17487/RFC6291, June 2011,
<<a href="https://www.rfc-editor.org/info/rfc6291">https://www.rfc-editor.org/info/rfc6291</a>>.
[<a id="ref-RFC7325">RFC7325</a>] Villamizar, C., Ed., Kompella, K., Amante, S., Malis, A.,
and C. Pignataro, "MPLS Forwarding Compliance and
Performance Requirements", <a href="./rfc7325">RFC 7325</a>, DOI 10.17487/RFC7325,
August 2014, <<a href="https://www.rfc-editor.org/info/rfc7325">https://www.rfc-editor.org/info/rfc7325</a>>.
[<a id="ref-RFC7498">RFC7498</a>] Quinn, P., Ed. and T. Nadeau, Ed., "Problem Statement for
Service Function Chaining", <a href="./rfc7498">RFC 7498</a>,
DOI 10.17487/RFC7498, April 2015,
<<a href="https://www.rfc-editor.org/info/rfc7498">https://www.rfc-editor.org/info/rfc7498</a>>.
[<a id="ref-RFC7676">RFC7676</a>] Pignataro, C., Bonica, R., and S. Krishnan, "IPv6 Support
for Generic Routing Encapsulation (GRE)", <a href="./rfc7676">RFC 7676</a>,
DOI 10.17487/RFC7676, October 2015,
<<a href="https://www.rfc-editor.org/info/rfc7676">https://www.rfc-editor.org/info/rfc7676</a>>.
<span class="grey">Quinn, et al. Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
[<a id="ref-RFC8165">RFC8165</a>] Hardie, T., "Design Considerations for Metadata
Insertion", <a href="./rfc8165">RFC 8165</a>, DOI 10.17487/RFC8165, May 2017,
<<a href="https://www.rfc-editor.org/info/rfc8165">https://www.rfc-editor.org/info/rfc8165</a>>.
[<a id="ref-RFC8201">RFC8201</a>] McCann, J., Deering, S., Mogul, J., and R. Hinden, Ed.,
"Path MTU Discovery for IP version 6", STD 87, <a href="./rfc8201">RFC 8201</a>,
DOI 10.17487/RFC8201, July 2017,
<<a href="https://www.rfc-editor.org/info/rfc8201">https://www.rfc-editor.org/info/rfc8201</a>>.
[<a id="ref-RTG-ENCAP">RTG-ENCAP</a>]
Nordmark, E., Tian, A., Gross, J., Hudson, J., Kreeger,
L., Garg, P., Thaler, P., and T. Herbert, "Encapsulation
Considerations", Work in Progress,
<a href="./draft-ietf-rtgwg-dt-encap-02">draft-ietf-rtgwg-dt-encap-02</a>, October 2016.
[<a id="ref-SFC-CONTROL-PLANE">SFC-CONTROL-PLANE</a>]
Boucadair, M., "Service Function Chaining (SFC) Control
Plane Components & Requirements", Work in Progress,
<a href="./draft-ietf-sfc-control-plane-08">draft-ietf-sfc-control-plane-08</a>, October 2016.
[<a id="ref-SFC-OAM-FRAMEWORK">SFC-OAM-FRAMEWORK</a>]
Aldrin, S., Pignataro, C., Kumar, N., Akiya, N., Krishnan,
R., and A. Ghanwani, "Service Function Chaining (SFC)
Operation, Administration and Maintenance (OAM)
Framework", Work in Progress,
<a href="./draft-ietf-sfc-oam-framework-03">draft-ietf-sfc-oam-framework-03</a>, September 2017.
[<a id="ref-VXLAN-GPE">VXLAN-GPE</a>]
Maino, F., Kreeger, L., and U. Elzur, "Generic Protocol
Extension for VXLAN", Work in Progress,
<a href="./draft-ietf-nvo3-vxlan-gpe-05">draft-ietf-nvo3-vxlan-gpe-05</a>, October 2017.
Acknowledgments
The authors would like to thank Sunil Vallamkonda, Nagaraj Bagepalli,
Abhijit Patra, Peter Bosch, Darrel Lewis, Pritesh Kothari, Tal
Mizrahi, and Ken Gray for their detailed reviews, comments, and
contributions.
A special thank you goes to David Ward and Tom Edsall for their
guidance and feedback.
Additionally, the authors would like to thank Larry Kreeger for his
invaluable ideas and contributions, which are reflected throughout
this document.
Loa Andersson provided a thorough review and valuable comments; we
thank him for that.
<span class="grey">Quinn, et al. Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Reinaldo Penno deserves a particular thank you for his architecture
and implementation work that helped guide the protocol concepts and
design.
The editors also acknowledge comprehensive reviews and respective
useful suggestions by Med Boucadair, Adrian Farrel, Juergen
Schoenwaelder, Acee Lindem, and Kathleen Moriarty.
Lastly, David Dolson has provided significant review, feedback, and
suggestions throughout the evolution of this document. His
contributions are very much appreciated.
Contributors
This WG document originated as <a href="./draft-quinn-sfc-nsh">draft-quinn-sfc-nsh</a>; the following are
its coauthors and contributors along with their respective
affiliations at the time of WG adoption. The editors of this
document would like to thank and recognize them and their
contributions. These coauthors and contributors provided invaluable
concepts and content for this document's creation.
o Jim Guichard, Cisco Systems, Inc.
o Surendra Kumar, Cisco Systems, Inc.
o Michael Smith, Cisco Systems, Inc.
o Wim Henderickx, Alcatel-Lucent
o Tom Nadeau, Brocade
o Puneet Agarwal
o Rajeev Manur, Broadcom
o Abhishek Chauhan, Citrix
o Joel Halpern, Ericsson
o Sumandra Majee, F5
o David Melman, Marvell
o Pankaj Garg, Microsoft
o Brad McConnell, Rackspace
o Chris Wright, Red Hat, Inc.
o Kevin Glavin, Riverbed
o Hong (Cathy) Zhang, Huawei US R&D
o Louis Fourie, Huawei US R&D
o Ron Parker, Affirmed Networks
o Myo Zarny, Goldman Sachs
o Andrew Dolganow, Alcatel-Lucent
o Rex Fernando, Cisco Systems, Inc.
o Praveen Muley, Alcatel-Lucent
o Navindra Yadav, Cisco Systems, Inc.
<span class="grey">Quinn, et al. Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc8300">RFC 8300</a> Network Service Header (NSH) January 2018</span>
Authors' Addresses
Paul Quinn (editor)
Cisco Systems, Inc.
Email: paulq@cisco.com
Uri Elzur (editor)
Intel
Email: uri.elzur@intel.com
Carlos Pignataro (editor)
Cisco Systems, Inc.
Email: cpignata@cisco.com
Quinn, et al. Standards Track [Page 40]
</pre>
|