1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349
|
<pre>Internet Research Task Force (IRTF) CJ. Bernardos
Request for Comments: 8568 UC3M
Category: Informational A. Rahman
ISSN: 2070-1721 InterDigital
JC. Zuniga
SIGFOX
LM. Contreras
TID
P. Aranda
UC3M
P. Lynch
Keysight Technologies
April 2019
<span class="h1">Network Virtualization Research Challenges</span>
Abstract
This document describes open research challenges for network
virtualization. Network virtualization is following a similar path
as previously taken by cloud computing. Specifically, cloud
computing popularized migration of computing functions (e.g.,
applications) and storage from local, dedicated, physical resources
to remote virtual functions accessible through the Internet. In a
similar manner, network virtualization is encouraging migration of
networking functions from dedicated physical hardware nodes to a
virtualized pool of resources. However, network virtualization can
be considered to be a more complex problem than cloud computing as it
not only involves virtualization of computing and storage functions
but also involves abstraction of the network itself. This document
describes current research and engineering challenges in network
virtualization including the guarantee of quality of service,
performance improvement, support for multiple domains, network
slicing, service composition, device virtualization, privacy and
security, separation of control concerns, network function placement,
and testing. In addition, some proposals are made for new activities
in the IETF and IRTF that could address some of these challenges.
This document is a product of the Network Function Virtualization
Research Group (NFVRG).
<span class="grey">Bernardos, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Research Task Force
(IRTF). The IRTF publishes the results of Internet-related research
and development activities. These results might not be suitable for
deployment. This RFC represents the consensus of the Network
Function Virtualization Research Group of the Internet Research Task
Force (IRTF). Documents approved for publication by the IRSG are not
candidates for any level of Internet Standard; see Section 2 of <a href="./rfc7841">RFC</a>
<a href="./rfc7841">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/rfc8568">https://www.rfc-editor.org/info/rfc8568</a>.
Copyright Notice
Copyright (c) 2019 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.
<span class="grey">Bernardos, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
Table of Contents
<a href="#section-1">1</a>. Introduction and Scope . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2">2</a>. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3">3</a>. Background . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Network Function Virtualization . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. Software-Defined Networking . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.3">3.3</a>. ITU-T Functional Architecture of SDN . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.4">3.4</a>. Multi-Access Edge Computing . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-3.5">3.5</a>. IEEE 802.1CF (OmniRAN) . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-3.6">3.6</a>. Distributed Management Task Force (DMTF) . . . . . . . . <a href="#page-15">15</a>
<a href="#section-3.7">3.7</a>. Open-Source Initiatives . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-4">4</a>. Network Virtualization Challenges . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-4.1">4.1</a>. Overview . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-4.2">4.2</a>. Guaranteeing Quality of Service . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-4.2.1">4.2.1</a>. Virtualization Technologies . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-4.2.2">4.2.2</a>. Metrics for NFV Characterization . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-4.2.3">4.2.3</a>. Predictive Analysis . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-4.2.4">4.2.4</a>. Portability . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-4.3">4.3</a>. Performance Improvement . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-4.3.1">4.3.1</a>. Energy Efficiency . . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-4.3.2">4.3.2</a>. Improved Link Usage . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-4.4">4.4</a>. Multiple Domains . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-4.5">4.5</a>. 5G and Network Slicing . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-4.5.1">4.5.1</a>. Virtual Network Operators . . . . . . . . . . . . . . <a href="#page-23">23</a>
4.5.2. Extending Virtual Networks and Systems to the
Internet of Things . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-4.6">4.6</a>. Service Composition . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-4.7">4.7</a>. Device Virtualization for End Users . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-4.8">4.8</a>. Security and Privacy . . . . . . . . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-4.9">4.9</a>. Separation of Control Concerns . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-4.10">4.10</a>. Network Function Placement . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-4.11">4.11</a>. Testing . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-4.11.1">4.11.1</a>. Changes in Methodology . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-4.11.2">4.11.2</a>. New Functionality . . . . . . . . . . . . . . . . . <a href="#page-31">31</a>
<a href="#section-4.11.3">4.11.3</a>. Opportunities . . . . . . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#section-5">5</a>. Technology Gaps and Potential IETF Efforts . . . . . . . . . <a href="#page-33">33</a>
<a href="#section-6">6</a>. NFVRG Focus Areas . . . . . . . . . . . . . . . . . . . . . . <a href="#page-34">34</a>
<a href="#section-7">7</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-35">35</a>
<a href="#section-8">8</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-35">35</a>
<a href="#section-9">9</a>. Informative References . . . . . . . . . . . . . . . . . . . <a href="#page-35">35</a>
Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-41">41</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-41">41</a>
<span class="grey">Bernardos, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction and Scope</span>
The telecommunications sector is experiencing a major revolution that
will shape the way networks and services are designed and deployed
for the next few decades. In order to cope with continuously
increasing demand and cost, network operators are taking lessons from
the IT paradigm of cloud computing. This new approach of
virtualizing network functions will enable multi-fold advantages by
moving communication services from bespoke hardware in the operator's
core network to Commercial Off-The-Shelf (COTS) equipment distributed
across data centers.
Some of the network virtualization mechanisms that are being
considered include the following: sharing of network infrastructure
to reduce costs, virtualization of core and edge servers/services
running in data centers as a way of supporting their load-aware
elastic dimensioning, and dynamic energy policies to reduce the
electricity consumption.
This document presents research and engineering challenges in network
virtualization that need to be addressed in order to achieve these
goals, spanning from pure research and engineering/standards space.
The objective of this memo is to document the technical challenges
and corresponding current approaches and to expose requirements that
should be addressed by future research and standards work.
This document represents the consensus of the Network Function
Virtualization Research Group (NFVRG). It has been reviewed by the
RG members active in the specific areas of work covered by the
document.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
The following terms used in this document are defined by the ETSI
Network Function Virtualization (NFV) Industrial Study Group (ISG)
[<a href="#ref-etsi_gs_nfv_003">etsi_gs_nfv_003</a>], the Open Networking Foundation (ONF) [<a href="#ref-onf_tr_521">onf_tr_521</a>],
and the IETF [<a href="./rfc7426" title=""Software- Defined Networking (SDN): Layers and Architecture Terminology"">RFC7426</a>] [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>]:
Application Plane: The collection of applications and services that
program network behavior.
Control Plane (CP): The collection of functions responsible for
controlling one or more network devices. The CP instructs network
devices with respect to how to process and forward packets. The
control plane interacts primarily with the forwarding plane and,
to a lesser extent, with the operational plane.
<span class="grey">Bernardos, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
Forwarding Plane (FP): The collection of resources across all
network devices responsible for forwarding traffic.
Management Plane (MP): The collection of functions responsible for
monitoring, configuring, and maintaining one or more network
devices or parts of network devices. The management plane is
mostly related to the operational plane (it is related less to the
forwarding plane).
NFV Infrastructure (NFVI): Totality of all hardware and software
components that build up the environment in which VNFs are
deployed.
NFV Management and Orchestration (NFV-MANO): Functions collectively
provided by NFVO, VNFM, and VIM.
NFV Orchestrator (NFVO): Functional block that manages the Network
Service (NS) life cycle and coordinates the management of NS life
cycle, VNF life cycle (supported by the VNFM) and NFVI resources
(supported by the VIM) to ensure an optimized allocation of the
necessary resources and connectivity.
Operational Plane (OP): The collection of resources responsible for
managing the overall operation of individual network devices.
Physical Network Function (PNF): Physical implementation of a
network function in a monolithic realization.
Service Function Chain (SFC): For a given service, the abstracted
view of the required service functions and the order in which they
are to be applied. This is somehow equivalent to the Network
Function Forwarding Graph (NF-FG) at ETSI.
Service Function Path (SFP): The selection of specific service
function instances on specific network nodes to form a service
graph through which an SFC is instantiated.
Virtualized Infrastructure Manager (VIM): Functional block that is
responsible for controlling and managing the NFVI compute,
storage, and network resources, usually within one infrastructure
operator's domain.
Virtualized Network Function (VNF): Implementation of a Network
Function that can be deployed on a Network Function Virtualization
Infrastructure (NFVI).
Virtualized Network Function Manager (VNFM): Functional block that
is responsible for the life-cycle management of VNF.
<span class="grey">Bernardos, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Background</span>
This section briefly describes some basic background technologies as
well as other Standards Developing Organizations (SDOs) and open-
source initiatives working on network virtualization or related
topics.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Network Function Virtualization</span>
The ETSI ISG Network Function Virtualization (NFV) is a working group
that, since 2012, has aimed to evolve quasi-standard IT
virtualization technology to consolidate many network equipment types
into industry standard high-volume servers, switches, and storage.
It enables implementing network functions in software that can run on
a range of industry-standard server hardware and can be moved to, or
loaded in, various locations in the network as required, without the
need to install new equipment. The ETSI NFV is one of the
predominant NFV reference framework and architectural footprints
[<a href="#ref-nfv_sota_research_challenges">nfv_sota_research_challenges</a>]. The ETSI NFV framework architecture
is composed of three domains (Figure 1):
o Virtualized Network Function, running over the NFVI.
o NFVI, including the diversity of physical resources and how these
can be virtualized. NFVI supports the execution of the VNFs.
o NFV Management and Orchestration, which covers the orchestration
and life-cycle management of physical and/or software resources
that support the infrastructure virtualization, and the life-cycle
management of VNFs. NFV Management and Orchestration focuses on
all virtualization-specific management tasks necessary in the NFV
framework.
<span class="grey">Bernardos, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
+-------------------------------------------+ +---------------+
| Virtualized Network Functions (VNFs) | | |
| ------- ------- ------- ------- | | |
| | | | | | | | | | | |
| | VNF | | VNF | | VNF | | VNF | | | |
| | | | | | | | | | | |
| ------- ------- ------- ------- | | |
+-------------------------------------------+ | |
| |
+-------------------------------------------+ | |
| NFV Infrastructure (NFVI) | | NFV |
| ----------- ----------- ----------- | | Management |
| | Virtual | | Virtual | | Virtual | | | and |
| | Compute | | Storage | | Network | | | Orchestration |
| ----------- ----------- ----------- | | |
| +---------------------------------------+ | | |
| | Virtualization Layer | | | |
| +---------------------------------------+ | | |
| +---------------------------------------+ | | |
| | ----------- ----------- ----------- | | | |
| | | Compute | | Storage | | Network | | | | |
| | ----------- ----------- ----------- | | | |
| | Hardware resources | | | |
| +---------------------------------------+ | | |
+-------------------------------------------+ +---------------+
Figure 1: ETSI NFV Framework
The NFV architectural framework identifies functional blocks and the
main reference points between such blocks. Some of these are already
present in current deployments, whilst others might be necessary
additions in order to support the virtualization process and
consequent operation. The functional blocks are (Figure 2):
o Virtualized Network Function (VNF)
o Element Management (EM)
o NFV Infrastructure, including: Hardware and virtualized resources
as well as the Virtualization Layer.
o Virtualized Infrastructure Manager(s) (VIM)
o NFV Orchestrator
o VNF Manager(s)
o Service, VNF and Infrastructure Description
<span class="grey">Bernardos, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
o Operational Support Systems and Business Support Systems (OSS and
BSS)
+--------------------+
+-------------------------------------------+ | ---------------- |
| OSS/BSS | | | NFV | |
+-------------------------------------------+ | | Orchestrator +-- |
| ---+------------ | |
+-------------------------------------------+ | | | |
| --------- --------- --------- | | | | |
| | EM 1 | | EM 2 | | EM 3 | | | | | |
| ----+---- ----+---- ----+---- | | ---+---------- | |
| | | | |--|-| VNF | | |
| ----+---- ----+---- ----+---- | | | manager(s) | | |
| | VNF 1 | | VNF 2 | | VNF 3 | | | ---+---------- | |
| ----+---- ----+---- ----+---- | | | | |
+------|-------------|-------------|--------+ | | | |
| | | | | | |
+------+-------------+-------------+--------+ | | | |
| NFV Infrastructure (NFVI) | | | | |
| ----------- ----------- ----------- | | | | |
| | Virtual | | Virtual | | Virtual | | | | | |
| | Compute | | Storage | | Network | | | | | |
| ----------- ----------- ----------- | | ---+------ | |
| +---------------------------------------+ | | | | | |
| | Virtualization Layer | |--|-| VIM(s) +-------- |
| +---------------------------------------+ | | | | |
| +---------------------------------------+ | | ---------- |
| | ----------- ----------- ----------- | | | |
| | | Compute | | Storage | | Network | | | | |
| | | hardware| | hardware| | hardware| | | | |
| | ----------- ----------- ----------- | | | |
| | Hardware resources | | | NFV Management |
| +---------------------------------------+ | | and Orchestration |
+-------------------------------------------+ +--------------------+
Figure 2: ETSI NFV Reference Architecture
<span class="grey">Bernardos, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Software-Defined Networking</span>
The Software-Defined Networking (SDN) paradigm pushes the
intelligence currently residing in the network elements to a central
controller implementing the network functionality through software.
In contrast to traditional approaches, in which the network's control
plane is distributed throughout all network devices, with SDN, the
control plane is logically centralized. In this way, the deployment
of new characteristics in the network no longer requires complex and
costly changes in equipment or firmware updates, but only a change in
the software running in the controller. The main advantage of this
approach is the flexibility it provides operators to manage their
network, i.e., an operator can easily change its policies on how
traffic is distributed throughout the network.
One of the most well-known protocols for the SDN control plane
between the central controller and the networking elements is the
OpenFlow Protocol (OFP), which is maintained and extended by the Open
Network Foundation (ONF) <<a href="https://www.opennetworking.org/">https://www.opennetworking.org/</a>>.
Originally, this protocol was developed specifically for IEEE 802.1
switches conforming to the ONF OpenFlow Switch specification
[<a href="#ref-OpenFlow" title=""OpenFlow Switch Specification"">OpenFlow</a>]. As the benefits of the SDN paradigm have reached a wider
audience, its application has been extended to more complex scenarios
such as wireless and mobile networks. Within this area of work, the
ONF is actively developing new OFP extensions addressing three key
scenarios: (i) wireless backhaul, (ii) cellular Evolved Packet Core
(EPC), and (iii) unified access and management across enterprise
wireless and fixed networks.
<span class="grey">Bernardos, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
+----------+
| ------- |
| |Oper.| | O
| |Mgmt.| |<........> -+- Network Operator
| |Iface| | ^
| ------- | +----------------------------------------+
| | | +------------------------------------+ |
| | | | --------- --------- --------- | |
|--------- | | | | App 1 | | App 2 | ... | App n | | |
||Plugins| |<....>| | --------- --------- --------- | |
|--------- | | | Plugins | |
| | | +------------------------------------+ |
| | | Application Plane |
| | +----------------------------------------+
| | A
| | |
| | V
| | +----------------------------------------+
| | | +------------------------------------+ |
|--------- | | | ------------ ------------ | |
|| Netw. | | | | | Module 1 | | Module 2 | | |
||Engine | |<....>| | ------------ ------------ | |
|--------- | | | Network Engine | |
| | | +------------------------------------+ |
| | | Control Plane |
| | +----------------------------------------+
| | A
| | |
| | V
| | +----------------------------------------+
| | | +--------------+ +--------------+ |
| | | | ------------ | | ------------ | |
|----------| | | | OpenFlow | | | | OpenFlow | | |
||OpenFlow||<....>| | ------------ | | ------------ | |
|----------| | | NE | | NE | |
| | | +--------------+ +--------------+ |
| | | Data Plane |
|Management| +----------------------------------------+
+----------+
Figure 3: High-Level SDN ONF Architecture
Figure 3 shows the blocks and the functional interfaces of the ONF
architecture, which comprises three planes: data, controller, and
application. The data plane comprehends several Network Entities
(NEs), which expose their capabilities toward the control plane via a
Southbound API. The control plane includes several cooperating
modules devoted to the creation and maintenance of an abstracted
<span class="grey">Bernardos, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
resource model of the underlying network. Such a model is exposed to
the applications via a Northbound API where the application plane
comprises several applications/services, each of which has exclusive
control of a set of exposed resources.
The management plane spans its functionality across all planes
performing the initial configuration of the network elements in the
data plane, the assignment of the SDN controller and the resources
under its responsibility. In the control plane, the management needs
to configure the policies defining the scope of the control given to
the SDN applications, to monitor the performance of the system and to
configure the parameters required by the SDN controller modules. In
the application plane, the management plane configures the parameters
of the applications and the service-level agreements. In addition to
these interactions, the management plane exposes several functions to
network operators that can easily and quickly configure and tune the
network at each layer.
In <a href="./rfc7426">RFC 7426</a> [<a href="./rfc7426" title=""Software- Defined Networking (SDN): Layers and Architecture Terminology"">RFC7426</a>], the IRTF Software-Defined Networking Research
Group (SDNRG) documented a layer model of an SDN architecture. This
was due to the following controversial discussion topics (among
others). What exactly is SDN? What is the layer structure of the
SDN architecture? How do layers interface with each other?
Figure 4 reproduces the figure included in <a href="./rfc7426">RFC 7426</a> [<a href="./rfc7426" title=""Software- Defined Networking (SDN): Layers and Architecture Terminology"">RFC7426</a>] to
summarize the SDN architecture abstractions in the form of a
detailed, high-level schematic. In a particular implementation,
planes can be collocated with other planes or can be physically
separated.
In SDN, a controller manipulates controlled entities via an
interface. Interfaces, when local, are mostly API invocations
through some library or system call. However, such interfaces may be
extended via some protocol definition, which may use local
interprocess communication (IPC) or a protocol that could also act
remotely; the protocol may be defined as an open standard or in a
proprietary manner.
SDN expands multiple planes: forwarding, operational, control,
management, and application. All planes mentioned above are
connected via interfaces. Additionally, <a href="./rfc7426">RFC 7426</a> [<a href="./rfc7426" title=""Software- Defined Networking (SDN): Layers and Architecture Terminology"">RFC7426</a>] considers
four abstraction layers: the Device and resource Abstraction Layer
(DAL), the Control Abstraction Layer (CAL), the Management
Abstraction Layer (MAL), and the Network Services Abstraction Layer
(NSAL).
<span class="grey">Bernardos, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
o--------------------------------o
| |
| +-------------+ +----------+ |
| | Application | | Service | |
| +-------------+ +----------+ |
| Application Plane |
o---------------Y----------------o
|
*-----------------------------Y---------------------------------*
| Network Services Abstraction Layer (NSAL) |
*------Y------------------------------------------------Y-------*
| |
| Service Interface |
| |
o------Y------------------o o---------------------Y------o
| | Control Plane | | Management Plane | |
| +----Y----+ +-----+ | | +-----+ +----Y----+ |
| | Service | | App | | | | App | | Service | |
| +----Y----+ +--Y--+ | | +--Y--+ +----Y----+ |
| | | | | | | |
| *----Y-----------Y----* | | *---Y---------------Y----* |
| | Control Abstraction | | | | Management Abstraction | |
| | Layer (CAL) | | | | Layer (MAL) | |
| *----------Y----------* | | *----------Y-------------* |
| | | | | |
o------------|------------o o------------|---------------o
| |
| CP | MP
| Southbound | Southbound
| Interface | Interface
| |
*------------Y---------------------------------Y----------------*
| Device and resource Abstraction Layer (DAL) |
*------------Y---------------------------------Y----------------*
| | | |
| o-------Y----------o +-----+ o--------Y----------o |
| | Forwarding Plane | | App | | Operational Plane | |
| o------------------o +-----+ o-------------------o |
| Network Device |
+---------------------------------------------------------------+
Figure 4: SDN-Layer Architecture
While SDN is often directly associated to OpenFlow, this is just one
(relevant) example of a southbound protocol between the central
controller and the network entities. Other relevant examples of
protocols in the SDN family are NETCONF [<a href="./rfc6241" title=""Network Configuration Protocol (NETCONF)"">RFC6241</a>], RESTCONF
[<a href="./rfc8040" title=""RESTCONF Protocol"">RFC8040</a>], and ForCES [<a href="./rfc5810" title=""Forwarding and Control Element Separation (ForCES) Protocol Specification"">RFC5810</a>].
<span class="grey">Bernardos, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. ITU-T Functional Architecture of SDN</span>
The ITU-T (the Telecommunication standardization sector of the
International Telecommunication Union) has also looked into SDN
architectures, defining a slightly modified one from what other SDOs
have done. In ITU-T recommendation Y.3302 [<a href="#ref-itu-t-y.3302">itu-t-y.3302</a>], the ITU-T
provides a functional architecture of SDN with descriptions of
functional components and reference points. The described functional
architecture is intended to be used as an enabler for further studies
on other aspects such as protocols and security as well as being used
to customize SDN in support of appropriate use cases (e.g., cloud
computing, mobile networks). This recommendation is based on ITU-T
Y.3300 [<a href="#ref-itu-t-y.3300">itu-t-y.3300</a>] and ITU-T Y.3301 [<a href="#ref-itu-t-y.3301">itu-t-y.3301</a>]. While the
first describes the framework of SDN (including definitions,
objectives, high-level capabilities, requirements, and the high-level
architecture of SDN), the second describes more-detailed
requirements.
Figure 5 shows the SDN functional architecture defined by the ITU-T.
It is a layered architecture composed of the SDN application layer
(SDN-AL), the SDN control layer (SDN-CL), and the SDN resource layer
(SDN-RL). It also has multi-layer management functions (MMF), which
provide the ability to manage the functionalities of SDN layers,
i.e., SDN-AL, SDN-CL, and SDN-RL. MMF interacts with these layers
using Multi-layer Management Functions Application (MMFA), Multi-
layer Management Functions Control (MMFC), and Multi-layer Management
Functions Resource (MMFR) reference points.
The SDN-AL enables a service-aware behavior of the underlying network
in a programmatic manner. The SDN-CL provides programmable means to
control the behavior of SDN-RL resources (such as data transport and
processing) following requests received from the SDN-AL according to
MMF policies. The SDN-RL is where the physical or virtual network
elements perform transport and/or processing of data packets
according to SDN-CL decisions.
<span class="grey">Bernardos, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
MMFO MMFA
+-----+ . +---------------------+ . +--------------------+
| | . |+---+ +---+ +-------+| . |+---------+ +-----+ |
| | . || | | | | || . || AL. | | | |
| | . || E | | | | App. || . || Mngmt. | | SDN | | SDN-AL
| | . || x | | M | | Layer || . || Support | | App | |
| | . || t.| | u | | Mngmt.|| . || & Orch. | | | |
| | . || | | l | +-------+| . |+---------+ +-----+ |
| | . || R | | t | | . +--------------------+
| | . || e | | i | |MMFC ..................... ACI
| | . || l | | - | | . +--------------------+
| | . || a | | l | +-------+| . |+------+ +---------+|
| OSS/| . || t | | a | | || . || | | App. ||
| BSS | . || i | | y | | || . || | | Support ||
| | . || o | | e | | || . || | +---------+|
| | . || n | | r | | || . || CL | +---------+|
| | . || s | | | |Control|| . ||Mngmt.| | Control ||
| | . || h | | M | | Layer || . || Supp.| | Layer || SDN-CL
| | . || i | | a | | Mngmt.|| . || and | | Serv. ||
| | . || p | | n | | || . || Orch.| +---------+|
| | . || | | a | | || . || | +---------+|
| | . || M | | g | | || . || | | Resource||
| | . || n | | e | | || . || | | Abstrac.||
| | . || g | | m | +-------+| . |+------+ +---------+|
| | . || m | | e | | . +--------------------+
| | . || t.| | n | |MMFR ..................... RCI
| | . || | | t | | . +--------------------+
+-----+ . |+---+ | | +-------+| . |+------++----------+|
| | O | | || . || ||RL Control||
| | r | |Resour.|| . || RL |+----------+|
MMF | | c | | Layer || . ||Mngmt.|+----++----+| SDN-RL
| | h.| | Mngmt.|| . || Supp.||Data||Data||
| | | | || . || ||Tran||Proc||
| +---+ +-------+| . |+------++----++----+|
+---------------------+ . +--------------------+
Legend:
ACI: Application Control Interface
MMFA: Multi-layer Management Functions Application
MMFC: Multi-layer Management Functions Control
MMFO: Multi-layer Management Functions OSS/BSS
MMFR: Multi-layer Management Functions Resource
RCI: Resource Control Interfaces
RL: Resource Layer
Figure 5: ITU-T SDN Functional Architecture
<span class="grey">Bernardos, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Multi-Access Edge Computing</span>
Multi-access Edge Computing (MEC) -- formerly known as Mobile Edge
Computing -- capabilities deployed in the edge of the mobile network
can facilitate the efficient and dynamic provision of services to
mobile users. The ETSI ISG MEC working group, operative from end of
2014, intends to specify an open environment for integrating MEC
capabilities with service providers' networks, also including
applications from third parties. These distributed computing
capabilities provide IT infrastructure as in a cloud environment for
the deployment of functions in mobile access networks. It can be
seen then as a complement to both NFV and SDN.
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. IEEE 802.1CF (OmniRAN)</span>
The IEEE 802.1CF Recommended Practice [<a href="#ref-omniran" title=""Recommended Practice for Network Reference Model and Functional Description of IEEE 802 Access Network"">omniran</a>] specifies an access
network that connects terminals to their access routers utilizing
technologies based on the family of IEEE 802 Standards (e.g., 802.3
Ethernet, 802.11 Wi-Fi, etc.). The specification defines an access
network reference model, including entities and reference points
along with behavioral and functional descriptions of communications
among those entities.
The goal of this project is to help unify the support of different
interfaces, enabling shared-network control and use of SDN
principles, thereby lowering the barriers to new network
technologies, to new network operators, and to new service providers.
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. Distributed Management Task Force (DMTF)</span>
The DMTF <<a href="https://www.dmtf.org/">https://www.dmtf.org/</a>> is an industry standards
organization working to simplify the manageability of network-
accessible technologies through open and collaborative efforts by
some technology companies. The DMTF is involved in the creation and
adoption of interoperable management standards, supporting
implementations that enable the management of diverse traditional and
emerging technologies including cloud, virtualization, network, and
infrastructure.
There are several DMTF initiatives that are relevant to the network
virtualization area, such as the Open Virtualization Format (OVF) for
VNF packaging; the Cloud Infrastructure Management Interface (CIMI)
for cloud infrastructure management; the Network Management (NETMAN),
for VNF management; and the Virtualization Management (VMAN), for
virtualization infrastructure management.
<span class="grey">Bernardos, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a>. Open-Source Initiatives</span>
The open-source community is especially active in the area of network
virtualization and orchestration. We next summarize some of the
active efforts:
o OpenStack. OpenStack is a free and open-source cloud-computing
software platform. OpenStack software controls large pools of
compute, storage, and networking resources throughout a data
center, managed through a dashboard or via the OpenStack API.
o Kubernetes. Kubernetes is an open-source system for automating
deployment, scaling and management of containerized applications.
Kubernetes can schedule and run application containers on clusters
of physical or virtual machines. Kubernetes allows (i) Scale on
the fly, (ii) Limit hardware usage to required resources only,
(iii) Load-balancing Monitoring, and (iv) Efficient life-cycle
management.
o OpenDayLight. OpenDayLight (ODL) is a highly available, modular,
extensible and scalable multiprotocol controller infrastructure
built for SDN deployments on modern heterogeneous multi-vendor
networks. It provides a model-driven service abstraction platform
that allows users to write apps that easily work across a wide
variety of hardware and southbound protocols.
o ONOS. The Open Network Operating System (ONOS) project is an
open-source community hosted by The Linux Foundation. The goal of
the project is to create an SDN operating system for
communications service providers that is designed for scalability,
high performance, and high availability.
o OpenContrail. OpenContrail is a licensed Apache 2.0 project that
is built using standards-based protocols and that provides all the
necessary components for network virtualization: an SDN
controller, a virtual router, an analytics engine, and published
northbound APIs. It has an extensive Representational State
Transfer (REST) API to configure and gather operational and
analytics data from the system.
o OPNFV. The Open Platform for NFV (OPNFV) is a carrier-grade,
integrated, open-source platform to accelerate the introduction of
new NFV products and services. By integrating components from
upstream projects, the OPNFV community aims at conducting
performance and use case-based testing to ensure the platform's
suitability for NFV use cases. The scope of OPNFV's initial
release is focused on building NFV Infrastructure (NFVI) and
Virtualized Infrastructure Manager (VIM) by integrating components
<span class="grey">Bernardos, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
from upstream projects such as OpenDayLight, OpenStack, Ceph
Storage, Kernel-based Virtual Machine (KVM), Open vSwitch, and
Linux. These components, along with APIs to other NFV elements,
form the basic infrastructure required for Virtualized Network
Functions (VNFs) and Management and Orchestration (MANO)
components. OPNFV's goal is to (i) increase performance and power
efficiency, (ii) improve reliability, availability, and
serviceability, and (iii) deliver comprehensive platform
instrumentation.
o OSM. Open Source Mano (OSM) is an ETSI-hosted project to develop
an Open Source NFV Management and Orchestration (MANO) software
stack aligned with ETSI NFV. OSM is based on components from
previous projects, such Telefonica's OpenMANO or Canonical's Juju,
among others.
o OpenBaton. OpenBaton is a Network Function Virtualization
Orchestrator (NFVO) that is ETSI NFV compliant. OpenBaton was
part of the OpenSDNCore project started with the objective of
providing a compliant implementation of the ETSI NFV
specification.
o ONAP. Open Network Automation Platform (ONAP) is an open-source
software platform that delivers capabilities for the design,
creation, orchestration, monitoring, and life-cycle management of
(i) Virtual Network Functions (VNFs), (ii) The carrier-scale
Software-Defined Networks (SDNs) that contain them, and (iii)
higher-level services that combine the above. ONAP (derived from
the AT&T's ECOMP) provides for automatic, policy-driven
interaction of these functions and services in a dynamic, real-
time cloud environment.
o SONA. The Simplified Overlay Network Architecture (SONA) is an
extension to ONOS to have an almost full SDN network control in
OpenStack for virtual tenant network provisioning. Basically,
SONA is an SDN-based network virtualization solution for cloud DC.
Among the main areas that are being developed by the aforementioned
open-source activities that relate to network virtualization
research, we can highlight policy-based resource management,
analytics for visibility and orchestration, and service verification
with regard to security and resiliency.
<span class="grey">Bernardos, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Network Virtualization Challenges</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Overview</span>
Network virtualization is changing the way the telecommunications
sector will deploy, extend, and operate their networks. These new
technologies aim at reducing the overall costs by moving
communication services from specific hardware in the operators' cores
to server farms scattered in data centers (i.e., compute and storage
virtualization). In addition, the networks interconnecting the
functions that compose a network service are fundamentally affected
in the way they route, process, and control traffic (i.e., network
virtualization).
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Guaranteeing Quality of Service</span>
Achieving a given QoS in an NFV environment with virtualized and
distributed computing, storage, and networking functions is more
challenging than providing the equivalent in discrete non-virtualized
components. For example, ensuring a guaranteed and stable forwarding
data rate has proven not to be straightforward when the forwarding
function is virtualized and runs on top of COTS server hardware
[<a href="#ref-openmano_dataplane">openmano_dataplane</a>] [<a href="#ref-NFV-COTS" title=""NFV Reliability using COTS Hardware"">NFV-COTS</a>] [<a href="#ref-etsi_nfv_whitepaper_3">etsi_nfv_whitepaper_3</a>]. Again, the
comparison point is against a router or forwarder built on optimized
hardware. We next identify some of the challenges that this poses.
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. Virtualization Technologies</span>
The issue of guaranteeing a network QoS is less of an issue for
"traditional" cloud computing because the workloads that are treated
there are servers or clients in the networking sense and hardly ever
process packets. Cloud computing provides hosting for applications
on shared servers in a highly separated way. Its main advantage is
that the infrastructure costs are shared among tenants and that the
cloud infrastructure provides levels of reliability that can not be
achieved on individual premises in a cost-efficient way
[<a href="#ref-intel_10_differences_nfv_cloud">intel_10_differences_nfv_cloud</a>]. NFV has very strict requirements
posed in terms of performance, stability, and consistency. Although
there are some tools and mechanisms to improve this, such as Enhanced
Performance Awareness (EPA), Single Root I/O Virtualization (SR-IOV),
Non-Uniform Memory Access (NUMA), Data Plane Development Kit (DPDK),
etc., these are still unsolved challenges. One open research issue
is finding out technologies that are different from Virtual Machines
(VMs) and more suitable for dealing with network functionalities.
Lately, a number of lightweight virtualization technologies including
containers, unikernels (specialized VMs) and minimalistic
distributions of general-purpose OSes have appeared as virtualization
<span class="grey">Bernardos, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
approaches that can be used when constructing an NFV platform.
[<a href="#ref-LIGHT-NFV">LIGHT-NFV</a>] describes the challenges in building such a platform and
discusses to what extent these technologies, as well as traditional
VMs, are able to address them.
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Metrics for NFV Characterization</span>
Another relevant aspect is the need for tools for diagnostics and
measurements suited for NFV. There is a pressing need to define
metrics and associated protocols to measure the performance of NFV.
Specifically, since NFV is based on the concept of taking centralized
functions and evolving them to highly distributed software (SW)
functions, there is a commensurate need to fully understand and
measure the baseline performance of such systems.
The IP Performance Metrics (IPPM) WG defines metrics that can be used
to measure the quality and performance of Internet services and
applications running over transport-layer protocols (e.g., TCP and
UDP) over IP. It also develops and maintains protocols for the
measurement of these metrics. While the IPPM WG is a long-running WG
that started in 1997, at the time of writing, it does not have a
charter item or active Internet-Drafts related to the topic of
network virtualization. In addition to using IPPM to evaluate QoS,
there is a need for specific metrics for assessing the performance of
network-virtualization techniques.
The Benchmarking Methodology Working Group (BMWG) is also performing
work related to NFV metrics. For example, [<a href="./rfc8172" title=""Considerations for Benchmarking Virtual Network Functions and Their Infrastructure"">RFC8172</a>] investigates
additional methodological considerations necessary when benchmarking
VNFs that are instantiated and hosted in general-purpose hardware,
using bare-metal hypervisors or other isolation environments (such as
Linux containers). An essential consideration is benchmarking
physical and VNFs in the same way when possible, thereby allowing
direct comparison.
There is a clear motivation for the work on performance metrics for
NFV [<a href="#ref-etsi_gs_nfv_per_001">etsi_gs_nfv_per_001</a>], as stated in [<a href="./rfc8172" title=""Considerations for Benchmarking Virtual Network Functions and Their Infrastructure"">RFC8172</a>] (and replicated
here):
I'm designing and building my NFV Infrastructure platform. The
first steps were easy because I had a small number of categories
of VNFs to support and the VNF vendor gave HW recommendations that
I followed. Now I need to deploy more VNFs from new vendors, and
there are different hardware recommendations. How well will the
new VNFs perform on my existing hardware? Which among several new
VNFs in a given category are most efficient in terms of capacity
they deliver? And, when I operate multiple categories of VNFs
(and PNFs) *concurrently* on a hardware platform such that they
<span class="grey">Bernardos, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
share resources, what are the new performance limits, and what are
the software design choices I can make to optimize my chosen
hardware platform? Conversely, what hardware platform upgrades
should I pursue to increase the capacity of these concurrently
operating VNFs?
Lately, there are also some efforts looking into VNF benchmarking.
The selection of an NFV Infrastructure Point of Presence to host a
VNF or allocation of resources (e.g., virtual CPUs, memory) needs to
be done over virtualized (abstracted and simplified) resource views
[<a href="#ref-vnf_benchmarking">vnf_benchmarking</a>] [<a href="#ref-VNF-VBAAS">VNF-VBAAS</a>].
<span class="h4"><a class="selflink" id="section-4.2.3" href="#section-4.2.3">4.2.3</a>. Predictive Analysis</span>
On top of diagnostic tools that enable an assessment of the QoS,
predictive analyses are required to react before anomalies occur.
Due to the SW characteristics of VNFs, a reliable diagnosis framework
could potentially enable the prevention of issues by a proper
diagnosis and then a reaction in terms of acting on the potentially
impacted service (e.g., migration to a different compute node,
scaling in/out, up/down, etc.).
<span class="h4"><a class="selflink" id="section-4.2.4" href="#section-4.2.4">4.2.4</a>. Portability</span>
Portability in NFV refers to the ability to run a given VNF on
multiple NFVIs, that is, guaranteeing that the VNF would be able to
perform its functions with a high and predictable performance given
that a set of requirements on the NFVI resources is met. Therefore,
portability is a key feature that, if fully enabled, would contribute
to making the NFV environment achieve a better reliability than a
traditional system. Implementing functionality in SW over
"commodity" infrastructure should make it much easier to port/move
functions from one place to another. However, this is not yet as
ideal as it sounds, and there are aspects that are not fully tackled.
The existence of different hypervisors, specific hardware
dependencies (e.g., EPA related), or state-synchronization aspects
are just some examples of troublemakers for portability purposes.
The ETSI NFV ISG is doing work in relation to portability.
[<a href="#ref-etsi_gs_nfv_per_001">etsi_gs_nfv_per_001</a>] provides a list of minimal features that the VM
Descriptor and Compute Host Descriptor should contain for the
appropriate deployment of VM images over an NFVI (i.e., a "telco data
center"), in order to guarantee high and predictable performance of
data-plane workloads while assuring their portability. In addition,
[<a href="#ref-etsi_gs_nfv_per_001">etsi_gs_nfv_per_001</a>] provides a set of recommendations on the
minimum requirements that hardware (HW) and hypervisor should have
for a "telco data center" suitable for different workloads (data
plane, control plane, etc.) present in VNFs. The purpose of
<span class="grey">Bernardos, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
[<a id="ref-etsi_gs_nfv_per_001">etsi_gs_nfv_per_001</a>] is to provide the list of VM requirements that
should be included in the VM Descriptor template, and the list of HW
capabilities that should be included in the Compute Host Descriptor
(CHD) to assure predictable high performance. ETSI NFV assumes that
the MANO functions will make the mix & match. Therefore, there are
still several research challenges to be addressed here.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Performance Improvement</span>
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Energy Efficiency</span>
Virtualization is typically seen as a direct enabler of energy
savings. Some of the enablers for this that are often mentioned
[<a href="#ref-nfv_sota_research_challenges">nfv_sota_research_challenges</a>] are (i) the multiplexing gains
achieved by centralizing functions in data centers reduce the overall
energy consumed and (ii) the flexibility brought by network
programmability enables to switch off infrastructure as needed in a
much easier way. However, there is still a lot of room for
improvement in terms of virtualization techniques to reduce the power
consumption, such as enhanced-hypervisor technologies.
Some additional examples of research topics that could enable energy
savings are [<a href="#ref-nfv_sota_research_challenges">nfv_sota_research_challenges</a>]:
o Energy-aware scaling (e.g., reductions in CPU speeds and partially
turning off some hardware components to meet a given energy
consumption target.
o Energy-aware function placement.
o Scheduling and chaining algorithms, for example, adapting the
network topology and operating parameters to minimize the
operation cost (e.g., tracking energy costs to identify the
cheapest prices).
Note that it is also important to analyze the trade-off between
energy efficiency and network performance.
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Improved Link Usage</span>
The use of NFV and SDN technologies can help improve link usage. SDN
has already shown that it can greatly increase average link
utilization (e.g., Google example [<a href="#ref-google_sdn_wan">google_sdn_wan</a>]). NFV adds more
complexity (e.g., due to service-function chaining / VNF forwarding
graphs), which needs to be considered. Aspects like the ones
described in [<a href="#ref-NFVRG-TOPO">NFVRG-TOPO</a>] (on NFV data center topology design) have
to be looked at carefully as well.
<span class="grey">Bernardos, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Multiple Domains</span>
Market fragmentation has resulted in a multitude of network operators
each focused on different countries and regions. This makes it
difficult to create infrastructure services spanning multiple
countries, such as virtual connectivity or compute resources, as no
single operator has a footprint everywhere. Cross-domain
orchestration of services over multiple administrations or over
multi-domain single administrations will allow end-to-end network and
service elements to mix in multi-vendor, heterogeneous technology,
and resource environments [<a href="#ref-multi-domain_5GEx">multi-domain_5GEx</a>].
For the specific use case of 'Network as a Service', it becomes even
more important to ensure that Cross Domain Orchestration also takes
care of hierarchy of networks and their association, with respect to
provisioning tunnels and overlays.
Multi-domain orchestration is currently an active research topic,
which is being tackled, among others, by ETSI NFV ISG and the 5GEx
project <<a href="https://www.5gex.eu/">https://www.5gex.eu/</a>> [<a href="#ref-MULTI-NMRG">MULTI-NMRG</a>] [<a href="#ref-multi-domain_5GEx">multi-domain_5GEx</a>].
Another side of the multi-domain problem is the integration/
harmonization of different management domains. A key example comes
from Multi-access Edge Computing, which, according to ETSI, comes
with its own MANO system and would require integration if
interconnected to a generic NFV system.
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>. 5G and Network Slicing</span>
From the beginning of all 5G discussions in the research and industry
fora, it has been agreed that 5G will have to address many more use
cases than the preceding wireless generations, which first focused on
voice services and then on voice and high-speed packet data services.
In this case, 5G should be able to handle not only the same (or
enhanced) voice and packet data services, but also emerging services
like tactile Internet and the Internet of Things (IoT). These use
cases take the requirements to opposite extremes, as some of them
require ultra-low latency and higher-speed, whereas some others
require ultra-low power consumption and high-delay tolerance.
Because of these very extreme 5G use cases, it is envisioned that
selective combinations of radio access networks and core network
components will have to be combined into a given network slice to
address the specific requirements of each use case.
For example, within the major IoT category, which is perhaps the most
disrupting one, some autonomous IoT devices will have very low
throughput, will have much longer sleep cycles (and therefore high
<span class="grey">Bernardos, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
latency), and a battery life time exceeding by a factor of thousands
that of smartphones or some other devices that will have almost
continuous control and data communications. Hence, it is envisioned
that a customized network slice will have to be stitched together
from virtual resources or sub-slices to meet these requirements.
The actual definition of a "network slice" from an IP infrastructure
viewpoint is currently undergoing intense debate; see [<a href="#ref-COMS-PS" title=""Problem Statement of Common Operation and Management of Network Slicing"">COMS-PS</a>],
[<a href="#ref-NETSLICES">NETSLICES</a>], [<a href="#ref-SLICE-3GPP">SLICE-3GPP</a>], and [<a href="#ref-ngmn_5G_whitepaper">ngmn_5G_whitepaper</a>]. Network slicing
is a key for introducing new actors in existing markets at a low cost
-- by letting new players rent "blocks" of capacity, if the new
business model enables performance that meets the application needs
(e.g., broadcasting updates to many sensors with satellite
broadcasting capabilities). However, more work needs to be done to
define the basic architectural approach of how network slices will be
defined and formed. For example, is it mostly a matter of defining
the appropriate network models (e.g., YANG) to stitch the network
slice from existing components? Or do end-to-end timing,
synchronization, and other low-level requirements mean that more
fundamental research has to be done?
<span class="h4"><a class="selflink" id="section-4.5.1" href="#section-4.5.1">4.5.1</a>. Virtual Network Operators</span>
The widespread use/discussion/practice of system and network
virtualization technologies has led to new business opportunities,
enlarging the offer of IT resources with virtual network and
computing resources, among others. As a consequence, the network
ecosystem now differentiates between the owner of physical resources,
the Infrastructure Provider (InP), and the intermediary that conforms
and delivers network services to the final customers, the Virtual
Network Operator (VNO).
VNOs aim to exploit the virtualized infrastructures to deliver new-
and-improved services to their customers. However, current network
virtualization techniques offer poor support for VNOs to control
their resources. It has been considered that the InP is responsible
for the reliability of the virtual resources, but there are several
situations in which a VNO requires a finer control on its resources.
For instance, dynamic events, such as the identification of new
requirements or the detection of incidents within the virtual system,
might urge a VNO to quickly reform its virtual infrastructure and
resource allocation. However, the interfaces offered by current
virtualization platforms do not offer the necessary functions for
VNOs to perform the elastic adaptations they need to conduct in
dynamic environments.
<span class="grey">Bernardos, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
Beyond their heterogeneity, which can be resolved by software
adapters, current virtualization platforms do not have common methods
and functions, so it is difficult for the virtual network controllers
used by the VNOs to actually manage and control virtual resources
instantiated on different platforms, not even considering different
InPs. Therefore, it is necessary to reach a common definition of the
functions that should be offered by underlying platforms to give such
overlay controllers the possibility to allocate and deallocate
resources dynamically and get monitoring data about them.
Such common methods should be offered by all underlying controllers,
regardless of being network-oriented (e.g., ODL, ONOS, and Ryu) or
computing-oriented (e.g., OpenStack, OpenNebula, and Eucalyptus).
Furthermore, it is important for those platforms to offer some "PUSH"
function to report resource state, avoiding the need for the VNO's
controller to "POLL" for such data. A starting point to get proper
notifications within current REST APIs could be to consider the
protocol proposed by the WEBPUSH WG [<a href="./rfc8030" title=""Generic Event Delivery Using HTTP Push"">RFC8030</a>].
Finally, in order to establish a proper order and allow the
coexistence and collaboration of different systems, a common ontology
regarding network and system virtualization should be defined and
agreed upon, so different and heterogeneous systems can understand
each other without requiring reliance on specific adaptation
mechanisms that might break with any update on any side of the
relation.
<span class="h4"><a class="selflink" id="section-4.5.2" href="#section-4.5.2">4.5.2</a>. Extending Virtual Networks and Systems to the Internet of Things</span>
The Internet of Things (IoT) refers to the vision of connecting a
multitude of automated devices (e.g., lights, environmental sensors,
traffic lights, parking meters, health and security systems, etc.) to
the Internet for purposes of reporting and remote command and control
of the device. This vision is being realized by a multi-pronged
approach of standardization in various forums and complementary open-
source activities. For example, in the IETF, support of IoT web
services has been defined by an HTTP-like protocol adapted for IoT
called "CoAP" [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>]; and, lately, a group has been studying the
need to develop a new network layer to support IP applications over
Low-Power Wide Area Networks (LPWAN).
Elsewhere, for 5G cellular evolution, there is much discussion on the
need for supporting virtual network slices for the expected massive
numbers of IoT devices. A separate virtual network slice is
considered necessary for different 5G IoT use cases because devices
will have very different characteristics than typical cellular
<span class="grey">Bernardos, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
devices like smartphones [<a href="#ref-ngmn_5G_whitepaper">ngmn_5G_whitepaper</a>], and the number of IoT
devices is expected to be at least one or two orders of magnitude
higher than other 5G devices (see <a href="#section-4.5">Section 4.5</a>).
The specific nature of the IoT ecosystem, particularly reflected in
the Machine-to-Machine (M2M) communications, leads to the creation of
new and highly distributed systems which demand location-based
network and computing services. A specific example can be
represented by a set of "things" that suddenly require the setup of a
firewall to allow external entities to access their data while
outsourcing some computation requirements to more powerful systems
relying on cloud-based services. This representative use case
exposes important requirements for both NFV and the underlying cloud
infrastructures.
In order to provide the aforementioned location-based functions
integrated with highly distributed systems, the so-called fog
infrastructures should be able to instantiate VNFs, placing them in
the required place, e.g., close to their consumers. This requirement
implies that the interfaces offered by virtualization platforms must
support the specification of location-based resources, which is a key
function in those scenarios. Moreover, those platforms must also be
able to interpret and understand the references used by IoT systems
to their location (e.g., "My-AP" or "5BLDG+2F") and also the
specification of identifiers linked to other resources, such as the
case of requiring the infrastructure to establish a link between a
specific Access Point (AP) and a specific virtual computing node. In
summary, the research gap is exact localization of VNFs at far
network edge infrastructure, which is highly distributed and dynamic.
<span class="h3"><a class="selflink" id="section-4.6" href="#section-4.6">4.6</a>. Service Composition</span>
Current network services deployed by operators often involve the
composition of several individual functions (such as packet
filtering, deep-packet inspection, load-balancing). These services
are typically implemented by the ordered combination of a number of
service functions that are deployed at different points within a
network, not necessarily on the direct data path. This requires
traffic to be steered through the required service functions,
wherever they are deployed [<a href="./rfc7498" title=""Problem Statement for Service Function Chaining"">RFC7498</a>].
For a given service, the abstracted view of the required service
functions and the order in which they are to be applied is called
"Service Function Chaining" (SFC) [<a href="#ref-sfc_challenges">sfc_challenges</a>], which is called
"Network Function Forwarding Graph" (NF-FG) in ETSI. SFC is
instantiated through the selection of specific service function
instances on specific network nodes to form a service graph: this is
<span class="grey">Bernardos, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
called a "Service Function Path" (SFP). The service functions may be
applied at any layer within the network protocol stack (network
layer, transport layer, application layer, etc.).
Service composition is a powerful means that can provide significant
benefits when applied in a softwarized network environment. However,
there are many research challenges in this area; for example, the
ones related to composition mechanisms and algorithms to enable load-
balancing and improve reliability. The service composition should
also act as an enabler to gather information across all hierarchies
(underlays and overlays) of network deployments that may span across
multiple operators for faster serviceability, thus facilitating
accomplishing aforementioned goals of "load-balancing and improving
reliability".
As described in [<a href="#ref-dynamic_chaining">dynamic_chaining</a>], different algorithms can be used
to enable dynamic service composition that optimizes a QoS-based
utility function (e.g., minimizing the latency per-application
traffic flows) for a given composition plan. Such algorithms can
consider the computation capabilities and load status of resources
executing the VNF instances, either deduced through estimations from
historical usage data or collected through real-time monitoring
(i.e., context-aware selection). For this reason, selections should
include references to dynamic information on the status of the
service instance and its constituent elements, i.e., monitoring
information related to individual VNF instances and links connecting
them as well as derived monitoring information at the chain level
(e.g., end-to-end delay). At runtime, if one or more VNF instances
are no longer available or QoS degrades below a given threshold, the
service selection task can be rerun to perform service substitution.
There are different research directions that relate to the previous
point. For example, the use of Integer Linear Programming (ILP)
techniques can be explored to optimize the management of diverse
traffic flows. Deep-machine learning can also be applied to optimize
service chains using information parameters, such as some of the ones
mentioned above. Newer scheduling paradigms, like co-flows, can also
be used.
The SFC working group is working on an architecture for SFC [<a href="./rfc7665" title=""Service Function Chaining (SFC) Architecture"">RFC7665</a>]
that includes the necessary protocols or protocol extensions to
convey the SFC and SFP information to nodes that are involved in the
implementation of service functions and SFCs as well as mechanisms
for steering traffic through service functions.
In terms of actual work items, the SFC WG has not yet considered
working on the management and configuration of SFC components related
to the support of SFC. This part is of special interest for
<span class="grey">Bernardos, et al. Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
operators and would be required in order to actually put SFC
mechanisms into operation. Similarly, redundancy and reliability
mechanisms for SFC are currently not dealt with by any WG in the
IETF. While this was the main goal of the VNFpool BoF efforts, it
still remains unaddressed.
<span class="h3"><a class="selflink" id="section-4.7" href="#section-4.7">4.7</a>. Device Virtualization for End Users</span>
So far, most of the network softwarization efforts have focused on
virtualizing functions of network elements. While virtualization of
network elements started with the core, mobile-network architectures
are now heavily switching to also virtualize Radio Access Network
(RAN) functions. The next natural step is to get virtualization down
at the level of the end-user device (e.g., virtualizing a smartphone)
[<a href="#ref-virtualization_mobile_device">virtualization_mobile_device</a>]. The cloning of a device in the cloud
(central or local) bears attractive benefits to both the device and
network operations alike (e.g., power saving at the device by
offloading computational-heaving functions to the cloud, optimized
networking -- both device-to-device and device-to-infrastructure) for
service delivery through tighter integration of the device (via its
clone in the networking infrastructure). This is, for example, being
explored by the European H2020 ICIRRUS project
<<a href="https://www.icirrus-5gnet.eu">https://www.icirrus-5gnet.eu</a>>.
<span class="h3"><a class="selflink" id="section-4.8" href="#section-4.8">4.8</a>. Security and Privacy</span>
Similar to any other situations where resources are shared, security
and privacy are two important aspects that need to be taken into
account.
In the case of security, there are situations where multiple service
providers will need to coexist in a virtual or hybrid physical/
virtual environment. This requires attestation procedures amongst
different virtual/physical functions and resources as well as ongoing
external monitoring. Similarly, different network slices operating
on the same infrastructure can present security problems, for
instance, if one slice running critical applications (e.g., support
for a safety system) is affected by another slice running a less
critical application. In general, the minimum common denominator for
security measures on a shared system should be equal to or higher
than the one required by the most-critical application. Multiple and
continuous threat model analysis as well as a DevOps model are
required to maintain a certain level of security in an NFV system.
Simplistically, DevOps is a process that combines multiple functions
into single cohesive teams in order to quickly produce quality
software. Typically, it relies on also applying the Agile
development process, which focuses on (among many things) dividing
large features into multiple, smaller deliveries. One part of this
<span class="grey">Bernardos, et al. Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
is to immediately test the new smaller features in order to get
immediate feedback on errors so that if present, they can be
immediately fixed and redeployed.
On the other hand, privacy refers to concerns about the control of
personal data and the decision of what to reveal to whom. In this
case, the storage, transmission, collection, and potential
correlation of information in the NFV system, for purposes not
originally intended or not known by the user, should be avoided.
This is particularly challenging, as future intentions and threats
cannot be easily predicted and still can be applied on data collected
in the past. Therefore, well-known techniques, such as data
minimization using privacy features as default and allowing users to
opt in/out, should be used to prevent potential privacy issues.
Compared to traditional networks, NFV will result in networks that
are much more dynamic (in function distribution and topology) and
elastic (in size and boundaries). Thus, NFV will require network
operators to evolve their operational and administrative security
solutions to work in this new environment. For example, in NFV, the
network orchestrator will become a key node to provide security
policy orchestration across the different physical and virtual
components of the virtualized network. For highly confidential data,
for example, the network orchestrator should take into account if
certain physical HW of the network is considered to be more secure
(e.g., because it is located in secure premises) than other HW.
Traditional telecom networks typically run under a single
administrative domain controlled by (exactly) one operator. With
NFV, it is expected that in many cases, the telecom operator will now
become a tenant (running the VNFs), and the infrastructure (NFVI) may
be run by a different operator and/or cloud service provider (see
also <a href="#section-4.4">Section 4.4</a>). Thus, there will be multiple administrative
domains involved, making security policy coordination more complex.
For example, who will be in charge of provisioning and maintaining
security credentials such as public and private keys? Also, should
private keys be allowed to be replicated across the NFV for
redundancy reasons? Alternatively, it can be investigated how to
develop a mechanism that avoids such a security policy coordination,
thus making the system more robust.
On a positive note, NFV may better defend against denial-of-service
(DoS) attacks because of the distributed nature of the network (i.e.,
no single point of failure) and the ability to steer (undesirable)
traffic quickly [<a href="#ref-etsi_gs_nfv_sec_001">etsi_gs_nfv_sec_001</a>]. Also, NFVs that have physical
HW that is distributed across multiple data centers will also provide
<span class="grey">Bernardos, et al. Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
better fault isolation environments. Particularly, this holds true
if each data center is protected separately via firewalls,
Demilitarized Zones (DMZs), and other network-protection techniques.
SDN can also be used to help improve security by facilitating the
operation of existing protocols, such as Authentication,
Authorization and Accounting (AAA). The management of AAA
infrastructures, namely the management of AAA routing and the
establishment of security associations between AAA entities, can be
performed using SDN, as analyzed in [<a href="#ref-SDN-AAA" title=""Software-Defined Networking (SDN)-based AAA Infrastructures Management"">SDN-AAA</a>].
<span class="h3"><a class="selflink" id="section-4.9" href="#section-4.9">4.9</a>. Separation of Control Concerns</span>
NFV environments offer two possible levels of SDN control. One level
is the need for controlling the NFVI to provide connectivity end-to-
end among VNFs or among VNFs and Physical Network Functions (PNFs).
A second level is the control and configuration of the VNFs
themselves (in other words, the configuration of the network service
implemented by those VNFs), taking advantage of the programmability
brought by SDN. Both control concerns are separated in nature.
However, interaction between both could be expected in order to
optimize, scale, or influence each other.
Clear mechanisms for such interactions are needed in order to avoid
malfunctioning or interference concerns. These ideas are considered
in [<a href="#ref-etsi_gs_nfv_eve005">etsi_gs_nfv_eve005</a>] and [<a href="#ref-LAYERED-SDN">LAYERED-SDN</a>].
<span class="h3"><a class="selflink" id="section-4.10" href="#section-4.10">4.10</a>. Network Function Placement</span>
Network function placement is a problem in any kind of network
telecommunications infrastructure. Moreover, the increased degree of
freedom added by network virtualization makes this problem even more
important, and also harder to tackle. Deciding where to place VNFs
is a resource-allocation problem that needs to (or may) take into
consideration quite a few aspects: resiliency, (anti-)affinity,
security, privacy, energy efficiency, etc.
When several functions are chained (typical scenario), placement
algorithms become more complex and important (as described in
<a href="#section-4.6">Section 4.6</a>). While there has been research on the topic
([<a href="#ref-nfv_piecing">nfv_piecing</a>], [<a href="#ref-dynamic_placement">dynamic_placement</a>], and [<a href="#ref-vnf-p" title=""VNF-P: A model for efficient placement of virtualized network functions"">vnf-p</a>]), this still remains
an open challenge that requires more attention. The use of multi-
domains adds another component of complexity to this problem that has
to be considered.
<span class="grey">Bernardos, et al. Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h3"><a class="selflink" id="section-4.11" href="#section-4.11">4.11</a>. Testing</span>
The impacts of network virtualization on testing can be divided into
three groups:
1. Changes in methodology
2. New functionality
3. Opportunities
<span class="h4"><a class="selflink" id="section-4.11.1" href="#section-4.11.1">4.11.1</a>. Changes in Methodology</span>
The largest impact of NFV is the ability to isolate the System Under
Test (SUT). When testing PNFs, isolating the SUT means that all the
other devices that the SUT communicates with are replaced with
simulations (or controlled executions) in order to place the SUT
under test by itself. The SUT may be comprised of one or more
devices. The simulations use the appropriate traffic type and
protocols in order to execute test cases.
As shown in Figure 2, NFV provides a common architecture for all
functions to use. A VNF is executed using resources offered by the
NFVI, which have been allocated using the MANO function. It is not
possible to test a VNF by itself, without the entire supporting
environment present. This fundamentally changes how to consider the
SUT. In the case of a VNF (or multiple VNFs), the SUT is part of a
larger architecture that is necessary in order to run the SUTs.
Therefore, isolation of the SUT becomes controlling the environment
in a disciplined manner. The components of the environment necessary
to run the SUTs that are not part of the SUT itself become the test
environment. In the case of VNFs that are part of the SUT, the NFVI
and MANO become the test environment. The configurations and
policies that guide the test environment should remain constant
during the execution of the tests, and also from test to test.
Configurations such as CPU pinning, NUMA configuration, the SW
versions and configurations of the hypervisor, vSwitch and NICs
should remain constant. The only variables in the testing should be
those controlling the SUT itself. If any configuration in the test
environment is changed from test to test, the results become very
difficult, if not impossible, to compare since the test environment
behavior may change the results as a consequence of the configuration
change.
Testing the NFVI itself also presents new considerations. With a
PNF, the dedicated hardware supporting it is optimized for the
particular workload of the function. Routing hardware is specially
<span class="grey">Bernardos, et al. Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
built to support packet forwarding functions, while the hardware to
support a purely control-plane application (say, a DNS server, or a
Diameter function) will not have this specialized capability. In
NFV, the NFVI is required to support all types of potentially
different workload types.
Therefore, testing the NFVI requires careful consideration about what
types of metrics are sought. This, in turn, depends on the workload
type the expected VNF will be. Examples of different workload types
are data forwarding, control plane, encryption, and authentication.
All these types of expected workloads will determine the types of
metrics that should be sought. For example, if the workload is
control plane, then a metric such as jitter is not useful, but
dropped packets are critical. In a multi-tenant environment, the
NFVI could support various types of workloads. In this case, testing
with a variety of traffic types while measuring the corresponding
metrics simultaneously becomes necessary.
Test beds for any type of testing for an NFV-based system will be
largely similar to previously used test architectures. The methods
are impacted by virtualization, as described above, but the design of
test beds are similar as in the past. There are two main new
considerations:
o Since networking is based on software, which has lead to greater
automation in deployment, the test system should also be
deployable with the rest of the system in order to fully automate
the system. This is especially relevant in a DevOps environment
supported by a Continuous Integration and Continuous Deployment
(CI/CD) tool chain (see <a href="#section-4.11.3">Section 4.11.3</a> below).
o In any performance test bed, the test system should not share the
same resources as the SUT. While multi-tenancy is a reality in
virtualization, having the test system share resources with the
SUT will impact the measured results in a performance test bed.
The test system should be deployed on a separate platform in order
not to impact the resources available to the SUT.
<span class="h4"><a class="selflink" id="section-4.11.2" href="#section-4.11.2">4.11.2</a>. New Functionality</span>
NFV presents a collection of new functionality in order to support
the goal of software networking. Each component on the architecture
shown in Figure 2 has an associated set of functionality that allows
VNFs to run the following: onboarding, life-cycle management for VNFs
and Network Services (NS), resource allocation, hypervisor functions,
etc.
<span class="grey">Bernardos, et al. Informational [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
One of the new capabilities enabled by NFV is VNF Forwarding Graphs
(VNFFG). This refers to the graph that represents a network service
by chaining together VNFs into a forwarding path. In practice, the
forwarding path can be implemented in a variety of ways using
different networking capabilities: vSwitch, SDN, and SDN with a
northbound application. Additionally, the VNFFG might use tunneling
protocols like Virtual eXtensible Local Area Network (VXLAN). The
dynamic allocation and implementation of these networking paths will
have different performance characteristics depending on the methods
used. The path implementation mechanism becomes a variable in the
network testing of the NSs. The methodology used to test the various
mechanisms should largely remain the same; as usual, the test
environment should remain constant for each of the tests, focusing on
varying the path establishment method.
"Scaling" refers to the change in allocation of resources to a VNF or
NS. It happens dynamically at run-time, based on defined policies
and triggers. The triggers can be network, compute, or storage
based. Scaling can allocate more resources in times of need, or
reduce the amount of resources allocated when the demand is reduced.
The SUT in this case becomes much larger than the VNF itself: MANO
controls how scaling is done based on policies, and then allocates
the resources accordingly in the NFVI. Essentially, the testing of
scaling includes the entire NFV architecture components into the SUT.
<span class="h4"><a class="selflink" id="section-4.11.3" href="#section-4.11.3">4.11.3</a>. Opportunities</span>
Softwarization of networking functionality leads to softwarization of
the test as well. As PNFs are being transformed into VNFs, so are
the test tools. This leads to the fact that test tools are also
being controlled and executed in the same environment as the VNFs.
This presents an opportunity to include VNF-based test tools along
with the deployment of the VNFs supporting the services of the
service provider into the host data centers. Therefore, tests can be
automatically executed upon deployment in the target environment, for
each deployment, and each service. With PNFs, this was very
difficult to achieve.
This new concept helps to enable modern concepts like DevOps and
Continuous Integration and Continuous Deployment in the NFV
environment. The CI/CD pipeline supports this concept. It consists
of a series of tools, among which immediate testing is an integral
part, to deliver software from source to deployment. The ability to
deploy the test tools themselves into the production environment
stretches the CI/CD pipeline all the way to production deployment,
allowing a range of tests to be executed. The tests can be simple,
<span class="grey">Bernardos, et al. Informational [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
with a goal of verifying the correct deployment and networking
establishment, but can also be more complex, like testing VNF
functionality.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Technology Gaps and Potential IETF Efforts</span>
Table 1 correlates the open network virtualization research areas
identified in this document to potential IETF and IRTF groups that
could address some aspects of them. An example of a specific gap
that the group could potentially address is identified as a
parenthetical beside the group name.
+-------------------------+-----------------------------------------+
| Open Research Area | Potential IETF/IRTF Group |
+-------------------------+-----------------------------------------+
| 1) Guaranteeing QoS | IPPM WG (Measurements of NFVI) |
| | |
| 2) Performance | SFC WG, NFVRG (energy-driven |
| improvement | orchestration) |
| | |
| 3) Multiple Domains | NFVRG (multi-domain orchestration) |
| | |
| 4) Network Slicing | NVO3 WG, NETSLICES bar BoF (multi- |
| | tenancy support) |
| | |
| 5) Service Composition | SFC WG (SFC Mgmt and Config) |
| | |
| 6) End-user device | N/A |
| virtualization | |
| | |
| 7) Security | N/A |
| | |
| 8) Separation of | NFVRG (separation between transport |
| control concerns | control and services) |
| | |
| 9) Testing | NFVRG (testing of scaling) |
| | |
| 10) Function placement | NFVRG, SFC WG (VNF placement algorithms |
| | and protocols) |
+-------------------------+-----------------------------------------+
Table 1: Mapping of Open Research Areas to Potential IETF Groups
<span class="grey">Bernardos, et al. Informational [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. NFVRG Focus Areas</span>
Table 2 correlates the currently identified NFVRG topics of interest
/ focus areas to the open network virtualization research areas
enumerated in this document. This can help the NFVRG in identifying
and prioritizing research topics. The current list of NFVRG focus
points is the following:
o Re-architecting functions, including aspects such as new
architectural and design patterns (e.g., containerization,
statelessness, serverless, control/data plane separation), SDN
integration, and proposals on programmability.
o New management frameworks, considering aspects related to new OAM
mechanisms (e.g., configuration control, hybrid descriptors) and
lightweight MANO proposals.
o Techniques to guarantee low latency, resource isolation, and other
data-plane features, including hardware acceleration, functional
offloading to data-plane elements (including NICs), and related
approaches.
o Measurement and benchmarking, addressing both internal
measurements and external applications.
+-------------------------------------+-------------------------+
| NFVRG Focus Point | Open Research Area |
+-------------------------------------+-------------------------+
| 1) Re-architecting functions | - Performance improvem. |
| | - Network Slicing |
| | - Guaranteeing QoS |
| | - Security |
| | - End-user device virt. |
| | - Separation of control |
| | |
| 2) New management frameworks | - Multiple Domains |
| | - Service Composition |
| | - End-user device virt. |
| | |
| 3) Low latency, resource isolation, | - Performance improvem. |
| etc. | - Separation of control |
| | |
| 4) Measurement and benchmarking | - Guaranteeing QoS |
| | - Testing |
+-------------------------------------+-------------------------+
Table 2: Mapping of NFVRG Focus Points to Open Research Areas
<span class="grey">Bernardos, et al. Informational [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IANA Considerations</span>
This document has no IANA actions.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
This is an Informational RFC that details research challenges; it
does not introduce any security threat. Research challenges and gaps
related to security and privacy have been included in <a href="#section-4.8">Section 4.8</a>.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Informative References</span>
[<a id="ref-COMS-PS">COMS-PS</a>] Geng, L., Slawomir, S., Qiang, L., Matsushima, S., Galis,
A., and L. Contreras, "Problem Statement of Common
Operation and Management of Network Slicing", Work in
Progress, <a href="./draft-geng-coms-problem-statement-04">draft-geng-coms-problem-statement-04</a>, March
2018.
[<a id="ref-dynamic_chaining">dynamic_chaining</a>]
Martini, B. and F. Paganelli, "A Service-Oriented Approach
for Dynamic Chaining of Virtual Network Functions over
Multi-Provider Software-Defined Networks", Future
Internet Vol. 8, No. 2, DOI 10.3390/fi8020024, June 2016.
[<a id="ref-dynamic_placement">dynamic_placement</a>]
Clayman, S., Maini, E., Galis, A., Manzalini, A., and
N. Mazzocca, "The dynamic placement of virtual network
functions", 2014 IEEE Network Operations and Management
Symposium (NOMS) pp. 1-9, DOI 10.1109/NOMS.2014.6838412,
May 2014.
[<a id="ref-etsi_gs_nfv_003">etsi_gs_nfv_003</a>]
ETSI NFV ISG, "Network Functions Virtualisation (NFV);
Terminology for Main Concepts in NFV", ETSI GS NFV 003
V1.2.1 NFV 003, December 2014,
<<a href="http://www.etsi.org/deliver/etsi_gs/NFV/001_099/003/01.02.01_60/gs_NFV003v010201p.pdf">http://www.etsi.org/deliver/etsi_gs/</a>
<a href="http://www.etsi.org/deliver/etsi_gs/NFV/001_099/003/01.02.01_60/gs_NFV003v010201p.pdf">NFV/001_099/003/01.02.01_60/gs_NFV003v010201p.pdf</a>>.
[<a id="ref-etsi_gs_nfv_eve005">etsi_gs_nfv_eve005</a>]
ETSI NFV ISG, "Network Functions Virtualisation (NFV);
Ecosystem; Report on SDN Usage in NFV Architectural
Framework", ETSI GS NFV-EVE 005 V1.1.1 NFV-EVE 005,
December 2015,
<<a href="http://www.etsi.org/deliver/etsi_gs/NFV-EVE/001_099/005/01.01.01_60/gs_NFV-EVE005v010101p.pdf">http://www.etsi.org/deliver/etsi_gs/NFV-EVE/001_099/</a>
<a href="http://www.etsi.org/deliver/etsi_gs/NFV-EVE/001_099/005/01.01.01_60/gs_NFV-EVE005v010101p.pdf">005/01.01.01_60/gs_NFV-EVE005v010101p.pdf</a>>.
<span class="grey">Bernardos, et al. Informational [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
[<a id="ref-etsi_gs_nfv_per_001">etsi_gs_nfv_per_001</a>]
ETSI NFV ISG, "Network Functions Virtualisation (NFV); NFV
Performance & Portability Best Practises", ETSI GS NFV-PER
001 V1.1.2 NFV-PER 001, December 2014,
<<a href="https://www.etsi.org/deliver/etsi_gs/nfv-per/001_099/001/01.01.02_60/gs_nfv-per001v010102p.pdf">https://www.etsi.org/deliver/etsi_gs/nfv-per/</a>
<a href="https://www.etsi.org/deliver/etsi_gs/nfv-per/001_099/001/01.01.02_60/gs_nfv-per001v010102p.pdf">001_099/001/01.01.02_60/gs_nfv-per001v010102p.pdf</a>>.
[<a id="ref-etsi_gs_nfv_sec_001">etsi_gs_nfv_sec_001</a>]
ETSI NFV ISG, "Network Functions Virtualisation (NFV); NFV
Security; Problem Statement", ETSI GS NFV-SEC 001 V1.1.1
NFV-SEC 001, October 2014, <<a href="http://www.etsi.org/deliver/etsi_gs/NFV-SEC/001_099/001/01.01.01_60/gs_NFV-SEC001v010101p.pdf">http://www.etsi.org/deliver/</a>
<a href="http://www.etsi.org/deliver/etsi_gs/NFV-SEC/001_099/001/01.01.01_60/gs_NFV-SEC001v010101p.pdf">etsi_gs/NFV-SEC/001_099/001/01.01.01_60/</a>
<a href="http://www.etsi.org/deliver/etsi_gs/NFV-SEC/001_099/001/01.01.01_60/gs_NFV-SEC001v010101p.pdf">gs_NFV-SEC001v010101p.pdf</a>>.
[<a id="ref-etsi_nfv_whitepaper_3">etsi_nfv_whitepaper_3</a>]
ETSI, "Network Functions Virtualisation (NFV) - White
Paper #3: Network Operator Perspectives on Industry
Progress", Issue 1, SDN & OpenFlow World
Congress Dusseldorf, Germany, October 2014,
<<a href="http://portal.etsi.org/NFV/NFV_White_Paper3.pdf">http://portal.etsi.org/NFV/NFV_White_Paper3.pdf</a>>.
[<a id="ref-google_sdn_wan">google_sdn_wan</a>]
Jain, S., et al., "B4: experience with a globally-deployed
Software Defined WAN", SIGCOMM '13: Proceedings of the ACM
SIGCOMM 2013 conference on SIGCOMM, pp. 3-14, Hong
Kong China, DOI 10.1145/2486001.2486019, August 2013.
[<a id="ref-intel_10_differences_nfv_cloud">intel_10_differences_nfv_cloud</a>]
Torre, P., "Discover the Top 10 Differences Between NFV
and Cloud Environments", November 2015,
<<a href="https://software.intel.com/en-us/videos/discover-the-top-10-differences-between-nfv-and-cloud-environments">https://software.intel.com/en-us/videos/discover-the-top-</a>
<a href="https://software.intel.com/en-us/videos/discover-the-top-10-differences-between-nfv-and-cloud-environments">10-differences-between-nfv-and-cloud-environments</a>>.
[<a id="ref-itu-t-y.3300">itu-t-y.3300</a>]
ITU-T, "Y.3300: Framework of software-defined networking",
ITU-T Recommendation Y.3300, June 2014,
<<a href="http://www.itu.int/rec/T-REC-Y.3300-201406-I/en">http://www.itu.int/rec/T-REC-Y.3300-201406-I/en</a>>.
[<a id="ref-itu-t-y.3301">itu-t-y.3301</a>]
ITU-T, "Y.3301: Functional requirements of software-
defined networking", ITU-T Recommendation Y.3301,
September 2016,
<<a href="http://www.itu.int/rec/T-REC-Y.3301-201609-I/en">http://www.itu.int/rec/T-REC-Y.3301-201609-I/en</a>>.
<span class="grey">Bernardos, et al. Informational [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
[<a id="ref-itu-t-y.3302">itu-t-y.3302</a>]
ITU-T, "Y.3302: Functional architecture of software-
defined networking", ITU-T Recommendation Y.3302, January
2017, <<a href="http://www.itu.int/rec/T-REC-Y.3302-201701-I/en">http://www.itu.int/rec/T-REC-Y.3302-201701-I/en</a>>.
[<a id="ref-LAYERED-SDN">LAYERED-SDN</a>]
Contreras, L., Bernardos, C., Lopez, D., Boucadair, M.,
and P. Iovanna, "Cooperating Layered Architecture for
Software Defined Networking (CLAS)", Work in Progress,
<a href="./draft-contreras-layered-sdn-03">draft-contreras-layered-sdn-03</a>, November 2018.
[<a id="ref-LIGHT-NFV">LIGHT-NFV</a>]
Sriram, N., Krishnan, R., Ghanwani, A., Krishnaswamy, D.,
Willis, P., Chaudhary, A., and F. Huici, "An Analysis of
Lightweight Virtualization Technologies for NFV", Work in
Progress, <a href="./draft-natarajan-nfvrg-containers-for-nfv-03">draft-natarajan-nfvrg-containers-for-nfv-03</a>,
July 2016.
[<a id="ref-multi-domain_5GEx">multi-domain_5GEx</a>]
Bernardos, C., Gero, B., Di Girolamo, M., Kern, A.,
Martini, B., and I. Vaishnavi, "5GEx: Realizing a Europe-
wide Multi-domain framework for software-defined
infrastructures", Transactions on Emerging
Telecommunications Technologies Vol. 27, No. 9,
pp. 1271-1280, DOI 10.1002/ett.3085, July 2016.
[<a id="ref-MULTI-NMRG">MULTI-NMRG</a>]
Bernardos, C., Contreras, L., Vaishnavi, I., Szabo, R.,
Li, X., Paolucci, F., Sgambelluri, A., Martini, B.,
Valcarenghi, L., Landi, G., Andrushko, D., and A. Mourad,
"Multi-domain Network Virtualization", Work in Progress,
<a href="./draft-bernardos-nmrg-multidomain-00">draft-bernardos-nmrg-multidomain-00</a>, March 2019.
[<a id="ref-NETSLICES">NETSLICES</a>]
Galis, A., Dong, J., Makhijani, K., Bryant, S., Boucadair,
M., and P. Martinez-Julia, "Network Slicing - Introductory
Document and Revised Problem Statement", Work in
Progress, <a href="./draft-gdmb-netslices-intro-and-ps-02">draft-gdmb-netslices-intro-and-ps-02</a>, February
2017.
[<a id="ref-NFV-COTS">NFV-COTS</a>] Mo, L. and B. Khasnabish, "NFV Reliability using COTS
Hardware", Work in Progress, <a href="./draft-mlk-nfvrg-nfv-reliability-using-cots-01">draft-mlk-nfvrg-nfv-</a>
<a href="./draft-mlk-nfvrg-nfv-reliability-using-cots-01">reliability-using-cots-01</a>, October 2015.
<span class="grey">Bernardos, et al. Informational [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
[<a id="ref-nfv_piecing">nfv_piecing</a>]
Luizelli, M., Bays, L., Buriol, L., Barcellos, M., and
L. Gaspary, "Piecing together the NFV provisioning puzzle:
Efficient placement and chaining of virtual network
functions", 2015 IFIP/IEEE International Symposium on
Integrated Network Management (IM) pp. 98-106,
DOI 10.1109/INM.2015.7140281, May 2015.
[<a id="ref-nfv_sota_research_challenges">nfv_sota_research_challenges</a>]
Mijumbi, R., Serrat, J., Gorricho, J-L., Bouten, N.,
De Turck, F., and R. Boutaba, "Network Function
Virtualization: State-of-the-art and Research Challenges",
IEEE Communications Surveys & Tutorials Volume: 18,
Issue: 1, pp. 236-262, DOI 10.1109/COMST.2015.2477041,
September 2015.
[<a id="ref-NFVRG-TOPO">NFVRG-TOPO</a>]
Bagnulo, M. and D. Dolson, "NFVI PoP Network Topology:
Problem Statement", Work in Progress, <a href="./draft-bagnulo-nfvrg-topology-01">draft-bagnulo-nfvrg-</a>
<a href="./draft-bagnulo-nfvrg-topology-01">topology-01</a>, March 2016.
[<a id="ref-ngmn_5G_whitepaper">ngmn_5G_whitepaper</a>]
NGMN Alliance, "NGMN 5G White Paper", Version 1.0,
February 2015,
<<a href="https://www.ngmn.org/fileadmin/ngmn/content/images/news/ngmn_news/NGMN_5G_White_Paper_V1_0.pdf">https://www.ngmn.org/fileadmin/ngmn/content/</a>
<a href="https://www.ngmn.org/fileadmin/ngmn/content/images/news/ngmn_news/NGMN_5G_White_Paper_V1_0.pdf">images/news/ngmn_news/NGMN_5G_White_Paper_V1_0.pdf</a>>.
[<a id="ref-omniran">omniran</a>] IEEE, "Recommended Practice for Network Reference Model
and Functional Description of IEEE 802 Access Network",
P802.1CF IEEE Draft, December 2017.
[<a id="ref-onf_tr_521">onf_tr_521</a>]
Open Networking Foundation, "SDN Architecture", ONF
TR-521 TR-521, Issue 1.1, February 2016,
<<a href="https://www.opennetworking.org/images/stories/downloads/sdn-resources/technical-reports/TR-521_SDN_Architecture_issue_1.1.pdf">https://www.opennetworking.org/images/stories/downloads/</a>
<a href="https://www.opennetworking.org/images/stories/downloads/sdn-resources/technical-reports/TR-521_SDN_Architecture_issue_1.1.pdf">sdn-resources/technical-reports/</a>
<a href="https://www.opennetworking.org/images/stories/downloads/sdn-resources/technical-reports/TR-521_SDN_Architecture_issue_1.1.pdf">TR-521_SDN_Architecture_issue_1.1.pdf</a>>.
[<a id="ref-OpenFlow">OpenFlow</a>] Open Networking Foundation, "OpenFlow Switch
Specification", ONF TS-025, Version 1.5.1 (Protocol
version 0x06), March 2015.
[<a id="ref-openmano_dataplane">openmano_dataplane</a>]
Lopez, D., "OpenMANO: The Dataplane Ready Open Source NFV
MANO Stack", March 2015, <<a href="https://www.ietf.org/proceedings/92/slides/slides-92-nfvrg-7.pdf">https://www.ietf.org/</a>
<a href="https://www.ietf.org/proceedings/92/slides/slides-92-nfvrg-7.pdf">proceedings/92/slides/slides-92-nfvrg-7.pdf</a>>.
<span class="grey">Bernardos, et al. Informational [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
[<a id="ref-RFC5810">RFC5810</a>] Doria, A., Ed., Hadi Salim, J., Ed., Haas, R., Ed.,
Khosravi, H., Ed., Wang, W., Ed., Dong, L., Gopal, R., and
J. Halpern, "Forwarding and Control Element Separation
(ForCES) Protocol Specification", <a href="./rfc5810">RFC 5810</a>,
DOI 10.17487/RFC5810, March 2010,
<<a href="https://www.rfc-editor.org/info/rfc5810">https://www.rfc-editor.org/info/rfc5810</a>>.
[<a id="ref-RFC6241">RFC6241</a>] Enns, R., Ed., Bjorklund, M., Ed., Schoenwaelder, J., Ed.,
and A. Bierman, Ed., "Network Configuration Protocol
(NETCONF)", <a href="./rfc6241">RFC 6241</a>, DOI 10.17487/RFC6241, June 2011,
<<a href="https://www.rfc-editor.org/info/rfc6241">https://www.rfc-editor.org/info/rfc6241</a>>.
[<a id="ref-RFC7252">RFC7252</a>] Shelby, Z., Hartke, K., and C. Bormann, "The Constrained
Application Protocol (CoAP)", <a href="./rfc7252">RFC 7252</a>,
DOI 10.17487/RFC7252, June 2014,
<<a href="https://www.rfc-editor.org/info/rfc7252">https://www.rfc-editor.org/info/rfc7252</a>>.
[<a id="ref-RFC7426">RFC7426</a>] Haleplidis, E., Ed., Pentikousis, K., Ed., Denazis, S.,
Hadi Salim, J., Meyer, D., and O. Koufopavlou, "Software-
Defined Networking (SDN): Layers and Architecture
Terminology", <a href="./rfc7426">RFC 7426</a>, DOI 10.17487/RFC7426, January
2015, <<a href="https://www.rfc-editor.org/info/rfc7426">https://www.rfc-editor.org/info/rfc7426</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-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-RFC8030">RFC8030</a>] Thomson, M., Damaggio, E., and B. Raymor, Ed., "Generic
Event Delivery Using HTTP Push", <a href="./rfc8030">RFC 8030</a>,
DOI 10.17487/RFC8030, December 2016,
<<a href="https://www.rfc-editor.org/info/rfc8030">https://www.rfc-editor.org/info/rfc8030</a>>.
[<a id="ref-RFC8040">RFC8040</a>] Bierman, A., Bjorklund, M., and K. Watsen, "RESTCONF
Protocol", <a href="./rfc8040">RFC 8040</a>, DOI 10.17487/RFC8040, January 2017,
<<a href="https://www.rfc-editor.org/info/rfc8040">https://www.rfc-editor.org/info/rfc8040</a>>.
[<a id="ref-RFC8172">RFC8172</a>] Morton, A., "Considerations for Benchmarking Virtual
Network Functions and Their Infrastructure", <a href="./rfc8172">RFC 8172</a>,
DOI 10.17487/RFC8172, July 2017,
<<a href="https://www.rfc-editor.org/info/rfc8172">https://www.rfc-editor.org/info/rfc8172</a>>.
<span class="grey">Bernardos, et al. Informational [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
[<a id="ref-SDN-AAA">SDN-AAA</a>] Lopez, R. and G. Lopez-Millan, "Software-Defined
Networking (SDN)-based AAA Infrastructures Management",
Work in Progress, <a href="./draft-marin-sdnrg-sdn-aaa-mng-00">draft-marin-sdnrg-sdn-aaa-mng-00</a>,
November 2015.
[<a id="ref-sfc_challenges">sfc_challenges</a>]
Medhat, A., Taleb, T., Elmangoush, A., Carella, G.,
Covaci, S., and T. Magedanz, "Service Function Chaining in
Next Generation Networks: State of the Art and Research
Challenges", IEEE Communications Magazine vol. 55, no. 2,
pp. 216-223, DOI 10.1109/MCOM.2016.1600219RP, February
2017.
[<a id="ref-SLICE-3GPP">SLICE-3GPP</a>]
Foy, X. and A. Rahman, "Network Slicing - 3GPP Use Case",
Work in Prgoress, <a href="./draft-defoy-netslices-3gpp-network-slicing-02">draft-defoy-netslices-3gpp-network-</a>
<a href="./draft-defoy-netslices-3gpp-network-slicing-02">slicing-02</a>, October 2017.
[<a id="ref-virtualization_mobile_device">virtualization_mobile_device</a>]
Sproule, W. and A. Fernando, "Virtualization of Mobile
Device User Experience", US Patent 9.542.062 B2, filed
October 2013 and issued December 2014, Current
Assignee: Microsoft Technology Licensing LLC.
[<a id="ref-vnf-p">vnf-p</a>] Moens, H. and , "VNF-P: A model for efficient placement of
virtualized network functions", 10th International
Conference on Network and Service Management (CNSM) and
Workshop pp. 418-423, DOI 10.1109/CNSM.2014.7014205,
November 2014.
[<a id="ref-VNF-VBAAS">VNF-VBAAS</a>]
Rosa, R., Rothenberg, C., and R. Szabo, "VNF Benchmark-as-
a-Service", Work in Progress, <a href="./draft-rorosz-nfvrg-vbaas-00">draft-rorosz-nfvrg-vbaas-00</a>,
October 2015.
[<a id="ref-vnf_benchmarking">vnf_benchmarking</a>]
Rosa, R., Rothenberg, C., and R. Szabo, "A VNF Testing
Framework Design, Implementation and Partial Results",
NFVRG IETF 97, November 2016,
<<a href="https://www.ietf.org/proceedings/97/slides/slides-97-nfvrg-06-vnf-benchmarking-00.pdf">https://www.ietf.org/proceedings/97/slides/</a>
<a href="https://www.ietf.org/proceedings/97/slides/slides-97-nfvrg-06-vnf-benchmarking-00.pdf">slides-97-nfvrg-06-vnf-benchmarking-00.pdf</a>>.
<span class="grey">Bernardos, et al. Informational [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
Acknowledgments
The authors want to thank Dirk von Hugo, Rafa Marin, Diego Lopez,
Ramki Krishnan, Kostas Pentikousis, Rana Pratap Sircar, Alfred
Morton, Nicolas Kuhn, Saumya Dikshit, Fabio Giust, Evangelos
Haleplidis, Angeles Vazquez-Castro, Barbara Martini, Jose Saldana,
and Gino Carrozzo for their very useful reviews and comments to the
document. Special thanks to Pedro Martinez-Julia, who provided text
for the network slicing section.
The authors want to also thank Dave Oran and Michael Welzl for their
very detailed IRSG reviews.
The work of Carlos J. Bernardos and Luis M. Contreras is partially
supported by the H2020 5GEx (Grant Agreement no. 671636) and
5G-TRANSFORMER (Grant Agreement no. 761536) projects.
Authors' Addresses
Carlos J. Bernardos
Universidad Carlos III de Madrid
Av. Universidad, 30
Leganes, Madrid 28911
Spain
Phone: +34 91624 6236
Email: cjbc@it.uc3m.es
URI: <a href="http://www.it.uc3m.es/cjbc/">http://www.it.uc3m.es/cjbc/</a>
Akbar Rahman
InterDigital Communications, LLC
1000 Sherbrooke Street West, 10th floor
Montreal, Quebec H3A 3G4
Canada
Email: Akbar.Rahman@InterDigital.com
URI: <a href="http://www.InterDigital.com/">http://www.InterDigital.com/</a>
Juan Carlos Zuniga
SIGFOX
425 rue Jean Rostand
Labege 31670
France
Email: j.c.zuniga@ieee.org
URI: <a href="http://www.sigfox.com/">http://www.sigfox.com/</a>
<span class="grey">Bernardos, et al. Informational [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc8568">RFC 8568</a> Network Virtualization Research Challenges April 2019</span>
Luis M. Contreras
Telefonica I+D
Ronda de la Comunicacion, S/N
Madrid 28050
Spain
Email: luismiguel.contrerasmurillo@telefonica.com
Pedro Aranda
Universidad Carlos III de Madrid
Av. Universidad, 30
Leganes, Madrid 28911
Spain
Email: pedroandres.aranda@uc3m.es
Pierre Lynch
Keysight Technologies
800 Perimeter Park Dr, Suite A
Morrisville, NC 27560
United States of America
Email: pierre.lynch@keysight.com
URI: <a href="http://www.keysight.com">http://www.keysight.com</a>
Bernardos, et al. Informational [Page 42]
</pre>
|