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
|
<pre>Internet Engineering Task Force (IETF) B. Niven-Jenkins
Request for Comments: 6707 Velocix (Alcatel-Lucent)
Category: Informational F. Le Faucheur
ISSN: 2070-1721 Cisco
N. Bitar
Verizon
September 2012
<span class="h1">Content Distribution Network Interconnection (CDNI) Problem Statement</span>
Abstract
Content Delivery Networks (CDNs) provide numerous benefits for
cacheable content: reduced delivery cost, improved quality of
experience for End Users, and increased robustness of delivery. For
these reasons, they are frequently used for large-scale content
delivery. As a result, existing CDN Providers are scaling up their
infrastructure, and many Network Service Providers (NSPs) are
deploying their own CDNs. It is generally desirable that a given
content item can be delivered to an End User regardless of that End
User's location or attachment network. This is the motivation for
interconnecting standalone CDNs so they can interoperate as an open
content delivery infrastructure for the end-to-end delivery of
content from Content Service Providers (CSPs) to End Users. However,
no standards or open specifications currently exist to facilitate
such CDN Interconnection.
The goal of this document is to outline the problem area of CDN
Interconnection for the IETF CDNI (CDN Interconnection) working
group.
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 Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Not all documents
approved by the IESG are a candidate for any level of Internet
Standard; see <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc6707">http://www.rfc-editor.org/info/rfc6707</a>.
<span class="grey">Niven-Jenkins, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Copyright Notice
Copyright (c) 2012 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="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Terminology ................................................<a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. CDN Background .............................................<a href="#page-9">9</a>
<a href="#section-2">2</a>. CDN Interconnection Use Cases ...................................<a href="#page-9">9</a>
<a href="#section-3">3</a>. CDN Interconnection Model and Problem Area for IETF ............<a href="#page-11">11</a>
<a href="#section-4">4</a>. Scoping the CDNI Problem .......................................<a href="#page-15">15</a>
<a href="#section-4.1">4.1</a>. CDNI Control Interface ....................................<a href="#page-16">16</a>
<a href="#section-4.2">4.2</a>. CDNI Request Routing Interface ............................<a href="#page-16">16</a>
<a href="#section-4.3">4.3</a>. CDNI Metadata Interface ...................................<a href="#page-17">17</a>
<a href="#section-4.4">4.4</a>. CDNI Logging Interface ....................................<a href="#page-17">17</a>
<a href="#section-5">5</a>. Security Considerations ........................................<a href="#page-17">17</a>
<a href="#section-5.1">5.1</a>. Security of the CDNI Control Interface ....................<a href="#page-18">18</a>
<a href="#section-5.2">5.2</a>. Security of the CDNI Request Routing Interface ............<a href="#page-18">18</a>
<a href="#section-5.3">5.3</a>. Security of the CDNI Metadata Interface ...................<a href="#page-19">19</a>
<a href="#section-5.4">5.4</a>. Security of the CDNI Logging Interface ....................<a href="#page-19">19</a>
<a href="#section-6">6</a>. Acknowledgements ...............................................<a href="#page-19">19</a>
<a href="#section-7">7</a>. Informative References .........................................<a href="#page-20">20</a>
<a href="#appendix-A">Appendix A</a>. Design Considerations for Realizing the CDNI
Interfaces ............................................<a href="#page-22">22</a>
<a href="#appendix-A.1">A.1</a>. CDNI Control Interface .....................................<a href="#page-22">22</a>
<a href="#appendix-A.2">A.2</a>. CDNI Request Routing Interface .............................<a href="#page-23">23</a>
<a href="#appendix-A.3">A.3</a>. CDNI Metadata Interface ....................................<a href="#page-25">25</a>
<a href="#appendix-A.4">A.4</a>. CDNI Logging Interface .....................................<a href="#page-26">26</a>
<a href="#appendix-B">Appendix B</a>. Additional Material ...................................<a href="#page-27">27</a>
<a href="#appendix-B.1">B.1</a>. Non-Goals for IETF .........................................<a href="#page-27">27</a>
B.2. Relationship to Relevant IETF Working Groups and IRTF
Research Groups ............................................<a href="#page-29">29</a>
<a href="#appendix-B.2.1">B.2.1</a>. ALTO WG ................................................<a href="#page-29">29</a>
<a href="#appendix-B.2.2">B.2.2</a>. DECADE WG ..............................................<a href="#page-29">29</a>
<a href="#appendix-B.2.3">B.2.3</a>. PPSP WG ................................................<a href="#page-31">31</a>
<a href="#appendix-B.2.4">B.2.4</a>. IRTF P2P Research Group ................................<a href="#page-31">31</a>
<span class="grey">Niven-Jenkins, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The volume of video and multimedia content delivered over the
Internet is rapidly increasing and expected to continue doing so in
the future. In the face of this growth, Content Delivery Networks
(CDNs) provide numerous benefits for cacheable content: reduced
delivery cost, improved quality of experience for End Users (EUs),
and increased robustness of delivery. For these reasons, CDNs are
frequently used for large-scale content delivery. As a result,
existing CDN Providers are scaling up their infrastructure, and many
Network Service Providers (NSPs) are deploying their own CDNs.
It is generally desirable that a given content item can be delivered
to an EU regardless of that EU's location or the network they are
attached to. However, a given CDN in charge of delivering a given
content may not have a footprint that expands close enough to the
EU's current location or attachment network, or may not have the
necessary resources, to realize the user experience and cost benefit
that a more distributed CDN infrastructure would allow. This is the
motivation for interconnecting standalone CDNs so that their
collective CDN footprint and resources can be leveraged for the
end-to-end delivery of content from Content Service Providers (CSPs)
to EUs. As an example, a CSP could contract with an "authoritative"
CDN Provider for the delivery of content, and that Authoritative CDN
Provider could contract with one or more downstream CDN Providers to
distribute and deliver some or all of the content on behalf of the
Authoritative CDN Provider.
A typical end-to-end content delivery scenario would then involve the
following business arrangements:
o A business arrangement between the EU and his CSP, authorizing
access by the EU to content items controlled by the CSP.
o A business arrangement between the CSP and an "authoritative" CDN
Provider where the CSP mandates that the CDN Provider perform the
content delivery on behalf of the CSP.
o A business arrangement between the Authoritative CDN Provider and
another (or other) CDN(s) where the Authoritative CDN may delegate
the actual serving of some of the content delivery requests to the
other CDN(s). A particular case is where this other CDN Provider
happens to also be the Network Service Provider providing network
access to the EU, in which case there is also a separate and
independent business relationship between the EU and the NSP for
the corresponding network access.
<span class="grey">Niven-Jenkins, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
The formation and details of any business relationships between a CSP
and a CDN Provider as well as between one CDN Provider and another
CDN Provider are out of scope of this document. However, this
document concerns itself with the fact that no standards or open
specifications currently exist to facilitate such CDN Interconnection
from a technical perspective.
One possible flow for performing an end-to-end content delivery
across a CDN Interconnection is described below:
o The initial content request from an EU's User Agent is first
received by the authoritative (upstream) CDN, which is the CDN
with a business arrangement with the CSP.
o The authoritative (upstream) CDN may serve the request itself, or
it may elect to use CDN Interconnection to redirect the request to
a Downstream CDN that is in a better position to do so (e.g., a
Downstream CDN that is "closer" to the EU).
o The EU's User Agent will "follow" the redirect returned by the
Authoritative CDN and request the content from the Downstream CDN.
If required, the Downstream CDN will acquire the requested content
from the authoritative (upstream) CDN, and if necessary the
Authoritative CDN will acquire the requested content from the
Content Service Provider.
The goal of this document is to outline the problem area of CDN
Interconnection. <a href="#section-2">Section 2</a> discusses the use cases for CDN
Interconnection. <a href="#section-3">Section 3</a> presents the CDNI model and problem area
being considered by the IETF. <a href="#section-4">Section 4</a> describes each CDNI
interface individually and highlights example candidate protocols
that could be considered for reuse or leveraging to implement the
CDNI interfaces. <a href="#appendix-B.2">Appendix B.2</a> describes the relationships between
the CDNI problem space and other relevant IETF working groups and
IRTF research groups.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Terminology</span>
This document uses the following terms:
Authoritative CDN: A CDN that has a direct relationship with a CSP
for the distribution and delivery of that CSP's content by the
Authoritative CDN or by Downstream CDNs of the Authoritative CDN.
CDN Interconnection (CDNI): A relationship between a pair of CDNs
that enables one CDN to provide content delivery services on behalf
of another CDN. A CDN Interconnection may be wholly or partially
realized through a set of interfaces over which a pair of CDNs
<span class="grey">Niven-Jenkins, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
communicate with each other in order to achieve the delivery of
content to User Agents by Surrogates in one CDN (the Downstream CDN)
on behalf of another CDN (the Upstream CDN).
CDN Provider: The service provider who operates a CDN and offers a
service of content delivery, typically used by a Content Service
Provider or another CDN Provider. Note that a given entity may
operate in more than one role. For example, a company may
simultaneously operate as a Content Service Provider, a Network
Service Provider, and a CDN Provider.
CDNI Metadata: The subset of Content Distribution Metadata that
has an inter-CDN scope. For example, CDNI Metadata may include
geo-blocking information (i.e., information defining geographical
areas where the content is to be made available or blocked),
availability windows (i.e., information defining time windows during
which the content is to be made available or blocked) and access
control mechanisms to be enforced (e.g., URI signature validation).
CDNI Metadata may also include information about desired distribution
policy (e.g., pre-positioned vs dynamic acquisition) and about where/
how a CDN can acquire the content.
Content: Any form of digital data. One important form of Content
with additional constraints on distribution and delivery is
continuous media (i.e., where there is a timing relationship between
source and sink).
Content Distribution Metadata: The subset of Content Metadata that is
relevant to the distribution of the content. This is the metadata
required by a CDN in order to enable and control content distribution
and delivery by the CDN. In a CDN Interconnection environment, some
of the Content Distribution Metadata may have an intra-CDN scope (and
therefore need not be communicated between CDNs), while some of the
Content Distribution Metadata may have an inter-CDN scope (and
therefore needs to be communicated between CDNs).
Content Distribution Network (CDN) / Content Delivery Network (CDN):
Network infrastructure in which the network elements cooperate at
Layers 4 through 7 for more effective delivery of Content to User
Agents. Typically, a CDN consists of a Request Routing system, a
Distribution system (that includes a set of Surrogates), a Logging
system, and a CDN Control system.
<span class="grey">Niven-Jenkins, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Content Metadata: This is metadata about Content. Content Metadata
comprises:
1. Metadata that is relevant to the distribution of the content (and
therefore relevant to a CDN involved in the delivery of that
content). We refer to this type of metadata as "Content
Distribution Metadata". See also the definition of Content
Distribution Metadata.
2. Metadata that is associated with the actual Content or content
representation, and not directly relevant to the distribution of
that Content. For example, such metadata may include information
pertaining to the Content's genre, cast, rating, etc. as well as
information pertaining to the Content representation's
resolution, aspect ratio, etc.
Content Service: The service offered by a Content Service Provider.
The Content Service encompasses the complete service, which may be
wider than just providing access to items of Content; e.g., the
Content Service also includes any middleware, key distribution,
program guide, etc. that may not require any direct interaction with
the CDN, or CDNs, involved in the distribution and delivery of the
content.
Content Service Provider (CSP): Provides a Content Service to End
Users (which they access via a User Agent). A CSP may own the
Content made available as part of the Content Service, or may license
content rights from another party.
Control system: The function within a CDN responsible for
bootstrapping and controlling the other components of the CDN as well
as for handling interactions with external systems (e.g., handling
delivery service creation/update/removal requests, or specific
service provisioning requests).
Delivery: The function within CDN Surrogates responsible for
delivering a piece of content to the User Agent. For example,
delivery may be based on HTTP progressive download or HTTP adaptive
streaming.
Distribution system: The function within a CDN responsible for
distributing Content Distribution Metadata as well as the Content
itself inside the CDN (e.g., down to the Surrogates).
Downstream CDN: For a given End User request, the CDN (within a pair
of directly interconnected CDNs) to which the request is redirected
by the other CDN (the Upstream CDN). Note that in the case of
successive redirections (e.g., CDN1-->CDN2-->CDN3), a given CDN
<span class="grey">Niven-Jenkins, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
(e.g., CDN2) may act as the Downstream CDN for a redirection (e.g.,
CDN1-->CDN2) and as the Upstream CDN for the subsequent redirection
of the same request (e.g., CDN2-->CDN3).
Dynamic CDNI Metadata acquisition: In the context of CDN
Interconnection, dynamic CDNI Metadata acquisition means that a
Downstream CDN acquires CDNI Metadata for content from the Upstream
CDN at some point in time after a request for that content is
delegated to the Downstream CDN by an Upstream CDN (and that specific
CDNI Metadata is not yet available in the Downstream CDN). See also
the definitions for Downstream CDN and Upstream CDN.
Dynamic content acquisition: Dynamic content acquisition is where a
CDN acquires content from the content source in response to an End
User requesting that content from the CDN. In the context of CDN
Interconnection, dynamic acquisition means that a Downstream CDN
acquires the content from content sources (including Upstream CDNs)
at some point in time after a request for that content is delegated
to the Downstream CDN by an Upstream CDN (and that specific content
is not yet available in the Downstream CDN).
End User (EU): The 'real' user of the system, typically a human but
maybe some combination of hardware and/or software emulating a human
(e.g., for automated quality monitoring etc.).
Logging system: The function within a CDN responsible for collecting
the measurement and recording of distribution and delivery
activities. The information recorded by the Logging system may be
used for various purposes, including charging (e.g., of the CSP),
analytics, and monitoring.
Metadata: Metadata in general is data about data.
Network Service Provider (NSP): Provides network-based connectivity/
services to End Users.
Over-the-top (OTT): A service, e.g., content delivery using a CDN,
operated by a different operator than the NSP to which the users of
that service are attached.
Pre-positioned CDNI Metadata acquisition: In the context of CDN
Interconnection, CDNI Metadata pre-positioning is where the
Downstream CDN acquires CDNI Metadata for content prior to, or
independently of, any End User requesting that content from the
Downstream CDN.
<span class="grey">Niven-Jenkins, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Pre-positioned content acquisition: Content pre-positioning is where
a CDN acquires content from the content source prior to, or
independently of, any End User requesting that content from the CDN.
In the context of CDN Interconnection, the Upstream CDN instructs the
Downstream CDN to acquire the content from content sources (including
Upstream CDNs) in advance of, or independently of, any End User
requesting it.
Quality of Experience (QoE): As defined in <a href="./rfc6390#section-2.4">Section 2.4 of [RFC6390]</a>.
Request Routing system: The function within a CDN responsible for
receiving a Content Request from a User Agent, obtaining and
maintaining necessary information about a set of candidate Surrogates
or candidate CDNs, and for selecting and redirecting the user to the
appropriate Surrogate or CDN. To enable CDN Interconnection, the
Request Routing system must also be capable of handling User Agent
Content Requests passed to it by another CDN.
Surrogate: A device/function (often called a cache) that interacts
with other elements of the CDN for the control and distribution of
Content within the CDN and interacts with User Agents for the
delivery of the Content. Typically, Surrogates will cache requested
content so that they can directly deliver the same content in
response to requests from multiple User Agents (and their End Users),
avoiding the need for the content to transit multiple times through
the network core (i.e., from the content origin to the Surrogate).
Upstream CDN: For a given End User request, the CDN (within a pair of
directly interconnected CDNs) that redirects the request to the
other CDN.
User Agent (UA): Software (or a combination of hardware and software)
through which the End User interacts with a Content Service. The
User Agent will communicate with a Content Service for the selection
of content and one or more CDNs for the delivery of the Content.
Such communication is not restricted to HTTP and may be via a variety
of protocols. Examples of User Agents (non-exhaustive) are browsers,
Set Top Boxes (STBs), dedicated content applications (e.g., media
players), etc.
<span class="grey">Niven-Jenkins, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. CDN Background</span>
Readers are assumed to be familiar with the architecture, features,
and operation of CDNs. For readers less familiar with the operation
of CDNs, the following resources may be useful:
o <a href="./rfc3040">RFC 3040</a> [<a href="./rfc3040" title=""Internet Web Replication and Caching Taxonomy"">RFC3040</a>] describes many of the component technologies
that are used in the construction of a CDN.
o Taxonomy [<a href="#ref-TAXONOMY" title=""A Taxonomy and Survey of Content Delivery Networks"">TAXONOMY</a>] compares the architecture of a number of CDNs.
o <a href="./rfc3466">RFC 3466</a> [<a href="./rfc3466" title=""A Model for Content Internetworking (CDI)"">RFC3466</a>] and <a href="./rfc3570">RFC 3570</a> [<a href="./rfc3570" title=""Content Internetworking (CDI) Scenarios"">RFC3570</a>] are the output of the
IETF Content Distribution Internetworking (CDI) working group,
which was closed in 2003.
Note: Some of the terms used in this document are similar to terms
used in the above referenced documents. When reading this document,
terms should be interpreted as having the definitions provided in
<a href="#section-1.1">Section 1.1</a>.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. CDN Interconnection Use Cases</span>
An increasing number of NSPs are deploying CDNs in order to deal
cost-effectively with the growing usage of on-demand video services
and other content delivery applications.
CDNs allow caching of content closer to the edge of a network so that
a given item of content can be delivered by a CDN Surrogate (i.e., a
cache) to multiple User Agents (and their End Users) without
transiting multiple times through the network core (i.e., from the
content origin to the Surrogate). This contributes to bandwidth cost
reductions for the NSP and to improved quality of experience for the
End Users. CDNs also enable replication of popular content across
many Surrogates, which enables content to be served to large numbers
of User Agents concurrently. This also helps in dealing with
situations such as flash crowds and denial-of-service attacks.
The CDNs deployed by NSPs are not just restricted to the delivery of
content to support the Network Service Provider's own 'walled garden'
services, such as IP delivery of television services to Set Top
Boxes, but are also used for delivery of content to other devices,
including PCs, tablets, mobile phones, etc.
Some service providers operate over multiple geographies and federate
multiple affiliate NSPs. These NSPs typically operate independent
CDNs. As they evolve their services (e.g., for seamless support of
content services to nomadic users across affiliate NSPs), there is a
<span class="grey">Niven-Jenkins, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
need for interconnection of these CDNs; this represents a first use
case for CDNI. However, there are no open specifications, nor common
best practices, defining how to achieve such CDN Interconnection.
CSPs have a desire to be able to get (some of) their content to very
large numbers of End Users, who are often distributed across a number
of geographies, while maintaining a high quality of experience, all
without having to maintain direct business relationships with many
different CDN Providers (or having to extend their own CDN to a large
number of locations). Some NSPs are considering interconnecting
their respective CDNs (as well as possibly over-the-top CDNs) so that
this collective infrastructure can address the requirements of CSPs
in a cost-effective manner. This represents a second use case for
CDNI. In particular, this would enable the CSPs to benefit from
on-net delivery (i.e., within the Network Service Provider's own
network/CDN footprint) whenever possible and off-net delivery
otherwise, without requiring the CSPs to maintain direct business
relationships with all the CDNs involved in the delivery. Again, CDN
Providers (NSPs or over-the-top CDN operators) are faced with a lack
of open specifications and best practices.
NSPs have often deployed CDNs as specialized cost-reduction projects
within the context of a particular service or environment. Some NSPs
operate separate CDNs for separate services. For example, there may
be a CDN for managed IPTV service delivery, a CDN for web-TV
delivery, and a CDN for video delivery to mobile terminals. As NSPs
integrate their service portfolio, there is a need for
interconnecting these CDNs, representing a third use case for CDNI.
Again, NSPs face the problem of lack of open interfaces for CDN
Interconnection.
For operational reasons (e.g., disaster, flash crowd) or commercial
reasons, an over-the-top CDN may elect to make use of another CDN
(e.g., an NSP CDN with on-net Surrogates for a given footprint) for
serving a subset of the user requests (e.g., requests from users
attached to that NSP), which results in a fourth use case for CDNI
because CDN Providers (over-the-top CDN Providers or NSPs) are faced
with a lack of open specifications and best practices.
Use cases for CDN Interconnection are further discussed in
[<a href="#ref-CDNI-USE-CASES">CDNI-USE-CASES</a>].
<span class="grey">Niven-Jenkins, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. CDN Interconnection Model and Problem Area for IETF</span>
This section discusses the problem area for the IETF work on CDN
Interconnection.
Interconnecting CDNs involves interactions among multiple different
functions and components that form each CDN. Only some of those
require additional specification by the IETF.
Some NSPs have started to perform experiments to explore whether
their CDN use cases can already be addressed with existing CDN
implementations. One set of such experiments is documented in
[<a href="#ref-CDNI-EXPERIMENTS">CDNI-EXPERIMENTS</a>]. The conclusions of those experiments are that
while some basic limited CDN Interconnection functionality can be
achieved with existing CDN technology, the current lack of any
standardized CDNI interfaces with the necessary level of
functionality such as those discussed in this document is preventing
the deployment of CDN Interconnection.
Listed below are the four interfaces required to interconnect a pair
of CDNs and that constitute the problem space of CDN Interconnection
along with the required functionality of each interface for which
standards do not currently exist. As part of the development of the
CDNI interfaces, it will also be necessary to agree on common
mechanisms for how to identify and name the data objects that are to
be interchanged between interconnected CDNs.
The use of the term "interface" is meant to encompass the protocol
over which CDNI data representations (e.g., CDNI Metadata objects)
are exchanged as well as the specification of the data
representations themselves (i.e., what properties/fields each object
contains, its structure, etc.).
o CDNI Control interface: This interface allows the "CDNI Control"
system in interconnected CDNs to communicate. This interface may
support the following:
* Allow bootstrapping of the other CDNI interfaces (e.g.,
interface address/URL discovery and establishment of security
associations).
* Allow configuration of the other CDNI interfaces (e.g.,
Upstream CDN specifies information to be reported through the
CDNI Logging interface).
* Allow the Downstream CDN to communicate static (or fairly
static) information about its delivery capabilities and
policies.
<span class="grey">Niven-Jenkins, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
* Allow bootstrapping of the interface between CDNs for content
acquisition (even if that interface itself is outside the scope
of the CDNI work).
* Allow an Upstream CDN to initiate or request specific actions
to be undertaken in the Downstream CDN. For example, to allow
an Upstream CDN to initiate content or CDNI Metadata
acquisition (pre-positioning) or to request the invalidation
or purging of content files and/or CDNI Metadata in a
Downstream CDN.
o CDNI Request Routing interface: This interface allows the Request
Routing systems in interconnected CDNs to communicate to ensure
that an End User request can be (re)directed from an Upstream CDN
to a Surrogate in the Downstream CDN, in particular where
selection responsibilities may be split across CDNs (for example,
the Upstream CDN may be responsible for selecting the Downstream
CDN, while the Downstream CDN may be responsible for selecting the
actual Surrogate within that Downstream CDN). In particular, the
functions of the CDN Request Routing interface may be divided as
follows:
* A CDNI Request Routing Redirection interface, which allows the
Upstream CDN to query the Downstream CDN at request routing
time before redirecting the request to the Downstream CDN.
* A CDNI Footprint & Capabilities advertisement interface, which
allows the Downstream CDN to provide to the Upstream CDN
(static or dynamic) information (e.g., resources, footprint,
load) to facilitate selection of the Downstream CDN by the
Upstream CDN Request Routing system when processing subsequent
Content Requests from User Agents.
o CDNI Metadata interface: This interface allows the Distribution
system in interconnected CDNs to communicate to ensure that CDNI
Metadata can be exchanged across CDNs. See <a href="#section-1.1">Section 1.1</a> for the
definition and examples of CDNI Metadata.
o CDNI Logging interface: This interface allows the Logging system
in interconnected CDNs to communicate the relevant activity logs
in order to allow log-consuming applications to operate in a
multi-CDN environment. For example, an Upstream CDN may collect
delivery logs from a Downstream CDN in order to perform
consolidated charging of the CSP or for settlement purposes across
CDNs. Similarly, an Upstream CDN may collect delivery logs from a
Downstream CDN in order to provide consolidated reporting and
monitoring to the CSP.
<span class="grey">Niven-Jenkins, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Note that the actual grouping of functionalities under these four
interfaces is considered tentative at this stage and may be changed
after further study (e.g., some subset of functionality may be moved
from one interface into another).
The above list covers a significant potential problem space, in part
because in order to interconnect two CDNs there are several 'touch
points' that require standardization. However, it is expected that
the CDNI interfaces need not be defined from scratch and instead can
reuse or leverage existing protocols to a very significant extent;
this is discussed further in <a href="#section-4">Section 4</a>.
The interfaces that form the CDNI problem area are illustrated in
Figure 1.
<span class="grey">Niven-Jenkins, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
--------
/ \
| CSP |
\ /
--------
*
*
* /\
* / \
---------------------- |CDNI| ----------------------
/ Upstream CDN \ | | / Downstream CDN \
| +-------------+ | Control Interface| +-------------+ |
|******* Control |<======|====|========>| Control *******|
|* +------*----*-+ | | | | +-*----*------+ *|
|* * * | | | | * * *|
|* +------*------+ | Logging Interface| +------*------+ *|
|* ***** Logging |<======|====|========>| Logging ***** *|
|* * +-*-----------+ | | | | +-----------*-+ * *|
|* * * * | Request Routing | * * * *|
.....*...+-*---------*-+ | Interface | +-*---------*-+...*.*...
. |* * *** Req-Routing |<======|====|========>| Req-Routing *** * *| .
. |* * * +-------------+.| | | | +-------------+ * * *| .
. |* * * . CDNI Metadata | * * *| .
. |* * * +-------------+ |. Interface | +-------------+ * * *| .
. |* * * | Distribution|<==.===|====|========>| Distribution| * * *| .
. |* * * | | | . \ / | | | * * *| .
. |* * * |+---------+ | | . \/ | | +---------+| * * *| .
. |* * ***| +---------+| | ....Request......+---------+ |*** * *| .
. |* *****+-|Surrogate|************************|Surrogate|-+***** *| .
. |******* +---------+| | Acquisition | |+----------+ *******| .
. | +-------------+ | | +-------*-----+ | .
. \ / \ * / .
. ---------------------- ---------*------------ .
. * .
. * Delivery .
. * .
. +--*---+ .
...............Request.............................| User |..Request..
| Agent|
+------+
<==> interfaces inside the scope of CDNI
**** interfaces outside the scope of CDNI
.... interfaces outside the scope of CDNI
Figure 1: A Model for the CDNI Problem Area
<span class="grey">Niven-Jenkins, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
As illustrated in Figure 1, the acquisition of content between
interconnected CDNs is out of scope for CDNI; this deserves some
additional explanation. The consequence of such a decision is that
the CDNI problem space described in this document is focused on only
defining the control plane for CDNI, and the CDNI data plane (i.e.,
the acquisition and distribution of the actual content objects) is
out of scope. The rationale for such a decision is that CDNs today
typically already use standardized protocols such as HTTP, FTP,
rsync, etc. to acquire content from their CSP customers, and it is
expected that the same protocols could be used for acquisition
between interconnected CDNs. Therefore, the problem of content
acquisition is considered already solved, and all that is required
with respect to content acquisition from specifications developed by
the CDNI working group is to describe within the CDNI Metadata the
parameters to use to retrieve the content -- for example, the IP
address/hostname to connect to, what protocol to use to retrieve the
content, etc.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Scoping the CDNI Problem</span>
This section outlines how the scope of work addressing the CDNI
problem space can be constrained through reuse or leveraging of
existing protocols to implement the CDNI interfaces. This discussion
is not intended to preempt any working group decision as to the most
appropriate protocols, technologies, and solutions to select to
realize the CDNI interfaces but is intended as an illustration of the
fact that the CDNI interfaces need not be created in a vacuum and
that reuse or leverage of existing protocols is likely possible.
The four CDNI interfaces (CDNI Control interface, CDNI Request
Routing interface, CDNI Metadata interface, and CDNI Logging
interface) described in <a href="#section-3">Section 3</a> within the CDNI problem area are
all control plane interfaces operating at the application layer
(Layer 7 in the OSI network model). Firstly, since it is not
expected that these interfaces would exhibit unique session,
transport, or network requirements as compared to the many other
existing applications in the Internet, it is expected that the CDNI
interfaces will be defined on top of existing session, transport, and
network protocols.
Secondly, although a new application protocol could be designed
specifically for CDNI, our analysis below shows that this is
unnecessary, and it is recommended that existing application
protocols be reused or leveraged (HTTP [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>], the Atom Publishing
Protocol [<a href="./rfc5023" title=""The Atom Publishing Protocol"">RFC5023</a>], the Extensible Messaging and Presence Protocol
(XMPP) [<a href="./rfc6120" title=""Extensible Messaging and Presence Protocol (XMPP): Core"">RFC6120</a>], for example) to realize the CDNI interfaces.
<span class="grey">Niven-Jenkins, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. CDNI Control Interface</span>
The CDNI Control interface allows the Control system in
interconnected CDNs to communicate. The exact inter-CDN control
functionality required to be supported by the CDNI Control interface
is less well defined than the other three CDNI interfaces at this
time.
It is expected that for the Control interface, as for the other CDNI
interfaces, existing protocols can be reused or leveraged.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. CDNI Request Routing Interface</span>
The CDNI Request Routing interface enables a Request Routing function
in an Upstream CDN to query a Request Routing function in a
Downstream CDN to determine if the Downstream CDN is able (and
willing) to accept the delegated Content Request. It also allows the
Downstream CDN to control what should be returned to the User Agent
in the redirection message by the upstream Request Routing function.
The CDNI Request Routing interface is therefore a fairly
straightforward request/response interface and could be implemented
over any number of request/response protocols. For example, it may
be implemented as a WebService using one of the common WebServices
methodologies (Extensible Markup Language-Remote Procedure Calling
(XML-RPC), HTTP query to a known URI, etc.). This removes the need
for the CDNI working group to define a new protocol for the request/
response element of the CDNI Request Routing interface.
Additionally, as discussed in <a href="#section-3">Section 3</a>, the CDNI Request Routing
interface is also expected to enable a Downstream CDN to provide to
the Upstream CDN (static or dynamic) information (e.g., resources,
footprint, load) to facilitate selection of the Downstream CDN by the
Upstream CDN Request Routing system when processing subsequent
Content Requests from User Agents. It is expected that such
functionality of the CDNI request routing could be specified by the
CDNI working group with significant leveraging of existing IETF
protocols supporting the dynamic distribution of reachability
information (for example, by leveraging existing routing protocols)
or supporting application-level queries for topological information
(for example, by leveraging Application-Layer Traffic Optimization
(ALTO) [<a href="./rfc5693" title=""Application-Layer Traffic Optimization (ALTO) Problem Statement"">RFC5693</a>]).
<span class="grey">Niven-Jenkins, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. CDNI Metadata Interface</span>
The CDNI Metadata interface enables the Distribution system in a
Downstream CDN to request CDNI Metadata from an Upstream CDN so that
the Downstream CDN can properly process and respond to redirection
requests received over the CDNI Request Routing interface and Content
Requests received directly from User Agents.
The CDNI Metadata interface is therefore similar to the CDNI Request
Routing interface because it is a request/response interface with the
potential addition that CDNI Metadata search may have more complex
semantics than a straightforward Request Routing redirection request.
Therefore, like the CDNI Request Routing interface, the CDNI Metadata
interface may be implemented as a WebService using one of the common
WebServices methodologies (XML-RPC, HTTP query to a known URI, etc.)
or possibly using other existing protocols such as XMPP [<a href="./rfc6120" title=""Extensible Messaging and Presence Protocol (XMPP): Core"">RFC6120</a>].
This removes the need for the CDNI working group to define a new
protocol for the request/response element of the CDNI Metadata
interface.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. CDNI Logging Interface</span>
The CDNI Logging interface enables details of content distribution
and delivery activities to be exchanged between interconnected CDNs
-- for example, the exchange of log records related to the delivery
of content, similar to the log records recorded in a web server's
access log.
Several protocols already exist that could potentially be used to
exchange CDNI logs between interconnected CDNs, including the Simple
Network Management Protocol (SNMP), syslog, FTP (and secure
variants), HTTP POST, etc.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
Distribution of content by a CDN comes with a range of security
considerations, such as how to enforce control of access to the
content by End Users in line with the CSP policy, or how to trust the
logging information generated by the CDN for the purposes of charging
the CSP. These security aspects are already dealt with by CDN
Providers and CSPs today in the context of standalone CDNs. However,
interconnection of CDNs introduces a new set of security
considerations by extending the trust model to a chain of trust
(i.e., the CSP "trusts" a CDN that "trusts" another CDN). The
mechanisms used to mitigate these risks in multi-CDN environments may
be similar to those used in the single-CDN case, but their
suitability in this more complex environment must be validated.
<span class="grey">Niven-Jenkins, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
The interconnection of CDNs may also introduce additional privacy
considerations on top of those that apply to the single-CDN case. In
a multi-CDN environment, the different CDNs may reside in different
legal regimes that require differing privacy requirements to be
enforced. Such privacy requirements may impact the granularity of
information that can be exchanged across the CDNI interfaces. For
example, the Logging system in a Downstream CDN may need to apply
some degree of anonymization, obfuscation, or even the complete
removal of some fields before exchanging log records containing
details of End User deliveries with an Upstream CDN.
Maintaining the security of the content itself, its associated
metadata (including delivery policies), and the CDNs distributing and
delivering it, are critical requirements for both CDN Providers and
CSPs, and the CDN Interconnection interfaces must provide sufficient
mechanisms to maintain the security of the overall system of
interconnected CDNs as well as the information (content, metadata,
logs, etc.) distributed and delivered through any set of
interconnected CDNs.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Security of the CDNI Control Interface</span>
Information exchanged between interconnected CDNs over this interface
is of a sensitive nature. A pair of CDNs use this interface to allow
bootstrapping of all the other CDNI interfaces, possibly including
establishment of the mechanisms for securing these interfaces.
Therefore, corruption of that interface may result in corruption of
all other interfaces. Using this interface, an Upstream CDN may
pre-position or delete content or metadata in a Downstream CDN, a
Downstream CDN may provide administrative information to an Upstream
CDN, etc. All of these operations require that the peer CDNs are
appropriately authenticated and that the confidentiality and
integrity of information flowing between them can be ensured.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Security of the CDNI Request Routing Interface</span>
Appropriate levels of authentication and confidentiality must be used
in this interface because it allows an Upstream CDN to query the
Downstream CDN in order to redirect requests, and conversely, allows
the Downstream CDN to influence the Upstream CDN's Request Routing
function.
In the absence of appropriate security on this interface, a rogue
Upstream CDN could inundate Downstream CDNs with bogus requests or
have the Downstream CDN send the rogue Upstream CDN private
information. Also, a rogue Downstream CDN could influence the
<span class="grey">Niven-Jenkins, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Upstream CDN so the Upstream CDN redirects requests to the rogue
Downstream CDN or another Downstream CDN in order to, for example,
attract additional delivery revenue.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Security of the CDNI Metadata Interface</span>
This interface allows a Downstream CDN to request CDNI Metadata from
an Upstream CDN, and therefore the Upstream CDN must ensure that the
former is appropriately authenticated before sending the data.
Conversely, a Downstream CDN must authenticate an Upstream CDN before
requesting metadata to insulate itself from poisoning by rogue
Upstream CDNs. The confidentiality and integrity of the information
exchanged between the peers must be protected.
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Security of the CDNI Logging Interface</span>
Logging data consists of potentially sensitive information (which End
User accessed which media resource, IP addresses of End Users,
potential names and subscriber account information, etc.).
Confidentiality of this information must be protected as log records
are moved between CDNs. This information may also be sensitive from
the viewpoint that it can be the basis for charging across CDNs.
Therefore, appropriate levels of protection are needed against
corruption, duplication, and loss of this information.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Acknowledgements</span>
The authors would like to thank Andre Beck, Gilles Bertrand, Mark
Carlson, Bruce Davie, David Ferguson, Yiu Lee, Kent Leung, Will Li,
Kevin Ma, Julien Maisonneuve, Guy Meador, Larry Peterson, Emile
Stephan, Oskar van Deventer, Mahesh Viveganandhan, and Richard Woundy
for their review comments and contributions to the text.
<span class="grey">Niven-Jenkins, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Informative References</span>
[<a id="ref-ALTO-CDN-USE-CASES">ALTO-CDN-USE-CASES</a>]
Niven-Jenkins, B., Ed., Watson, G., Bitar, N., Medved, J.,
and S. Previdi, "Use Cases for ALTO within CDNs", Work
in Progress, June 2012.
[<a id="ref-ALTO-Charter">ALTO-Charter</a>]
"IETF ALTO WG Charter",
<<a href="http://datatracker.ietf.org/wg/alto/charter/">http://datatracker.ietf.org/wg/alto/charter/</a>>.
[<a id="ref-CDNI-EXPERIMENTS">CDNI-EXPERIMENTS</a>]
Bertrand, G., Ed., Le Faucheur, F., and L. Peterson,
"Content Distribution Network Interconnection (CDNI)
Experiments", Work in Progress, February 2012.
[<a id="ref-CDNI-USE-CASES">CDNI-USE-CASES</a>]
Bertrand, G., Ed., Emile, S., Burbridge, T., Eardley, P.,
Ma, K., and G. Watson, "Use Cases for Content Delivery
Network Interconnection", Work in Progress, August 2012.
[<a id="ref-DECADE-Charter">DECADE-Charter</a>]
"IETF DECADE WG Charter",
<<a href="http://datatracker.ietf.org/wg/decade/charter/">http://datatracker.ietf.org/wg/decade/charter/</a>>.
[<a id="ref-P2PRG-CDNI">P2PRG-CDNI</a>]
Davie, B. and F. Le Faucheur, "Interconnecting CDNs aka
'Peering Peer-to-Peer'", March 2010,
<<a href="http://www.ietf.org/proceedings/77/slides/P2PRG-2.pdf">http://www.ietf.org/proceedings/77/slides/P2PRG-2.pdf</a>>.
[<a id="ref-PPSP-Charter">PPSP-Charter</a>]
"IETF PPSP WG Charter",
<<a href="http://datatracker.ietf.org/wg/ppsp/charter/">http://datatracker.ietf.org/wg/ppsp/charter/</a>>.
[<a id="ref-RFC2616">RFC2616</a>] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P., and T. Berners-Lee, "Hypertext
Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC 2616</a>, June 1999.
[<a id="ref-RFC3040">RFC3040</a>] Cooper, I., Melve, I., and G. Tomlinson, "Internet Web
Replication and Caching Taxonomy", <a href="./rfc3040">RFC 3040</a>, January 2001.
[<a id="ref-RFC3466">RFC3466</a>] Day, M., Cain, B., Tomlinson, G., and P. Rzewski, "A Model
for Content Internetworking (CDI)", <a href="./rfc3466">RFC 3466</a>,
February 2003.
[<a id="ref-RFC3570">RFC3570</a>] Rzewski, P., Day, M., and D. Gilletti, "Content
Internetworking (CDI) Scenarios", <a href="./rfc3570">RFC 3570</a>, July 2003.
<span class="grey">Niven-Jenkins, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
[<a id="ref-RFC5023">RFC5023</a>] Gregorio, J., Ed., and B. de hOra, Ed., "The Atom
Publishing Protocol", <a href="./rfc5023">RFC 5023</a>, October 2007.
[<a id="ref-RFC5693">RFC5693</a>] Seedorf, J. and E. Burger, "Application-Layer Traffic
Optimization (ALTO) Problem Statement", <a href="./rfc5693">RFC 5693</a>,
October 2009.
[<a id="ref-RFC6120">RFC6120</a>] Saint-Andre, P., "Extensible Messaging and Presence
Protocol (XMPP): Core", <a href="./rfc6120">RFC 6120</a>, March 2011.
[<a id="ref-RFC6390">RFC6390</a>] Clark, A. and B. Claise, "Guidelines for Considering New
Performance Metric Development", <a href="https://www.rfc-editor.org/bcp/bcp170">BCP 170</a>, <a href="./rfc6390">RFC 6390</a>,
October 2011.
[<a id="ref-TAXONOMY">TAXONOMY</a>] Pathan, A. and R. Buyya, "A Taxonomy and Survey of Content
Delivery Networks", 2007,
<<a href="http://www.cloudbus.org/reports/CDN-Taxonomy.pdf">http://www.cloudbus.org/reports/CDN-Taxonomy.pdf</a>>.
<span class="grey">Niven-Jenkins, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Design Considerations for Realizing the CDNI Interfaces</span>
This section expands on how CDNI interfaces can reuse and leverage
existing protocols before describing each CDNI interface individually
and highlighting example candidate protocols that could be considered
for reuse or leveraging to implement the CDNI interfaces. However,
the options discussed here are purely examples and do not present any
consensus on protocols to be used later on.
<span class="h3"><a class="selflink" id="appendix-A.1" href="#appendix-A.1">A.1</a>. CDNI Control Interface</span>
The CDNI Control interface allows the Control system in
interconnected CDNs to communicate. The exact inter-CDN control
functionality required to be supported by the CDNI Control interface
is less well defined than the other three CDNI interfaces at this
time.
However, as discussed in <a href="#section-3">Section 3</a>, the CDNI Control interface may be
required to support functionality similar to the following:
o Allow an Upstream CDN and Downstream CDN to establish, update, or
terminate their CDNI interconnection.
o Allow bootstrapping of the other CDNI interfaces (e.g., protocol
address discovery and establishment of security associations).
o Allow configuration of the other CDNI interfaces (e.g., Upstream
CDN specifies information to be reported through the CDNI Logging
interface).
o Allow the Downstream CDN to communicate static information about
its delivery capabilities, resources, and policies.
o Allow bootstrapping of the interface between CDNs for content
acquisition (even if that interface itself is outside the scope of
the CDNI work).
It is expected that for the Control interface, as for the other CDNI
interfaces, existing protocols can be reused or leveraged. Those
will be considered once the requirements for the Control interface
have been refined.
<span class="grey">Niven-Jenkins, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h3"><a class="selflink" id="appendix-A.2" href="#appendix-A.2">A.2</a>. CDNI Request Routing Interface</span>
The CDNI Request Routing interface enables a Request Routing function
in an Upstream CDN to query a Request Routing function in a
Downstream CDN to determine if the Downstream CDN is able (and
willing) to accept the delegated Content Request and to allow the
Downstream CDN to control what the upstream Request Routing function
should return to the User Agent in the redirection message.
Therefore, the CDNI Request Routing interface needs to offer a
mechanism for an Upstream CDN to issue a "Redirection Request" to a
Downstream CDN. The Request Routing interface needs to be able to
support scenarios where the initial User Agent request to the
Upstream CDN is received over DNS as well as over a content-specific
application protocol (e.g., HTTP, the Real Time Streaming Protocol
(RTSP), the Real Time Messaging Protocol (RTMP), etc.).
Therefore, a Redirection Request is expected to contain information
such as:
o The protocol (e.g., DNS, HTTP) over which the Upstream CDN
received the initial User Agent request.
o Additional details of the User Agent request that are required to
perform effective Request Routing by the Downstream CDN. For DNS,
this would typically be the IP address of the DNS resolver making
the request on behalf of the User Agent. For requests received
over content-specific application protocols, the Redirection
Request could contain significantly more information related to
the original User Agent request but at a minimum is expected to
include the User Agent's IP address, the equivalent of the HTTP
Host header, and the equivalent of the HTTP abs_path as defined in
[<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>].
It should be noted that the CDNI architecture needs to consider that
a Downstream CDN may receive requests from User Agents without first
receiving a Redirection Request from an Upstream CDN for the
corresponding User Agent request because, for example:
o User Agents (or DNS resolvers) may cache DNS or application
responses from Request Routers.
o Responses to Redirection Requests over the Request Routing
interface may be cacheable.
<span class="grey">Niven-Jenkins, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
o Some CDNs may rely on simple coarse policies, e.g., CDN B agrees
to always serve CDN A's delegated redirection requests, in which
case the necessary redirection details are exchanged out of band
(of the CDNI interfaces), e.g., configured.
On receiving a Redirection Request, the Downstream CDN will use the
information provided in the request to determine if it is able (and
willing) to accept the delegated Content Request and needs to return
the result of its decision to the Upstream CDN.
Thus, a Redirection Response from the Downstream CDN is expected to
contain information such as:
o Status code indicating acceptance or rejection (possibly with
accompanying reasons).
o Information to allow redirection by the Upstream CDN. In the case
of DNS-based request routing, this is expected to include the
equivalent of a DNS record(s) (e.g., a CNAME) that the Upstream
CDN should return to the requesting DNS resolver. In the case of
application-based request routing, this is expected to include the
information necessary to construct the application-specific
redirection response(s) to return to the requesting User Agent.
For HTTP requests from User Agents, this could include a URI that
the Upstream CDN could return in an HTTP 3xx response.
The CDNI Request Routing interface is therefore a fairly
straightforward request/response interface and could be implemented
over any number of request/response protocols. For example, it may
be implemented as a WebService using one of the common WebServices
methodologies (XML-RPC, HTTP query to a known URI, etc.). This
removes the need for the CDNI working group to define a new protocol
for the request/response element of the CDNI Request Routing
interface. Thus, the CDNI working group would be left only with the
task of specifying:
o The recommended request/response protocol to use along with any
additional semantics and procedures that are specific to the CDNI
Request Routing interface (e.g., handling of malformed requests/
responses).
o The syntax (i.e., representation/encoding) of the redirection
requests and responses.
o The semantics (i.e., meaning and expected contents) of the
redirection requests and responses.
<span class="grey">Niven-Jenkins, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Additionally, as discussed in <a href="#section-3">Section 3</a>, the CDNI Request Routing
interface is also expected to enable a Downstream CDN to provide to
the Upstream CDN (static or dynamic) information (e.g., resources,
footprint, load) to facilitate selection of the Downstream CDN by the
Upstream CDN Request Routing system when processing subsequent
Content Requests from User Agents. It is expected that such
functionality of the CDNI request routing could be specified by the
CDNI working group with significant leveraging of existing IETF
protocols supporting the dynamic distribution of reachability
information (for example, by leveraging existing routing protocols)
or supporting application-level queries for topological information
(for example, by leveraging ALTO).
<span class="h3"><a class="selflink" id="appendix-A.3" href="#appendix-A.3">A.3</a>. CDNI Metadata Interface</span>
The CDNI Metadata interface enables the Distribution system in a
Downstream CDN to obtain CDNI Metadata from an Upstream CDN so that
the Downstream CDN can properly process and respond to:
o Redirection Requests received over the CDNI Request Routing
interface.
o Content Requests received directly from User Agents.
The CDNI Metadata interface needs to offer a mechanism for an
Upstream CDN to:
o Distribute/update/remove CDNI Metadata to a Downstream CDN.
and/or to allow a Downstream CDN to:
o Make direct requests for CDNI Metadata objects.
o Make recursive requests for CDNI Metadata -- for example, to
enable a Downstream CDN to walk down a tree of objects with
inter-object relationships.
The CDNI Metadata interface is therefore similar to the CDNI Request
Routing interface because it is a request/response interface with the
potential addition that CDNI Metadata search may have more complex
semantics than a straightforward Request Routing redirection request.
Therefore, like the CDNI Request Routing interface, the CDNI Metadata
interface may be implemented as a WebService using one of the common
WebServices methodologies (XML-RPC, HTTP query to a known URI, etc.)
or possibly using other existing protocols such as XMPP [<a href="./rfc6120" title=""Extensible Messaging and Presence Protocol (XMPP): Core"">RFC6120</a>].
This removes the need for the CDNI working group to define a new
protocol for the request/response element of the CDNI Metadata
interface.
<span class="grey">Niven-Jenkins, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Thus, the CDNI working group would be left only with the task of
specifying:
o The recommended request/response protocol to use along with any
additional semantics that are specific to the CDNI Metadata
interface (e.g., handling of malformed requests/responses).
o The syntax (i.e., representation/encoding) of the CDNI Metadata
objects that will be exchanged over the interface.
o The semantics (i.e., meaning and expected contents) of the
individual properties of a Metadata object.
o How the relationships between different CDNI Metadata objects are
represented.
<span class="h3"><a class="selflink" id="appendix-A.4" href="#appendix-A.4">A.4</a>. CDNI Logging Interface</span>
The CDNI Logging interface enables details of content distribution
and delivery activities to be exchanged between interconnected CDNs,
such as log records related to the delivery of content (similar to
the log records recorded in a web server's access log).
Within CDNs today, log records are used for a variety of purposes.
Specifically, CDNs use logs to generate Call Data Records (CDRs) for
passing to billing and payment systems and to real-time (and near
real-time) analytics systems. Such applications place requirements
on the CDNI Logging interface to support guaranteed and timely
delivery of log messages between interconnected CDNs. It may also be
necessary to be able to prove the integrity of received log messages.
Several protocols already exist that could potentially be used to
exchange CDNI logs between interconnected CDNs, including SNMP traps,
syslog, FTP, HTTP POST, etc., although it is likely that some of the
candidate protocols may not be well suited to meet all the
requirements of CDNI. For example, SNMP traps pose scalability
concerns, and SNMP does not support guaranteed delivery of traps and
therefore could result in log records being lost and the consequent
CDRs and billing records for that content delivery not being
produced, as well as that content delivery being invisible to any
analytics platforms.
<span class="grey">Niven-Jenkins, et al. Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Although it is not necessary to define a new protocol for exchanging
logs across the CDNI Logging interface, the CDNI working group would
still need to specify:
o The recommended protocol to use.
o A default set of log fields and of their syntax and semantics.
Today there is no standard set of common log fields across
different content delivery protocols, and in some cases there is
not even a standard set of log field names and values for
different implementations of the same delivery protocol.
o A default set of conditions that trigger log records to be
generated.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Additional Material</span>
This section records related information that was produced as part of
defining the CDNI problem statement.
<span class="h3"><a class="selflink" id="appendix-B.1" href="#appendix-B.1">B.1</a>. Non-Goals for IETF</span>
Listed below are aspects of content delivery that the authors propose
be kept outside of the scope of the CDNI working group:
o The interface between the Content Service Provider and the
Authoritative CDN (i.e., the Upstream CDN contracted by the CSP
for delivery by this CDN or by its Downstream CDNs).
o The delivery interface between the delivering CDN Surrogate and
the User Agent, such as streaming protocols.
o The request interface between the User Agent and the Request
Routing system of a given CDN. Existing IETF protocols (e.g.,
HTTP, RTSP, DNS) are commonly used by User Agents to request
content from a CDN and by CDN Request Routing systems to redirect
the User Agent requests. The CDNI working group need not define
new protocols for this purpose. Note, however, that the CDNI
control plane interface may indirectly affect some of the
information exchanged through the request interface (e.g., URI).
o The content acquisition interface between CDNs (i.e., the data
plane interface for actual delivery of a piece of content from one
CDN to the other). This is expected to use existing protocols
such as HTTP or protocols defined in other forums for content
acquisition between an origin server and a CDN (e.g., HTTP-based
C2 reference point of the Alliance for Telecommunications Industry
Solutions IPTV Interoperability Forum Content on Demand service
<span class="grey">Niven-Jenkins, et al. Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
(ATIS IIF CoD)). The CDN Interconnection problem space described
in this document may therefore only concern itself with the
agreement/negotiation aspects of which content acquisition
protocol is to be used between two interconnected CDNs in view of
facilitating interoperability.
o End User/User Agent Authentication. End User/User Agent
authentication and authorization are the responsibility of the
Content Service Provider.
o Content preparation, including encoding and transcoding. The CDNI
architecture aims at allowing distribution across interconnected
CDNs of content treated as opaque objects. Interpretation and
processing of the objects, as well as optimized delivery of these
objects by the Surrogate to the End User, are outside the scope of
CDNI.
o Digital Rights Management (DRM). DRM is an end-to-end issue
between a content protection system and the User Agent.
o Applications consuming CDNI logs (e.g., charging, analytics,
reporting, ...).
o Internal CDN interfaces and protocols (i.e., interfaces and
protocols within one CDN).
o Scalability of individual CDNs. While scalability of the CDNI
interfaces/approach is in scope, how an individual CDN scales is
out of scope.
o Actual algorithms for selection of CDNs or Surrogates by Request
Routing systems (however, some specific parameters required as
input to these algorithms may be in scope when they need to be
communicated across CDNs).
o Surrogate algorithms. For example, caching algorithms and content
acquisition methods are outside the scope of the CDNI work.
Content management (e.g., Content Deletion) as it relates to CDNI
content management policies is in scope, but the internal
algorithms used by a cache to determine when to no longer cache an
item of Content (in the absence of any specific metadata to the
contrary) is out of scope.
o Element management interfaces.
o Commercial, business, and legal aspects related to the
interconnections of CDNs.
<span class="grey">Niven-Jenkins, et al. Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
<span class="h3"><a class="selflink" id="appendix-B.2" href="#appendix-B.2">B.2</a>. Relationship to Relevant IETF Working Groups and IRTF Research</span>
Groups
<span class="h4"><a class="selflink" id="appendix-B.2.1" href="#appendix-B.2.1">B.2.1</a>. ALTO WG</span>
As stated in the ALTO working group charter [<a href="#ref-ALTO-Charter">ALTO-Charter</a>]:
The Working Group will design and specify an Application-Layer
Traffic Optimization (ALTO) service that will provide applications
with information to perform better-than-random initial peer
selection. ALTO services may take different approaches at
balancing factors such as maximum bandwidth, minimum cross-domain
traffic, lowest cost to the user, etc. The working group will
consider the needs of BitTorrent, tracker-less P2P, and other
applications, such as content delivery networks (CDN) and mirror
selection.
In particular, the ALTO service can be used by a CDN Request Routing
system to improve its selection of a CDN Surrogate to serve a
particular User Agent request (or to serve a request from another
Surrogate). [<a href="#ref-ALTO-CDN-USE-CASES">ALTO-CDN-USE-CASES</a>] describes a number of use cases for
a CDN to be able to obtain network topology and cost information from
an ALTO server(s) and discusses how CDN Request Routing could be used
as an integration point of ALTO into CDNs. It is possible that the
ALTO service could be used in the same manner in a multi-CDN
environment based on CDN Interconnection. For example, an Upstream
CDN may take advantage of the ALTO service in its decision for
selecting a Downstream CDN to which a user request should be
delegated.
However, the current work of ALTO is complementary to and does not
overlap with the work described in this document because the
integration between ALTO and a CDN is an internal decision for a
specific CDN and is therefore out of scope for the CDNI working
group. One area for further study is whether additional information
should be provided by an ALTO service to facilitate CDNI CDN
selection.
<span class="h4"><a class="selflink" id="appendix-B.2.2" href="#appendix-B.2.2">B.2.2</a>. DECADE WG</span>
The DECADE working group [<a href="#ref-DECADE-Charter">DECADE-Charter</a>] is addressing the problem
of reducing traffic on the last-mile uplink, as well as backbone and
transit links caused by peer-to-peer (P2P) streaming and file-sharing
applications. It addresses the problem by enabling an application
endpoint to make content available from an in-network storage service
and by enabling other application endpoints to retrieve the content
from there.
<span class="grey">Niven-Jenkins, et al. Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Exchanging data through the in-network storage service in this
manner, instead of through direct communication, provides significant
gain where:
o The network capacity/bandwidth from the in-network storage service
to the application endpoint significantly exceeds the capacity/
bandwidth from application endpoint to application endpoint (e.g.,
because of an end-user uplink bottleneck); and
o The content is to be accessed by multiple instances of application
endpoints (e.g., as is typically the case for P2P applications).
While, as is the case for any other data distribution application,
the DECADE architecture and mechanisms could potentially be used for
exchange of CDNI control plane information via an in-network storage
service (as opposed to directly between the entities terminating the
CDNI interfaces in the neighbor CDNs), we observe that:
o CDNI would operate as a "Content Distribution Application" from
the DECADE viewpoint (i.e., would operate on top of DECADE).
o There do not seem to be obvious benefits in integrating the DECADE
control plane responsible for signaling information relating to
control of the in-network storage service itself, and the CDNI
control plane responsible for application-specific CDNI
interactions (such as exchange of CDNI Metadata, CDNI request
redirection, and transfer of CDNI logging information).
o There would typically be limited benefits in making use of a
DECADE in-network storage service because the CDNI interfaces are
expected to be terminated by a very small number of CDNI clients
(if not one) in each CDN, and the CDNI clients are expected to
benefit from high bandwidth/capacity when communicating directly
to each other (at least as high as if they were communicating via
an in-network storage server).
The DECADE in-network storage architecture and mechanisms may
theoretically be used for the acquisition of the content objects
themselves between interconnected CDNs. It is not expected that this
would have obvious benefits in typical situations where a content
object is acquired only once from an Upstream CDN to a Downstream CDN
(and then distributed as needed inside the Downstream CDN). But it
might have benefits in some particular situations. Since the
acquisition protocol between CDNs is outside the scope of the CDNI
work, this question is left for further study.
<span class="grey">Niven-Jenkins, et al. Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
The DECADE in-network storage architecture and mechanisms may
potentially also be used within a given CDN for the distribution of
the content objects themselves among Surrogates of that CDN. Since
the CDNI work does not concern itself with operation within a CDN,
this question is left for further study.
Therefore, the work of DECADE may be complementary to, but does not
overlap with, the CDNI work described in this document.
<span class="h4"><a class="selflink" id="appendix-B.2.3" href="#appendix-B.2.3">B.2.3</a>. PPSP WG</span>
As stated in the PPSP working group charter [<a href="#ref-PPSP-Charter">PPSP-Charter</a>]:
The Peer-to-Peer Streaming Protocol (PPSP) working group develops
two signaling and control protocols for a peer-to-peer (P2P)
streaming system for transmitting live and time-shifted media
content with near real-time delivery requirements...
... The PPSP working group designs a protocol for signaling and
control between trackers and peers (the PPSP "tracker protocol")
and a signaling and control protocol for communication among the
peers (the PPSP "peer protocol"). The two protocols enable peers
to receive streaming data within the time constraints required by
specific content items.
Therefore, PPSP is concerned with the distribution of the streamed
content itself along with the necessary signaling and control
required to distribute the content. As such, it could potentially be
used for the acquisition of streamed content across interconnected
CDNs. But since the acquisition protocol is outside the scope of the
work proposed for CDNI, we leave this for further study. Also,
because of its streaming nature, PPSP is not seen as applicable to
the distribution and control of the CDNI control plane and CDNI data
representations.
Therefore, the work of PPSP may be complementary to, but does not
overlap with, the work described in this document for CDNI.
<span class="h4"><a class="selflink" id="appendix-B.2.4" href="#appendix-B.2.4">B.2.4</a>. IRTF P2P Research Group</span>
Some information on CDN Interconnection motivations and technical
issues were presented in the P2P research group at IETF 77. The
presentation can be found in [<a href="#ref-P2PRG-CDNI">P2PRG-CDNI</a>].
<span class="grey">Niven-Jenkins, et al. Informational [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc6707">RFC 6707</a> CDN Interconnection Problem Statement September 2012</span>
Authors' Addresses
Ben Niven-Jenkins
Velocix (Alcatel-Lucent)
326 Cambridge Science Park
Milton Road, Cambridge CB4 0WG
UK
EMail: ben@velocix.com
Francois Le Faucheur
Cisco Systems
Greenside, 400 Avenue de Roumanille
Sophia Antipolis 06410
France
Phone: +33 4 97 23 26 19
EMail: flefauch@cisco.com
Nabil Bitar
Verizon
60 Sylvan Road
Waltham, MA 02145
USA
EMail: nabil.n.bitar@verizon.com
Niven-Jenkins, et al. Informational [Page 32]
</pre>
|