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
|
<pre>Internet Engineering Task Force (IETF) P. Lapukhov
Request for Comments: 7938 Facebook
Category: Informational A. Premji
ISSN: 2070-1721 Arista Networks
J. Mitchell, Ed.
August 2016
<span class="h1">Use of BGP for Routing in Large-Scale Data Centers</span>
Abstract
Some network operators build and operate data centers that support
over one hundred thousand servers. In this document, such data
centers are referred to as "large-scale" to differentiate them from
smaller infrastructures. Environments of this scale have a unique
set of network requirements with an emphasis on operational
simplicity and network stability. This document summarizes
operational experience in designing and operating large-scale data
centers using BGP as the only routing protocol. The intent is to
report on a proven and stable routing design that could be leveraged
by others in the industry.
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="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7938">http://www.rfc-editor.org/info/rfc7938</a>.
<span class="grey">Lapukhov, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
Copyright Notice
Copyright (c) 2016 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-2">2</a>. Network Design Requirements . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. Bandwidth and Traffic Patterns . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.2">2.2</a>. CAPEX Minimization . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.3">2.3</a>. OPEX Minimization . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-2.4">2.4</a>. Traffic Engineering . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-2.5">2.5</a>. Summarized Requirements . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3">3</a>. Data Center Topologies Overview . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Traditional DC Topology . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. Clos Network Topology . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-3.2.1">3.2.1</a>. Overview . . . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-3.2.2">3.2.2</a>. Clos Topology Properties . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.2.3">3.2.3</a>. Scaling the Clos Topology . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.2.4">3.2.4</a>. Managing the Size of Clos Topology Tiers . . . . . . <a href="#page-10">10</a>
<a href="#section-4">4</a>. Data Center Routing Overview . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-4.1">4.1</a>. L2-Only Designs . . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-4.2">4.2</a>. Hybrid L2/L3 Designs . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-4.3">4.3</a>. L3-Only Designs . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-5">5</a>. Routing Protocol Design . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5.1">5.1</a>. Choosing EBGP as the Routing Protocol . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5.2">5.2</a>. EBGP Configuration for Clos Topology . . . . . . . . . . <a href="#page-15">15</a>
5.2.1. EBGP Configuration Guidelines and Example ASN Scheme 15
<a href="#section-5.2.2">5.2.2</a>. Private Use ASNs . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-5.2.3">5.2.3</a>. Prefix Advertisement . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-5.2.4">5.2.4</a>. External Connectivity . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-5.2.5">5.2.5</a>. Route Summarization at the Edge . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-6">6</a>. ECMP Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-6.1">6.1</a>. Basic ECMP . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-6.2">6.2</a>. BGP ECMP over Multiple ASNs . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-6.3">6.3</a>. Weighted ECMP . . . . . . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-6.4">6.4</a>. Consistent Hashing . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<span class="grey">Lapukhov, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<a href="#section-7">7</a>. Routing Convergence Properties . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-7.1">7.1</a>. Fault Detection Timing . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-7.2">7.2</a>. Event Propagation Timing . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-7.3">7.3</a>. Impact of Clos Topology Fan-Outs . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-7.4">7.4</a>. Failure Impact Scope . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-7.5">7.5</a>. Routing Micro-Loops . . . . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#section-8">8</a>. Additional Options for Design . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#section-8.1">8.1</a>. Third-Party Route Injection . . . . . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#section-8.2">8.2</a>. Route Summarization within Clos Topology . . . . . . . . <a href="#page-27">27</a>
<a href="#section-8.2.1">8.2.1</a>. Collapsing Tier 1 Devices Layer . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-8.2.2">8.2.2</a>. Simple Virtual Aggregation . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-8.3">8.3</a>. ICMP Unreachable Message Masquerading . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-9">9</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-10">10</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-10.1">10.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-10.2">10.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-31">31</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-35">35</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-35">35</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document describes a practical routing design that can be used
in a large-scale data center (DC) design. Such data centers, also
known as "hyper-scale" or "warehouse-scale" data centers, have a
unique attribute of supporting over a hundred thousand servers. In
order to accommodate networks of this scale, operators are revisiting
networking designs and platforms to address this need.
The design presented in this document is based on operational
experience with data centers built to support large-scale distributed
software infrastructure, such as a web search engine. The primary
requirements in such an environment are operational simplicity and
network stability so that a small group of people can effectively
support a significantly sized network.
Experimentation and extensive testing have shown that External BGP
(EBGP) [<a href="./rfc4271" title=""A Border Gateway Protocol 4 (BGP-4)"">RFC4271</a>] is well suited as a stand-alone routing protocol for
these types of data center applications. This is in contrast with
more traditional DC designs, which may use simple tree topologies and
rely on extending Layer 2 (L2) domains across multiple network
devices. This document elaborates on the requirements that led to
this design choice and presents details of the EBGP routing design as
well as exploring ideas for further enhancements.
This document first presents an overview of network design
requirements and considerations for large-scale data centers. Then,
traditional hierarchical data center network topologies are
contrasted with Clos networks [<a href="#ref-CLOS1953" title=""A Study of Non-Blocking Switching Networks"">CLOS1953</a>] that are horizontally scaled
<span class="grey">Lapukhov, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
out. This is followed by arguments for selecting EBGP with a Clos
topology as the most appropriate routing protocol to meet the
requirements and the proposed design is described in detail.
Finally, this document reviews some additional considerations and
design options. A thorough understanding of BGP is assumed by a
reader planning on deploying the design described within the
document.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Network Design Requirements</span>
This section describes and summarizes network design requirements for
large-scale data centers.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Bandwidth and Traffic Patterns</span>
The primary requirement when building an interconnection network for
a large number of servers is to accommodate application bandwidth and
latency requirements. Until recently it was quite common to see the
majority of traffic entering and leaving the data center, commonly
referred to as "north-south" traffic. Traditional "tree" topologies
were sufficient to accommodate such flows, even with high
oversubscription ratios between the layers of the network. If more
bandwidth was required, it was added by "scaling up" the network
elements, e.g., by upgrading the device's linecards or fabrics or
replacing the device with one with higher port density.
Today many large-scale data centers host applications generating
significant amounts of server-to-server traffic, which does not
egress the DC, commonly referred to as "east-west" traffic. Examples
of such applications could be computer clusters such as Hadoop
[<a href="#ref-HADOOP" title=""Apache Hadoop"">HADOOP</a>], massive data replication between clusters needed by certain
applications, or virtual machine migrations. Scaling traditional
tree topologies to match these bandwidth demands becomes either too
expensive or impossible due to physical limitations, e.g., port
density in a switch.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. CAPEX Minimization</span>
The Capital Expenditures (CAPEX) associated with the network
infrastructure alone constitutes about 10-15% of total data center
expenditure (see [<a href="#ref-GREENBERG2009">GREENBERG2009</a>]). However, the absolute cost is
significant, and hence there is a need to constantly drive down the
cost of individual network elements. This can be accomplished in two
ways:
o Unifying all network elements, preferably using the same hardware
type or even the same device. This allows for volume pricing on
bulk purchases and reduced maintenance and inventory costs.
<span class="grey">Lapukhov, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
o Driving costs down using competitive pressures, by introducing
multiple network equipment vendors.
In order to allow for good vendor diversity, it is important to
minimize the software feature requirements for the network elements.
This strategy provides maximum flexibility of vendor equipment
choices while enforcing interoperability using open standards.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. OPEX Minimization</span>
Operating large-scale infrastructure can be expensive as a larger
amount of elements will statistically fail more often. Having a
simpler design and operating using a limited software feature set
minimizes software issue-related failures.
An important aspect of Operational Expenditure (OPEX) minimization is
reducing the size of failure domains in the network. Ethernet
networks are known to be susceptible to broadcast or unicast traffic
storms that can have a dramatic impact on network performance and
availability. The use of a fully routed design significantly reduces
the size of the data-plane failure domains, i.e., limits them to the
lowest level in the network hierarchy. However, such designs
introduce the problem of distributed control-plane failures. This
observation calls for simpler and less control-plane protocols to
reduce protocol interaction issues, reducing the chance of a network
meltdown. Minimizing software feature requirements as described in
the CAPEX section above also reduces testing and training
requirements.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Traffic Engineering</span>
In any data center, application load balancing is a critical function
performed by network devices. Traditionally, load balancers are
deployed as dedicated devices in the traffic forwarding path. The
problem arises in scaling load balancers under growing traffic
demand. A preferable solution would be able to scale the load-
balancing layer horizontally, by adding more of the uniform nodes and
distributing incoming traffic across these nodes. In situations like
this, an ideal choice would be to use network infrastructure itself
to distribute traffic across a group of load balancers. The
combination of anycast prefix advertisement [<a href="./rfc4786" title=""Operation of Anycast Services"">RFC4786</a>] and Equal Cost
Multipath (ECMP) functionality can be used to accomplish this goal.
To allow for more granular load distribution, it is beneficial for
the network to support the ability to perform controlled per-hop
traffic engineering. For example, it is beneficial to directly
control the ECMP next-hop set for anycast prefixes at every level of
the network hierarchy.
<span class="grey">Lapukhov, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Summarized Requirements</span>
This section summarizes the list of requirements outlined in the
previous sections:
o REQ1: Select a topology that can be scaled "horizontally" by
adding more links and network devices of the same type without
requiring upgrades to the network elements themselves.
o REQ2: Define a narrow set of software features/protocols supported
by a multitude of networking equipment vendors.
o REQ3: Choose a routing protocol that has a simple implementation
in terms of programming code complexity and ease of operational
support.
o REQ4: Minimize the failure domain of equipment or protocol issues
as much as possible.
o REQ5: Allow for some traffic engineering, preferably via explicit
control of the routing prefix next hop using built-in protocol
mechanics.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Data Center Topologies Overview</span>
This section provides an overview of two general types of data center
designs -- hierarchical (also known as "tree-based") and Clos-based
network designs.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Traditional DC Topology</span>
In the networking industry, a common design choice for data centers
typically looks like an (upside down) tree with redundant uplinks and
three layers of hierarchy namely; core, aggregation/distribution, and
access layers (see Figure 1). To accommodate bandwidth demands, each
higher layer, from the server towards DC egress or WAN, has higher
port density and bandwidth capacity where the core functions as the
"trunk" of the tree-based design. To keep terminology uniform and
for comparison with other designs, in this document these layers will
be referred to as Tier 1, Tier 2 and Tier 3 "tiers", instead of core,
aggregation, or access layers.
<span class="grey">Lapukhov, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
+------+ +------+
| | | |
| |--| | Tier 1
| | | |
+------+ +------+
| | | |
+---------+ | | +----------+
| +-------+--+------+--+-------+ |
| | | | | | | |
+----+ +----+ +----+ +----+
| | | | | | | |
| |-----| | | |-----| | Tier 2
| | | | | | | |
+----+ +----+ +----+ +----+
| | | |
| | | |
| +-----+ | | +-----+ |
+-| |-+ +-| |-+ Tier 3
+-----+ +-----+
| | | | | |
<- Servers -> <- Servers ->
Figure 1: Typical DC Network Topology
Unfortunately, as noted previously, it is not possible to scale a
tree-based design to a large enough degree for handling large-scale
designs due to the inability to be able to acquire Tier 1 devices
with a large enough port density to sufficiently scale Tier 2. Also,
continuous upgrades or replacement of the upper-tier devices are
required as deployment size or bandwidth requirements increase, which
is operationally complex. For this reason, REQ1 is in place,
eliminating this type of design from consideration.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Clos Network Topology</span>
This section describes a common design for horizontally scalable
topology in large-scale data centers in order to meet REQ1.
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Overview</span>
A common choice for a horizontally scalable topology is a folded Clos
topology, sometimes called "fat-tree" (for example, [<a href="#ref-INTERCON" title=""Principles and Practices of Interconnection Networks"">INTERCON</a>] and
[<a href="#ref-ALFARES2008">ALFARES2008</a>]). This topology features an odd number of stages
(sometimes known as "dimensions") and is commonly made of uniform
elements, e.g., network switches with the same port count.
Therefore, the choice of folded Clos topology satisfies REQ1 and
<span class="grey">Lapukhov, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
facilitates REQ2. See Figure 2 below for an example of a folded
3-stage Clos topology (3 stages counting Tier 2 stage twice, when
tracing a packet flow):
+-------+
| |----------------------------+
| |------------------+ |
| |--------+ | |
+-------+ | | |
+-------+ | | |
| |--------+---------+-------+ |
| |--------+-------+ | | |
| |------+ | | | | |
+-------+ | | | | | |
+-------+ | | | | | |
| |------+-+-------+-+-----+ | |
| |------+-+-----+ | | | | |
| |----+ | | | | | | | |
+-------+ | | | | | | ---------> M links
Tier 1 | | | | | | | | |
+-------+ +-------+ +-------+
| | | | | |
| | | | | | Tier 2
| | | | | |
+-------+ +-------+ +-------+
| | | | | | | | |
| | | | | | ---------> N Links
| | | | | | | | |
O O O O O O O O O Servers
Figure 2: 3-Stage Folded Clos Topology
This topology is often also referred to as a "Leaf and Spine"
network, where "Spine" is the name given to the middle stage of the
Clos topology (Tier 1) and "Leaf" is the name of input/output stage
(Tier 2). For uniformity, this document will refer to these layers
using the "Tier n" notation.
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Clos Topology Properties</span>
The following are some key properties of the Clos topology:
o The topology is fully non-blocking, or more accurately non-
interfering, if M >= N and oversubscribed by a factor of N/M
otherwise. Here M and N is the uplink and downlink port count
respectively, for a Tier 2 switch as shown in Figure 2.
<span class="grey">Lapukhov, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
o Utilizing this topology requires control and data-plane support
for ECMP with a fan-out of M or more.
o Tier 1 switches have exactly one path to every server in this
topology. This is an important property that makes route
summarization dangerous in this topology (see <a href="#section-8.2">Section 8.2</a> below).
o Traffic flowing from server to server is load balanced over all
available paths using ECMP.
<span class="h4"><a class="selflink" id="section-3.2.3" href="#section-3.2.3">3.2.3</a>. Scaling the Clos Topology</span>
A Clos topology can be scaled either by increasing network element
port density or by adding more stages, e.g., moving to a 5-stage
Clos, as illustrated in Figure 3 below:
Tier 1
+-----+
Cluster | |
+----------------------------+ +--| |--+
| | | +-----+ |
| Tier 2 | | | Tier 2
| +-----+ | | +-----+ | +-----+
| +-------------| DEV |------+--| |--+--| |-------------+
| | +-----| C |------+ | | +--| |-----+ |
| | | +-----+ | +-----+ +-----+ | |
| | | | | |
| | | +-----+ | +-----+ +-----+ | |
| | +-----------| DEV |------+ | | +--| |-----------+ |
| | | | +---| D |------+--| |--+--| |---+ | | |
| | | | | +-----+ | | +-----+ | +-----+ | | | |
| | | | | | | | | | | |
| +-----+ +-----+ | | +-----+ | +-----+ +-----+
| | DEV | | DEV | | +--| |--+ | | | |
| | A | | B | Tier 3 | | | Tier 3 | | | |
| +-----+ +-----+ | +-----+ +-----+ +-----+
| | | | | | | | | |
| O O O O | O O O O
| Servers | Servers
+----------------------------+
Figure 3: 5-Stage Clos Topology
The small example of topology in Figure 3 is built from devices with
a port count of 4. In this document, one set of directly connected
Tier 2 and Tier 3 devices along with their attached servers will be
referred to as a "cluster". For example, DEV A, B, C, D, and the
servers that connect to DEV A and B, on Figure 3 form a cluster. The
<span class="grey">Lapukhov, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
concept of a cluster may also be a useful concept as a single
deployment or maintenance unit that can be operated on at a different
frequency than the entire topology.
In practice, Tier 3 of the network, which is typically Top-of-Rack
switches (ToRs), is where oversubscription is introduced to allow for
packaging of more servers in the data center while meeting the
bandwidth requirements for different types of applications. The main
reason to limit oversubscription at a single layer of the network is
to simplify application development that would otherwise need to
account for multiple bandwidth pools: within rack (Tier 3), between
racks (Tier 2), and between clusters (Tier 1). Since
oversubscription does not have a direct relationship to the routing
design, it is not discussed further in this document.
<span class="h4"><a class="selflink" id="section-3.2.4" href="#section-3.2.4">3.2.4</a>. Managing the Size of Clos Topology Tiers</span>
If a data center network size is small, it is possible to reduce the
number of switches in Tier 1 or Tier 2 of a Clos topology by a factor
of two. To understand how this could be done, take Tier 1 as an
example. Every Tier 2 device connects to a single group of Tier 1
devices. If half of the ports on each of the Tier 1 devices are not
being used, then it is possible to reduce the number of Tier 1
devices by half and simply map two uplinks from a Tier 2 device to
the same Tier 1 device that were previously mapped to different Tier
1 devices. This technique maintains the same bandwidth while
reducing the number of elements in Tier 1, thus saving on CAPEX. The
tradeoff, in this example, is the reduction of maximum DC size in
terms of overall server count by half.
In this example, Tier 2 devices will be using two parallel links to
connect to each Tier 1 device. If one of these links fails, the
other will pick up all traffic of the failed link, possibly resulting
in heavy congestion and quality of service degradation if the path
determination procedure does not take bandwidth amount into account,
since the number of upstream Tier 1 devices is likely wider than two.
To avoid this situation, parallel links can be grouped in link
aggregation groups (LAGs), e.g., [<a href="#ref-IEEE8023AD">IEEE8023AD</a>], with widely available
implementation settings that take the whole "bundle" down upon a
single link failure. Equivalent techniques that enforce "fate
sharing" on the parallel links can be used in place of LAGs to
achieve the same effect. As a result of such fate-sharing, traffic
from two or more failed links will be rebalanced over the multitude
of remaining paths that equals the number of Tier 1 devices. This
example is using two links for simplicity, having more links in a
bundle will have less impact on capacity upon a member-link failure.
<span class="grey">Lapukhov, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Data Center Routing Overview</span>
This section provides an overview of three general types of data
center protocol designs -- Layer 2 only, Hybrid Layer L2/L3, and
Layer 3 only.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. L2-Only Designs</span>
Originally, most data center designs used Spanning Tree Protocol
(STP) originally defined in [<a href="#ref-IEEE8021D-1990">IEEE8021D-1990</a>] for loop-free topology
creation, typically utilizing variants of the traditional DC topology
described in <a href="#section-3.1">Section 3.1</a>. At the time, many DC switches either did
not support Layer 3 routing protocols or supported them with
additional licensing fees, which played a part in the design choice.
Although many enhancements have been made through the introduction of
Rapid Spanning Tree Protocol (RSTP) in the latest revision of
[<a href="#ref-IEEE8021D-2004">IEEE8021D-2004</a>] and Multiple Spanning Tree Protocol (MST) specified
in [<a href="#ref-IEEE8021Q">IEEE8021Q</a>] that increase convergence, stability, and load-
balancing in larger topologies, many of the fundamentals of the
protocol limit its applicability in large-scale DCs. STP and its
newer variants use an active/standby approach to path selection, and
are therefore hard to deploy in horizontally scaled topologies as
described in <a href="#section-3.2">Section 3.2</a>. Further, operators have had many
experiences with large failures due to issues caused by improper
cabling, misconfiguration, or flawed software on a single device.
These failures regularly affected the entire spanning-tree domain and
were very hard to troubleshoot due to the nature of the protocol.
For these reasons, and since almost all DC traffic is now IP,
therefore requiring a Layer 3 routing protocol at the network edge
for external connectivity, designs utilizing STP usually fail all of
the requirements of large-scale DC operators. Various enhancements
to link-aggregation protocols such as [<a href="#ref-IEEE8023AD">IEEE8023AD</a>], generally known
as Multi-Chassis Link-Aggregation (M-LAG) made it possible to use
Layer 2 designs with active-active network paths while relying on STP
as the backup for loop prevention. The major downsides of this
approach are the lack of ability to scale linearly past two in most
implementations, lack of standards-based implementations, and the
added failure domain risk of syncing state between the devices.
It should be noted that building large, horizontally scalable,
L2-only networks without STP is possible recently through the
introduction of the Transparent Interconnection of Lots of Links
(TRILL) protocol in [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>]. TRILL resolves many of the issues STP
has for large-scale DC design however, due to the limited number of
implementations, and often the requirement for specific equipment
that supports it, this has limited its applicability and increased
the cost of such designs.
<span class="grey">Lapukhov, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
Finally, neither the base TRILL specification nor the M-LAG approach
totally eliminate the problem of the shared broadcast domain that is
so detrimental to the operations of any Layer 2, Ethernet-based
solution. Later TRILL extensions have been proposed to solve the
this problem statement, primarily based on the approaches outlined in
[<a href="./rfc7067" title=""Directory Assistance Problem and High-Level Design Proposal"">RFC7067</a>], but this even further limits the number of available
interoperable implementations that can be used to build a fabric.
Therefore, TRILL-based designs have issues meeting REQ2, REQ3, and
REQ4.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Hybrid L2/L3 Designs</span>
Operators have sought to limit the impact of data-plane faults and
build large-scale topologies through implementing routing protocols
in either the Tier 1 or Tier 2 parts of the network and dividing the
Layer 2 domain into numerous, smaller domains. This design has
allowed data centers to scale up, but at the cost of complexity in
managing multiple network protocols. For the following reasons,
operators have retained Layer 2 in either the access (Tier 3) or both
access and aggregation (Tier 3 and Tier 2) parts of the network:
o Supporting legacy applications that may require direct Layer 2
adjacency or use non-IP protocols.
o Seamless mobility for virtual machines that require the
preservation of IP addresses when a virtual machine moves to a
different Tier 3 switch.
o Simplified IP addressing = less IP subnets are required for the
data center.
o Application load balancing may require direct Layer 2 reachability
to perform certain functions such as Layer 2 Direct Server Return
(DSR). See [<a href="#ref-L3DSR" title=""L3DSR - Overcoming Layer 2 Limitations of Direct Server Return Load Balancing"">L3DSR</a>].
o Continued CAPEX differences between L2- and L3-capable switches.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. L3-Only Designs</span>
Network designs that leverage IP routing down to Tier 3 of the
network have gained popularity as well. The main benefit of these
designs is improved network stability and scalability, as a result of
confining L2 broadcast domains. Commonly, an Interior Gateway
Protocol (IGP) such as Open Shortest Path First (OSPF) [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>] is
used as the primary routing protocol in such a design. As data
centers grow in scale, and server count exceeds tens of thousands,
such fully routed designs have become more attractive.
<span class="grey">Lapukhov, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
Choosing a L3-only design greatly simplifies the network,
facilitating the meeting of REQ1 and REQ2, and has widespread
adoption in networks where large Layer 2 adjacency and larger size
Layer 3 subnets are not as critical compared to network scalability
and stability. Application providers and network operators continue
to develop new solutions to meet some of the requirements that
previously had driven large Layer 2 domains by using various overlay
or tunneling techniques.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Routing Protocol Design</span>
In this section, the motivations for using External BGP (EBGP) as the
single routing protocol for data center networks having a Layer 3
protocol design and Clos topology are reviewed. Then, a practical
approach for designing an EBGP-based network is provided.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Choosing EBGP as the Routing Protocol</span>
REQ2 would give preference to the selection of a single routing
protocol to reduce complexity and interdependencies. While it is
common to rely on an IGP in this situation, sometimes with either the
addition of EBGP at the device bordering the WAN or Internal BGP
(IBGP) throughout, this document proposes the use of an EBGP-only
design.
Although EBGP is the protocol used for almost all Inter-Domain
Routing in the Internet and has wide support from both vendor and
service provider communities, it is not generally deployed as the
primary routing protocol within the data center for a number of
reasons (some of which are interrelated):
o BGP is perceived as a "WAN-only, protocol-only" and not often
considered for enterprise or data center applications.
o BGP is believed to have a "much slower" routing convergence
compared to IGPs.
o Large-scale BGP deployments typically utilize an IGP for BGP next-
hop resolution as all nodes in the IBGP topology are not directly
connected.
o BGP is perceived to require significant configuration overhead and
does not support neighbor auto-discovery.
<span class="grey">Lapukhov, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
This document discusses some of these perceptions, especially as
applicable to the proposed design, and highlights some of the
advantages of using the protocol such as:
o BGP has less complexity in parts of its protocol design --
internal data structures and state machine are simpler as compared
to most link-state IGPs such as OSPF. For example, instead of
implementing adjacency formation, adjacency maintenance and/or
flow-control, BGP simply relies on TCP as the underlying
transport. This fulfills REQ2 and REQ3.
o BGP information flooding overhead is less when compared to link-
state IGPs. Since every BGP router calculates and propagates only
the best-path selected, a network failure is masked as soon as the
BGP speaker finds an alternate path, which exists when highly
symmetric topologies, such as Clos, are coupled with an EBGP-only
design. In contrast, the event propagation scope of a link-state
IGP is an entire area, regardless of the failure type. In this
way, BGP better meets REQ3 and REQ4. It is also worth mentioning
that all widely deployed link-state IGPs feature periodic
refreshes of routing information while BGP does not expire routing
state, although this rarely impacts modern router control planes.
o BGP supports third-party (recursively resolved) next hops. This
allows for manipulating multipath to be non-ECMP-based or
forwarding-based on application-defined paths, through
establishment of a peering session with an application
"controller" that can inject routing information into the system,
satisfying REQ5. OSPF provides similar functionality using
concepts such as "Forwarding Address", but with more difficulty in
implementation and far less control of information propagation
scope.
o Using a well-defined Autonomous System Number (ASN) allocation
scheme and standard AS_PATH loop detection, "BGP path hunting"
(see [<a href="#ref-JAKMA2008">JAKMA2008</a>]) can be controlled and complex unwanted paths
will be ignored. See <a href="#section-5.2">Section 5.2</a> for an example of a working ASN
allocation scheme. In a link-state IGP, accomplishing the same
goal would require multi-(instance/topology/process) support,
typically not available in all DC devices and quite complex to
configure and troubleshoot. Using a traditional single flooding
domain, which most DC designs utilize, under certain failure
conditions may pick up unwanted lengthy paths, e.g., traversing
multiple Tier 2 devices.
<span class="grey">Lapukhov, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
o EBGP configuration that is implemented with minimal routing policy
is easier to troubleshoot for network reachability issues. In
most implementations, it is straightforward to view contents of
the BGP Loc-RIB and compare it to the router's Routing Information
Base (RIB). Also, in most implementations, an operator can view
every BGP neighbors Adj-RIB-In and Adj-RIB-Out structures, and
therefore incoming and outgoing Network Layer Reachability
Information (NLRI) information can be easily correlated on both
sides of a BGP session. Thus, BGP satisfies REQ3.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. EBGP Configuration for Clos Topology</span>
Clos topologies that have more than 5 stages are very uncommon due to
the large numbers of interconnects required by such a design.
Therefore, the examples below are made with reference to the 5-stage
Clos topology (in unfolded state).
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. EBGP Configuration Guidelines and Example ASN Scheme</span>
The diagram below illustrates an example of an ASN allocation scheme.
The following is a list of guidelines that can be used:
o EBGP single-hop sessions are established over direct point-to-
point links interconnecting the network nodes, no multi-hop or
loopback sessions are used, even in the case of multiple links
between the same pair of nodes.
o Private Use ASNs from the range 64512-65534 are used to avoid ASN
conflicts.
o A single ASN is allocated to all of the Clos topology's Tier 1
devices.
o A unique ASN is allocated to each set of Tier 2 devices in the
same cluster.
o A unique ASN is allocated to every Tier 3 device (e.g., ToR) in
this topology.
<span class="grey">Lapukhov, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
ASN 65534
+---------+
| +-----+ |
| | | |
+-|-| |-|-+
| | +-----+ | |
ASN 646XX | | | | ASN 646XX
+---------+ | | | | +---------+
| +-----+ | | | +-----+ | | | +-----+ |
+-----------|-| |-|-+-|-| |-|-+-|-| |-|-----------+
| +---|-| |-|-+ | | | | +-|-| |-|---+ |
| | | +-----+ | | +-----+ | | +-----+ | | |
| | | | | | | | | |
| | | | | | | | | |
| | | +-----+ | | +-----+ | | +-----+ | | |
| +-----+---|-| |-|-+ | | | | +-|-| |-|---+-----+ |
| | | +-|-| |-|-+-|-| |-|-+-|-| |-|-+ | | |
| | | | | +-----+ | | | +-----+ | | | +-----+ | | | | |
| | | | +---------+ | | | | +---------+ | | | |
| | | | | | | | | | | |
+-----+ +-----+ | | +-----+ | | +-----+ +-----+
| ASN | | | +-|-| |-|-+ | | | |
|65YYY| | ... | | | | | | ... | | ... |
+-----+ +-----+ | +-----+ | +-----+ +-----+
| | | | +---------+ | | | |
O O O O <- Servers -> O O O O
Figure 4: BGP ASN Layout for 5-Stage Clos
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>. Private Use ASNs</span>
The original range of Private Use ASNs [<a href="./rfc6996" title=""Autonomous System (AS) Reservation for Private Use"">RFC6996</a>] limited operators to
1023 unique ASNs. Since it is quite likely that the number of
network devices may exceed this number, a workaround is required.
One approach is to re-use the ASNs assigned to the Tier 3 devices
across different clusters. For example, Private Use ASNs 65001,
65002 ... 65032 could be used within every individual cluster and
assigned to Tier 3 devices.
To avoid route suppression due to the AS_PATH loop detection
mechanism in BGP, upstream EBGP sessions on Tier 3 devices must be
configured with the "Allowas-in" feature [<a href="#ref-ALLOWASIN">ALLOWASIN</a>] that allows
accepting a device's own ASN in received route advertisements.
Although this feature is not standardized, it is widely available
across multiple vendors implementations. Introducing this feature
does not make routing loops more likely in the design since the
AS_PATH is being added to by routers at each of the topology tiers
and AS_PATH length is an early tie breaker in the BGP path selection
<span class="grey">Lapukhov, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
process. Further loop protection is still in place at the Tier 1
device, which will not accept routes with a path including its own
ASN. Tier 2 devices do not have direct connectivity with each other.
Another solution to this problem would be to use Four-Octet ASNs
([<a href="./rfc6793" title=""BGP Support for Four-Octet Autonomous System (AS) Number Space"">RFC6793</a>]), where there are additional Private Use ASNs available,
see [<a href="#ref-IANA.AS" title=""Autonomous System (AS) Numbers"">IANA.AS</a>]. Use of Four-Octet ASNs puts additional protocol
complexity in the BGP implementation and should be balanced against
the complexity of re-use when considering REQ3 and REQ4. Perhaps
more importantly, they are not yet supported by all BGP
implementations, which may limit vendor selection of DC equipment.
When supported, ensure that deployed implementations are able to
remove the Private Use ASNs when external connectivity
(<a href="#section-5.2.4">Section 5.2.4</a>) to these ASNs is required.
<span class="h4"><a class="selflink" id="section-5.2.3" href="#section-5.2.3">5.2.3</a>. Prefix Advertisement</span>
A Clos topology features a large number of point-to-point links and
associated prefixes. Advertising all of these routes into BGP may
create Forwarding Information Base (FIB) overload in the network
devices. Advertising these links also puts additional path
computation stress on the BGP control plane for little benefit.
There are two possible solutions:
o Do not advertise any of the point-to-point links into BGP. Since
the EBGP-based design changes the next-hop address at every
device, distant networks will automatically be reachable via the
advertising EBGP peer and do not require reachability to these
prefixes. However, this may complicate operations or monitoring:
e.g., using the popular "traceroute" tool will display IP
addresses that are not reachable.
o Advertise point-to-point links, but summarize them on every
device. This requires an address allocation scheme such as
allocating a consecutive block of IP addresses per Tier 1 and Tier
2 device to be used for point-to-point interface addressing to the
lower layers (Tier 2 uplinks will be allocated from Tier 1 address
blocks and so forth).
Server subnets on Tier 3 devices must be announced into BGP without
using route summarization on Tier 2 and Tier 1 devices. Summarizing
subnets in a Clos topology results in route black-holing under a
single link failure (e.g., between Tier 2 and Tier 3 devices), and
hence must be avoided. The use of peer links within the same tier to
resolve the black-holing problem by providing "bypass paths" is
undesirable due to O(N^2) complexity of the peering-mesh and waste of
ports on the devices. An alternative to the full mesh of peer links
would be to use a simpler bypass topology, e.g., a "ring" as
<span class="grey">Lapukhov, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
described in [<a href="#ref-FB4POST" title=""Facebook's Data Center Network Architecture"">FB4POST</a>], but such a topology adds extra hops and has
limited bandwidth. It may require special tweaks to make BGP routing
work, e.g., splitting every device into an ASN of its own. Later in
this document, <a href="#section-8.2">Section 8.2</a> introduces a less intrusive method for
performing a limited form of route summarization in Clos networks and
discusses its associated tradeoffs.
<span class="h4"><a class="selflink" id="section-5.2.4" href="#section-5.2.4">5.2.4</a>. External Connectivity</span>
A dedicated cluster (or clusters) in the Clos topology could be used
for the purpose of connecting to the Wide Area Network (WAN) edge
devices, or WAN Routers. Tier 3 devices in such a cluster would be
replaced with WAN routers, and EBGP peering would be used again,
though WAN routers are likely to belong to a public ASN if Internet
connectivity is required in the design. The Tier 2 devices in such a
dedicated cluster will be referred to as "Border Routers" in this
document. These devices have to perform a few special functions:
o Hide network topology information when advertising paths to WAN
routers, i.e., remove Private Use ASNs [<a href="./rfc6996" title=""Autonomous System (AS) Reservation for Private Use"">RFC6996</a>] from the AS_PATH
attribute. This is typically done to avoid ASN number collisions
between different data centers and also to provide a uniform
AS_PATH length to the WAN for purposes of WAN ECMP to anycast
prefixes originated in the topology. An implementation-specific
BGP feature typically called "Remove Private AS" is commonly used
to accomplish this. Depending on implementation, the feature
should strip a contiguous sequence of Private Use ASNs found in an
AS_PATH attribute prior to advertising the path to a neighbor.
This assumes that all ASNs used for intra data center numbering
are from the Private Use ranges. The process for stripping the
Private Use ASNs is not currently standardized, see [<a href="#ref-REMOVAL" title=""Private Autonomous System (AS) Removal Requirements"">REMOVAL</a>].
However, most implementations at least follow the logic described
in this vendor's document [<a href="#ref-VENDOR-REMOVE-PRIVATE-AS">VENDOR-REMOVE-PRIVATE-AS</a>], which is
enough for the design specified.
o Originate a default route to the data center devices. This is the
only place where a default route can be originated, as route
summarization is risky for the unmodified Clos topology.
Alternatively, Border Routers may simply relay the default route
learned from WAN routers. Advertising the default route from
Border Routers requires that all Border Routers be fully connected
to the WAN Routers upstream, to provide resistance to a single-
link failure causing the black-holing of traffic. To prevent
black-holing in the situation when all of the EBGP sessions to the
WAN routers fail simultaneously on a given device, it is more
desirable to readvertise the default route rather than originating
the default route via complicated conditional route origination
schemes provided by some implementations [<a href="#ref-CONDITIONALROUTE">CONDITIONALROUTE</a>].
<span class="grey">Lapukhov, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h4"><a class="selflink" id="section-5.2.5" href="#section-5.2.5">5.2.5</a>. Route Summarization at the Edge</span>
It is often desirable to summarize network reachability information
prior to advertising it to the WAN network due to the high amount of
IP prefixes originated from within the data center in a fully routed
network design. For example, a network with 2000 Tier 3 devices will
have at least 2000 servers subnets advertised into BGP, along with
the infrastructure prefixes. However, as discussed in <a href="#section-5.2.3">Section 5.2.3</a>,
the proposed network design does not allow for route summarization
due to the lack of peer links inside every tier.
However, it is possible to lift this restriction for the Border
Routers by devising a different connectivity model for these devices.
There are two options possible:
o Interconnect the Border Routers using a full-mesh of physical
links or using any other "peer-mesh" topology, such as ring or
hub-and-spoke. Configure BGP accordingly on all Border Leafs to
exchange network reachability information, e.g., by adding a mesh
of IBGP sessions. The interconnecting peer links need to be
appropriately sized for traffic that will be present in the case
of a device or link failure in the mesh connecting the Border
Routers.
o Tier 1 devices may have additional physical links provisioned
toward the Border Routers (which are Tier 2 devices from the
perspective of Tier 1). Specifically, if protection from a single
link or node failure is desired, each Tier 1 device would have to
connect to at least two Border Routers. This puts additional
requirements on the port count for Tier 1 devices and Border
Routers, potentially making it a nonuniform, larger port count,
device compared with the other devices in the Clos. This also
reduces the number of ports available to "regular" Tier 2
switches, and hence the number of clusters that could be
interconnected via Tier 1.
If any of the above options are implemented, it is possible to
perform route summarization at the Border Routers toward the WAN
network core without risking a routing black-hole condition under a
single link failure. Both of the options would result in nonuniform
topology as additional links have to be provisioned on some network
devices.
<span class="grey">Lapukhov, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. ECMP Considerations</span>
This section covers the Equal Cost Multipath (ECMP) functionality for
Clos topology and discusses a few special requirements.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Basic ECMP</span>
ECMP is the fundamental load-sharing mechanism used by a Clos
topology. Effectively, every lower-tier device will use all of its
directly attached upper-tier devices to load-share traffic destined
to the same IP prefix. The number of ECMP paths between any two Tier
3 devices in Clos topology is equal to the number of the devices in
the middle stage (Tier 1). For example, Figure 5 illustrates a
topology where Tier 3 device A has four paths to reach servers X and
Y, via Tier 2 devices B and C and then Tier 1 devices 1, 2, 3, and 4,
respectively.
Tier 1
+-----+
| DEV |
+->| 1 |--+
| +-----+ |
Tier 2 | | Tier 2
+-----+ | +-----+ | +-----+
+------------>| DEV |--+->| DEV |--+--| |-------------+
| +-----| B |--+ | 2 | +--| |-----+ |
| | +-----+ +-----+ +-----+ | |
| | | |
| | +-----+ +-----+ +-----+ | |
| +-----+---->| DEV |--+ | DEV | +--| |-----+-----+ |
| | | +---| C |--+->| 3 |--+--| |---+ | | |
| | | | +-----+ | +-----+ | +-----+ | | | |
| | | | | | | | | |
+-----+ +-----+ | +-----+ | +-----+ +-----+
| DEV | | | Tier 3 +->| DEV |--+ Tier 3 | | | |
| A | | | | 4 | | | | |
+-----+ +-----+ +-----+ +-----+ +-----+
| | | | | | | |
O O O O <- Servers -> X Y O O
Figure 5: ECMP Fan-Out Tree from A to X and Y
The ECMP requirement implies that the BGP implementation must support
multipath fan-out for up to the maximum number of devices directly
attached at any point in the topology in the upstream or downstream
direction. Normally, this number does not exceed half of the ports
found on a device in the topology. For example, an ECMP fan-out of
32 would be required when building a Clos network using 64-port
<span class="grey">Lapukhov, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
devices. The Border Routers may need to have wider fan-out to be
able to connect to a multitude of Tier 1 devices if route
summarization at Border Router level is implemented as described in
<a href="#section-5.2.5">Section 5.2.5</a>. If a device's hardware does not support wider ECMP,
logical link-grouping (link-aggregation at Layer 2) could be used to
provide "hierarchical" ECMP (Layer 3 ECMP coupled with Layer 2 ECMP)
to compensate for fan-out limitations. However, this approach
increases the risk of flow polarization, as less entropy will be
available at the second stage of ECMP.
Most BGP implementations declare paths to be equal from an ECMP
perspective if they match up to and including step (e) in
<a href="./rfc4271#section-9.1.2.2">Section 9.1.2.2 of [RFC4271]</a>. In the proposed network design there
is no underlying IGP, so all IGP costs are assumed to be zero or
otherwise the same value across all paths and policies may be applied
as necessary to equalize BGP attributes that vary in vendor defaults,
such as the MULTI_EXIT_DISC (MED) attribute and origin code. For
historical reasons, it is also useful to not use 0 as the equalized
MED value; this and some other useful BGP information is available in
[<a href="./rfc4277" title=""Experience with the BGP-4 Protocol"">RFC4277</a>]. Routing loops are unlikely due to the BGP best-path
selection process (which prefers shorter AS_PATH length), and longer
paths through the Tier 1 devices (which don't allow their own ASN in
the path) are not possible.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. BGP ECMP over Multiple ASNs</span>
For application load-balancing purposes, it is desirable to have the
same prefix advertised from multiple Tier 3 devices. From the
perspective of other devices, such a prefix would have BGP paths with
different AS_PATH attribute values, while having the same AS_PATH
attribute lengths. Therefore, BGP implementations must support load-
sharing over the above-mentioned paths. This feature is sometimes
known as "multipath relax" or "multipath multiple-AS" and effectively
allows for ECMP to be done across different neighboring ASNs if all
other attributes are equal as already described in the previous
section.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Weighted ECMP</span>
It may be desirable for the network devices to implement "weighted"
ECMP, to be able to send more traffic over some paths in ECMP fan-
out. This could be helpful to compensate for failures in the network
and send more traffic over paths that have more capacity. The
prefixes that require weighted ECMP would have to be injected using
remote BGP speaker (central agent) over a multi-hop session as
described further in <a href="#section-8.1">Section 8.1</a>. If support in implementations is
available, weight distribution for multiple BGP paths could be
signaled using the technique described in [<a href="#ref-LINK" title=""BGP Link Bandwidth Extended Community"">LINK</a>].
<span class="grey">Lapukhov, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Consistent Hashing</span>
It is often desirable to have the hashing function used for ECMP to
be consistent (see [<a href="#ref-CONS-HASH">CONS-HASH</a>]), to minimize the impact on flow to
next-hop affinity changes when a next hop is added or removed to an
ECMP group. This could be used if the network device is used as a
load balancer, mapping flows toward multiple destinations -- in this
case, losing or adding a destination will not have a detrimental
effect on currently established flows. One particular recommendation
on implementing consistent hashing is provided in [<a href="./rfc2992" title=""Analysis of an Equal-Cost Multi-Path Algorithm"">RFC2992</a>], though
other implementations are possible. This functionality could be
naturally combined with weighted ECMP, with the impact of the next
hop changes being proportional to the weight of the given next hop.
The downside of consistent hashing is increased load on hardware
resource utilization, as typically more resources (e.g., Ternary
Content-Addressable Memory (TCAM) space) are required to implement a
consistent-hashing function.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Routing Convergence Properties</span>
This section reviews routing convergence properties in the proposed
design. A case is made that sub-second convergence is achievable if
the implementation supports fast EBGP peering session deactivation
and timely RIB and FIB updates upon failure of the associated link.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Fault Detection Timing</span>
BGP typically relies on an IGP to route around link/node failures
inside an AS, and implements either a polling-based or an event-
driven mechanism to obtain updates on IGP state changes. The
proposed routing design does not use an IGP, so the remaining
mechanisms that could be used for fault detection are BGP keep-alive
time-out (or any other type of keep-alive mechanism) and link-failure
triggers.
Relying solely on BGP keep-alive packets may result in high
convergence delays, on the order of multiple seconds (on many BGP
implementations the minimum configurable BGP hold timer value is
three seconds). However, many BGP implementations can shut down
local EBGP peering sessions in response to the "link down" event for
the outgoing interface used for BGP peering. This feature is
sometimes called "fast fallover". Since links in modern data centers
are predominantly point-to-point fiber connections, a physical
interface failure is often detected in milliseconds and subsequently
triggers a BGP reconvergence.
<span class="grey">Lapukhov, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
Ethernet links may support failure signaling or detection standards
such as Connectivity Fault Management (CFM) as described in
[<a href="#ref-IEEE8021Q">IEEE8021Q</a>]; this may make failure detection more robust.
Alternatively, some platforms may support Bidirectional Forwarding
Detection (BFD) [<a href="./rfc5880" title=""Bidirectional Forwarding Detection (BFD)"">RFC5880</a>] to allow for sub-second failure detection
and fault signaling to the BGP process. However, the use of either
of these presents additional requirements to vendor software and
possibly hardware, and may contradict REQ1. Until recently with
[<a href="./rfc7130" title=""Bidirectional Forwarding Detection (BFD) on Link Aggregation Group (LAG) Interfaces"">RFC7130</a>], BFD also did not allow detection of a single member link
failure on a LAG, which would have limited its usefulness in some
designs.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Event Propagation Timing</span>
In the proposed design, the impact of the BGP
MinRouteAdvertisementIntervalTimer (MRAI timer), as specified in
<a href="./rfc4271#section-9.2.1.1">Section 9.2.1.1 of [RFC4271]</a>, should be considered. Per the
standard, it is required for BGP implementations to space out
consecutive BGP UPDATE messages by at least MRAI seconds, which is
often a configurable value. The initial BGP UPDATE messages after an
event carrying withdrawn routes are commonly not affected by this
timer. The MRAI timer may present significant convergence delays
when a BGP speaker "waits" for the new path to be learned from its
peers and has no local backup path information.
In a Clos topology, each EBGP speaker typically has either one path
(Tier 2 devices don't accept paths from other Tier 2 in the same
cluster due to same ASN) or N paths for the same prefix, where N is a
significantly large number, e.g., N=32 (the ECMP fan-out to the next
tier). Therefore, if a link fails to another device from which a
path is received there is either no backup path at all (e.g., from
the perspective of a Tier 2 switch losing the link to a Tier 3
device), or the backup is readily available in BGP Loc-RIB (e.g.,
from the perspective of a Tier 2 device losing the link to a Tier 1
switch). In the former case, the BGP withdrawal announcement will
propagate without delay and trigger reconvergence on affected
devices. In the latter case, the best path will be re-evaluated, and
the local ECMP group corresponding to the new next-hop set will be
changed. If the BGP path was the best path selected previously, an
"implicit withdraw" will be sent via a BGP UPDATE message as
described as Option b in <a href="./rfc4271#section-3.1">Section 3.1 of [RFC4271]</a> due to the BGP
AS_PATH attribute changing.
<span class="grey">Lapukhov, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Impact of Clos Topology Fan-Outs</span>
Clos topology has large fan-outs, which may impact the "Up->Down"
convergence in some cases, as described in this section. In a
situation when a link between Tier 3 and Tier 2 device fails, the
Tier 2 device will send BGP UPDATE messages to all upstream Tier 1
devices, withdrawing the affected prefixes. The Tier 1 devices, in
turn, will relay these messages to all downstream Tier 2 devices
(except for the originator). Tier 2 devices other than the one
originating the UPDATE should then wait for ALL upstream Tier 1
devices to send an UPDATE message before removing the affected
prefixes and sending corresponding UPDATE downstream to connected
Tier 3 devices. If the original Tier 2 device or the relaying Tier 1
devices introduce some delay into their UPDATE message announcements,
the result could be UPDATE message "dispersion", that could be as
long as multiple seconds. In order to avoid such a behavior, BGP
implementations must support "update groups". The "update group" is
defined as a collection of neighbors sharing the same outbound policy
-- the local speaker will send BGP updates to the members of the
group synchronously.
The impact of such "dispersion" grows with the size of topology fan-
out and could also grow under network convergence churn. Some
operators may be tempted to introduce "route flap dampening" type
features that vendors include to reduce the control-plane impact of
rapidly flapping prefixes. However, due to issues described with
false positives in these implementations especially under such
"dispersion" events, it is not recommended to enable this feature in
this design. More background and issues with "route flap dampening"
and possible implementation changes that could affect this are well
described in [<a href="./rfc7196" title=""Making Route Flap Damping Usable"">RFC7196</a>].
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a>. Failure Impact Scope</span>
A network is declared to converge in response to a failure once all
devices within the failure impact scope are notified of the event and
have recalculated their RIBs and consequently updated their FIBs.
Larger failure impact scope typically means slower convergence since
more devices have to be notified, and results in a less stable
network. In this section, we describe BGP's advantages over link-
state routing protocols in reducing failure impact scope for a Clos
topology.
BGP behaves like a distance-vector protocol in the sense that only
the best path from the point of view of the local router is sent to
neighbors. As such, some failures are masked if the local node can
immediately find a backup path and does not have to send any updates
further. Notice that in the worst case, all devices in a data center
<span class="grey">Lapukhov, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
topology have to either withdraw a prefix completely or update the
ECMP groups in their FIBs. However, many failures will not result in
such a wide impact. There are two main failure types where impact
scope is reduced:
o Failure of a link between Tier 2 and Tier 1 devices: In this case,
a Tier 2 device will update the affected ECMP groups, removing the
failed link. There is no need to send new information to
downstream Tier 3 devices, unless the path was selected as best by
the BGP process, in which case only an "implicit withdraw" needs
to be sent and this should not affect forwarding. The affected
Tier 1 device will lose the only path available to reach a
particular cluster and will have to withdraw the associated
prefixes. Such a prefix withdrawal process will only affect Tier
2 devices directly connected to the affected Tier 1 device. The
Tier 2 devices receiving the BGP UPDATE messages withdrawing
prefixes will simply have to update their ECMP groups. The Tier 3
devices are not involved in the reconvergence process.
o Failure of a Tier 1 device: In this case, all Tier 2 devices
directly attached to the failed node will have to update their
ECMP groups for all IP prefixes from a non-local cluster. The
Tier 3 devices are once again not involved in the reconvergence
process, but may receive "implicit withdraws" as described above.
Even in the case of such failures where multiple IP prefixes will
have to be reprogrammed in the FIB, it is worth noting that all of
these prefixes share a single ECMP group on a Tier 2 device.
Therefore, in the case of implementations with a hierarchical FIB,
only a single change has to be made to the FIB. "Hierarchical FIB"
here means FIB structure where the next-hop forwarding information is
stored separately from the prefix lookup table, and the latter only
stores pointers to the respective forwarding information. See
[<a href="#ref-BGP-PIC" title=""BGP Prefix Independent Convergence"">BGP-PIC</a>] for discussion of FIB hierarchies and fast convergence.
Even though BGP offers reduced failure scope for some cases, further
reduction of the fault domain using summarization is not always
possible with the proposed design, since using this technique may
create routing black-holes as mentioned previously. Therefore, the
worst failure impact scope on the control plane is the network as a
whole -- for instance, in the case of a link failure between Tier 2
and Tier 3 devices. The amount of impacted prefixes in this case
would be much less than in the case of a failure in the upper layers
of a Clos network topology. The property of having such large
failure scope is not a result of choosing EBGP in the design but
rather a result of using the Clos topology.
<span class="grey">Lapukhov, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h3"><a class="selflink" id="section-7.5" href="#section-7.5">7.5</a>. Routing Micro-Loops</span>
When a downstream device, e.g., Tier 2 device, loses all paths for a
prefix, it normally has the default route pointing toward the
upstream device -- in this case, the Tier 1 device. As a result, it
is possible to get in the situation where a Tier 2 switch loses a
prefix, but a Tier 1 switch still has the path pointing to the Tier 2
device; this results in a transient micro-loop, since the Tier 1
switch will keep passing packets to the affected prefix back to the
Tier 2 device, and the Tier 2 will bounce them back again using the
default route. This micro-loop will last for the time it takes the
upstream device to fully update its forwarding tables.
To minimize impact of such micro-loops, Tier 2 and Tier 1 switches
can be configured with static "discard" or "null" routes that will be
more specific than the default route for prefixes missing during
network convergence. For Tier 2 switches, the discard route should
be a summary route, covering all server subnets of the underlying
Tier 3 devices. For Tier 1 devices, the discard route should be a
summary covering the server IP address subnets allocated for the
whole data center. Those discard routes will only take precedence
for the duration of network convergence, until the device learns a
more specific prefix via a new path.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Additional Options for Design</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Third-Party Route Injection</span>
BGP allows for a "third-party", i.e., a directly attached BGP
speaker, to inject routes anywhere in the network topology, meeting
REQ5. This can be achieved by peering via a multi-hop BGP session
with some or even all devices in the topology. Furthermore, BGP
diverse path distribution [<a href="./rfc6774" title=""Distribution of Diverse BGP Paths"">RFC6774</a>] could be used to inject multiple
BGP next hops for the same prefix to facilitate load balancing, or
using the BGP ADD-PATH capability [<a href="./rfc7911" title=""Advertisement of Multiple Paths in BGP"">RFC7911</a>] if supported by the
implementation. Unfortunately, in many implementations, ADD-PATH has
been found to only support IBGP properly in the use cases for which
it was originally optimized; this limits the "third-party" peering to
IBGP only.
To implement route injection in the proposed design, a third-party
BGP speaker may peer with Tier 3 and Tier 1 switches, injecting the
same prefix, but using a special set of BGP next hops for Tier 1
devices. Those next hops are assumed to resolve recursively via BGP,
and could be, for example, IP addresses on Tier 3 devices. The
resulting forwarding table programming could provide desired traffic
proportion distribution among different clusters.
<span class="grey">Lapukhov, et al. Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Route Summarization within Clos Topology</span>
As mentioned previously, route summarization is not possible within
the proposed Clos topology since it makes the network susceptible to
route black-holing under single link failures. The main problem is
the limited number of redundant paths between network elements, e.g.,
there is only a single path between any pair of Tier 1 and Tier 3
devices. However, some operators may find route aggregation
desirable to improve control-plane stability.
If any technique to summarize within the topology is planned,
modeling of the routing behavior and potential for black-holing
should be done not only for single or multiple link failures, but
also for fiber pathway failures or optical domain failures when the
topology extends beyond a physical location. Simple modeling can be
done by checking the reachability on devices doing summarization
under the condition of a link or pathway failure between a set of
devices in every tier as well as to the WAN routers when external
connectivity is present.
Route summarization would be possible with a small modification to
the network topology, though the tradeoff would be reduction of the
total size of the network as well as network congestion under
specific failures. This approach is very similar to the technique
described above, which allows Border Routers to summarize the entire
data center address space.
<span class="h4"><a class="selflink" id="section-8.2.1" href="#section-8.2.1">8.2.1</a>. Collapsing Tier 1 Devices Layer</span>
In order to add more paths between Tier 1 and Tier 3 devices, group
Tier 2 devices into pairs, and then connect the pairs to the same
group of Tier 1 devices. This is logically equivalent to
"collapsing" Tier 1 devices into a group of half the size, merging
the links on the "collapsed" devices. The result is illustrated in
Figure 6. For example, in this topology DEV C and DEV D connect to
the same set of Tier 1 devices (DEV 1 and DEV 2), whereas before they
were connecting to different groups of Tier 1 devices.
<span class="grey">Lapukhov, et al. Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
Tier 2 Tier 1 Tier 2
+-----+ +-----+ +-----+
+-------------| DEV |------| DEV |------| |-------------+
| +-----| C |--++--| 1 |--++--| |-----+ |
| | +-----+ || +-----+ || +-----+ | |
| | || || | |
| | +-----+ || +-----+ || +-----+ | |
| +-----+-----| DEV |--++--| DEV |--++--| |-----+-----+ |
| | | +---| D |------| 2 |------| |---+ | | |
| | | | +-----+ +-----+ +-----+ | | | |
| | | | | | | |
+-----+ +-----+ +-----+ +-----+
| DEV | | DEV | | | | |
| A | | B | Tier 3 Tier 3 | | | |
+-----+ +-----+ +-----+ +-----+
| | | | | | | |
O O O O <- Servers -> O O O O
Figure 6: 5-Stage Clos Topology
Having this design in place, Tier 2 devices may be configured to
advertise only a default route down to Tier 3 devices. If a link
between Tier 2 and Tier 3 fails, the traffic will be re-routed via
the second available path known to a Tier 2 switch. It is still not
possible to advertise a summary route covering prefixes for a single
cluster from Tier 2 devices since each of them has only a single path
down to this prefix. It would require dual-homed servers to
accomplish that. Also note that this design is only resilient to
single link failures. It is possible for a double link failure to
isolate a Tier 2 device from all paths toward a specific Tier 3
device, thus causing a routing black-hole.
A result of the proposed topology modification would be a reduction
of the port capacity of Tier 1 devices. This limits the maximum
number of attached Tier 2 devices, and therefore will limit the
maximum DC network size. A larger network would require different
Tier 1 devices that have higher port density to implement this
change.
Another problem is traffic rebalancing under link failures. Since
there are two paths from Tier 1 to Tier 3, a failure of the link
between Tier 1 and Tier 2 switch would result in all traffic that was
taking the failed link to switch to the remaining path. This will
result in doubling the link utilization on the remaining link.
<span class="grey">Lapukhov, et al. Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h4"><a class="selflink" id="section-8.2.2" href="#section-8.2.2">8.2.2</a>. Simple Virtual Aggregation</span>
A completely different approach to route summarization is possible,
provided that the main goal is to reduce the FIB size, while allowing
the control plane to disseminate full routing information. Firstly,
it could be easily noted that in many cases multiple prefixes, some
of which are less specific, share the same set of the next hops (same
ECMP group). For example, from the perspective of Tier 3 devices,
all routes learned from upstream Tier 2 devices, including the
default route, will share the same set of BGP next hops, provided
that there are no failures in the network. This makes it possible to
use the technique similar to that described in [<a href="./rfc6769" title=""Simple Virtual Aggregation (S-VA)"">RFC6769</a>] and only
install the least specific route in the FIB, ignoring more specific
routes if they share the same next-hop set. For example, under
normal network conditions, only the default route needs to be
programmed into the FIB.
Furthermore, if the Tier 2 devices are configured with summary
prefixes covering all of their attached Tier 3 device's prefixes, the
same logic could be applied in Tier 1 devices as well and, by
induction to Tier 2/Tier 3 switches in different clusters. These
summary routes should still allow for more specific prefixes to leak
to Tier 1 devices, to enable detection of mismatches in the next-hop
sets if a particular link fails, thus changing the next-hop set for a
specific prefix.
Restating once again, this technique does not reduce the amount of
control-plane state (i.e., BGP UPDATEs, BGP Loc-RIB size), but only
allows for more efficient FIB utilization, by detecting more specific
prefixes that share their next-hop set with a subsuming less specific
prefix.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. ICMP Unreachable Message Masquerading</span>
This section discusses some operational aspects of not advertising
point-to-point link subnets into BGP, as previously identified as an
option in <a href="#section-5.2.3">Section 5.2.3</a>. The operational impact of this decision
could be seen when using the well-known "traceroute" tool.
Specifically, IP addresses displayed by the tool will be the link's
point-to-point addresses, and hence will be unreachable for
management connectivity. This makes some troubleshooting more
complicated.
One way to overcome this limitation is by using the DNS subsystem to
create the "reverse" entries for these point-to-point IP addresses
pointing to the same name as the loopback address. The connectivity
then can be made by resolving this name to the "primary" IP address
<span class="grey">Lapukhov, et al. Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
of the device, e.g., its Loopback interface, which is always
advertised into BGP. However, this creates a dependency on the DNS
subsystem, which may be unavailable during an outage.
Another option is to make the network device perform IP address
masquerading, that is, rewriting the source IP addresses of the
appropriate ICMP messages sent by the device with the "primary" IP
address of the device. Specifically, the ICMP Destination
Unreachable Message (type 3) code 3 (port unreachable) and ICMP Time
Exceeded (type 11) code 0 are required for correct operation of the
"traceroute" tool. With this modification, the "traceroute" probes
sent to the devices will always be sent back with the "primary" IP
address as the source, allowing the operator to discover the
"reachable" IP address of the box. This has the downside of hiding
the address of the "entry point" into the device. If the devices
support [<a href="./rfc5837" title=""Extending ICMP for Interface and Next-Hop Identification"">RFC5837</a>], this may allow the best of both worlds by
providing the information about the incoming interface even if the
return address is the "primary" IP address.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Security Considerations</span>
The design does not introduce any additional security concerns.
General BGP security considerations are discussed in [<a href="./rfc4271" title=""A Border Gateway Protocol 4 (BGP-4)"">RFC4271</a>] and
[<a href="./rfc4272" title=""BGP Security Vulnerabilities Analysis"">RFC4272</a>]. Since a DC is a single-operator domain, this document
assumes that edge filtering is in place to prevent attacks against
the BGP sessions themselves from outside the perimeter of the DC.
This may be a more feasible option for most deployments than having
to deal with key management for TCP MD5 as described in [<a href="./rfc2385" title=""Protection of BGP Sessions via the TCP MD5 Signature Option"">RFC2385</a>] or
dealing with the lack of implementations of the TCP Authentication
Option [<a href="./rfc5925" title=""The TCP Authentication Option"">RFC5925</a>] available at the time of publication of this
document. The Generalized TTL Security Mechanism [<a href="./rfc5082" title=""The Generalized TTL Security Mechanism (GTSM)"">RFC5082</a>] could
also be used to further reduce the risk of BGP session spoofing.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Normative References</span>
[<a id="ref-RFC4271">RFC4271</a>] Rekhter, Y., Ed., Li, T., Ed., and S. Hares, Ed., "A
Border Gateway Protocol 4 (BGP-4)", <a href="./rfc4271">RFC 4271</a>,
DOI 10.17487/RFC4271, January 2006,
<<a href="http://www.rfc-editor.org/info/rfc4271">http://www.rfc-editor.org/info/rfc4271</a>>.
[<a id="ref-RFC6996">RFC6996</a>] Mitchell, J., "Autonomous System (AS) Reservation for
Private Use", <a href="https://www.rfc-editor.org/bcp/bcp6">BCP 6</a>, <a href="./rfc6996">RFC 6996</a>, DOI 10.17487/RFC6996, July
2013, <<a href="http://www.rfc-editor.org/info/rfc6996">http://www.rfc-editor.org/info/rfc6996</a>>.
<span class="grey">Lapukhov, et al. Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-ALFARES2008">ALFARES2008</a>]
Al-Fares, M., Loukissas, A., and A. Vahdat, "A Scalable,
Commodity Data Center Network Architecture",
DOI 10.1145/1402958.1402967, August 2008,
<<a href="http://dl.acm.org/citation.cfm?id=1402967">http://dl.acm.org/citation.cfm?id=1402967</a>>.
[<a id="ref-ALLOWASIN">ALLOWASIN</a>]
Cisco Systems, "Allowas-in Feature in BGP Configuration
Example", February 2015,
<<a href="http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/112236-allowas-in-bgp-config-example.html">http://www.cisco.com/c/en/us/support/docs/ip/</a>
<a href="http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/112236-allowas-in-bgp-config-example.html">border-gateway-protocol-bgp/112236-allowas-in-bgp-config-</a>
<a href="http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/112236-allowas-in-bgp-config-example.html">example.html</a>>.
[<a id="ref-BGP-PIC">BGP-PIC</a>] Bashandy, A., Ed., Filsfils, C., and P. Mohapatra, "BGP
Prefix Independent Convergence", Work in Progress,
<a href="./draft-ietf-rtgwg-bgp-pic-02">draft-ietf-rtgwg-bgp-pic-02</a>, August 2016.
[<a id="ref-CLOS1953">CLOS1953</a>] Clos, C., "A Study of Non-Blocking Switching Networks",
The Bell System Technical Journal, Vol. 32(2),
DOI 10.1002/j.1538-7305.1953.tb01433.x, March 1953.
[<a id="ref-CONDITIONALROUTE">CONDITIONALROUTE</a>]
Cisco Systems, "Configuring and Verifying the BGP
Conditional Advertisement Feature", August 2005,
<<a href="http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/16137-cond-adv.html">http://www.cisco.com/c/en/us/support/docs/ip/</a>
<a href="http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/16137-cond-adv.html">border-gateway-protocol-bgp/16137-cond-adv.html</a>>.
[<a id="ref-CONS-HASH">CONS-HASH</a>]
Wikipedia, "Consistent Hashing", July 2016,
<<a href="https://en.wikipedia.org/w/index.php?title=Consistent_hashing&oldid=728825684">https://en.wikipedia.org/w/</a>
<a href="https://en.wikipedia.org/w/index.php?title=Consistent_hashing&oldid=728825684">index.php?title=Consistent_hashing&oldid=728825684</a>>.
[<a id="ref-FB4POST">FB4POST</a>] Farrington, N. and A. Andreyev, "Facebook's Data Center
Network Architecture", May 2013,
<<a href="http://nathanfarrington.com/papers/facebook-oic13.pdf">http://nathanfarrington.com/papers/facebook-oic13.pdf</a>>.
[<a id="ref-GREENBERG2009">GREENBERG2009</a>]
Greenberg, A., Hamilton, J., and D. Maltz, "The Cost of a
Cloud: Research Problems in Data Center Networks",
DOI 10.1145/1496091.1496103, January 2009,
<<a href="http://dl.acm.org/citation.cfm?id=1496103">http://dl.acm.org/citation.cfm?id=1496103</a>>.
[<a id="ref-HADOOP">HADOOP</a>] Apache, "Apache Hadoop", April 2016,
<<a href="https://hadoop.apache.org/">https://hadoop.apache.org/</a>>.
<span class="grey">Lapukhov, et al. Informational [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
[<a id="ref-IANA.AS">IANA.AS</a>] IANA, "Autonomous System (AS) Numbers",
<<a href="http://www.iana.org/assignments/as-numbers">http://www.iana.org/assignments/as-numbers</a>>.
[<a id="ref-IEEE8021D-1990">IEEE8021D-1990</a>]
IEEE, "IEEE Standard for Local and Metropolitan Area
Networks: Media Access Control (MAC) Bridges", IEEE
Std 802.1D, DOI 10.1109/IEEESTD.1991.101050, 1991,
<<a href="http://ieeexplore.ieee.org/servlet/opac?punumber=2255">http://ieeexplore.ieee.org/servlet/opac?punumber=2255</a>>.
[<a id="ref-IEEE8021D-2004">IEEE8021D-2004</a>]
IEEE, "IEEE Standard for Local and Metropolitan Area
Networks: Media Access Control (MAC) Bridges", IEEE
Std 802.1D, DOI 10.1109/IEEESTD.2004.94569, June 2004,
<<a href="http://ieeexplore.ieee.org/servlet/opac?punumber=9155">http://ieeexplore.ieee.org/servlet/opac?punumber=9155</a>>.
[<a id="ref-IEEE8021Q">IEEE8021Q</a>]
IEEE, "IEEE Standard for Local and Metropolitan Area
Networks: Bridges and Bridged Networks", IEEE Std 802.1Q,
DOI 10.1109/IEEESTD.2014.6991462,
<<a href="http://ieeexplore.ieee.org/servlet/opac?punumber=6991460">http://ieeexplore.ieee.org/servlet/</a>
<a href="http://ieeexplore.ieee.org/servlet/opac?punumber=6991460">opac?punumber=6991460</a>>.
[<a id="ref-IEEE8023AD">IEEE8023AD</a>]
IEEE, "Amendment to Carrier Sense Multiple Access With
Collision Detection (CSMA/CD) Access Method and Physical
Layer Specifications - Aggregation of Multiple Link
Segments", IEEE Std 802.3ad,
DOI 10.1109/IEEESTD.2000.91610, October 2000,
<<a href="http://ieeexplore.ieee.org/servlet/opac?punumber=6867">http://ieeexplore.ieee.org/servlet/opac?punumber=6867</a>>.
[<a id="ref-INTERCON">INTERCON</a>] Dally, W. and B. Towles, "Principles and Practices of
Interconnection Networks", ISBN 978-0122007514, January
2004, <<a href="http://dl.acm.org/citation.cfm?id=995703">http://dl.acm.org/citation.cfm?id=995703</a>>.
[<a id="ref-JAKMA2008">JAKMA2008</a>]
Jakma, P., "BGP Path Hunting", 2008,
<<a href="https://blogs.oracle.com/paulj/entry/bgp_path_hunting">https://blogs.oracle.com/paulj/entry/bgp_path_hunting</a>>.
[<a id="ref-L3DSR">L3DSR</a>] Schaumann, J., "L3DSR - Overcoming Layer 2 Limitations of
Direct Server Return Load Balancing", 2011,
<<a href="https://www.nanog.org/meetings/nanog51/presentations/Monday/NANOG51.Talk45.nanog51-Schaumann.pdf">https://www.nanog.org/meetings/nanog51/presentations/</a>
<a href="https://www.nanog.org/meetings/nanog51/presentations/Monday/NANOG51.Talk45.nanog51-Schaumann.pdf">Monday/NANOG51.Talk45.nanog51-Schaumann.pdf</a>>.
[<a id="ref-LINK">LINK</a>] Mohapatra, P. and R. Fernando, "BGP Link Bandwidth
Extended Community", Work in Progress, <a href="./draft-ietf-idr-link-bandwidth-06">draft-ietf-idr-</a>
<a href="./draft-ietf-idr-link-bandwidth-06">link-bandwidth-06</a>, January 2013.
<span class="grey">Lapukhov, et al. Informational [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
[<a id="ref-REMOVAL">REMOVAL</a>] Mitchell, J., Rao, D., and R. Raszuk, "Private Autonomous
System (AS) Removal Requirements", Work in Progress,
<a href="./draft-mitchell-grow-remove-private-as-04">draft-mitchell-grow-remove-private-as-04</a>, April 2015.
[<a id="ref-RFC2328">RFC2328</a>] Moy, J., "OSPF Version 2", STD 54, <a href="./rfc2328">RFC 2328</a>,
DOI 10.17487/RFC2328, April 1998,
<<a href="http://www.rfc-editor.org/info/rfc2328">http://www.rfc-editor.org/info/rfc2328</a>>.
[<a id="ref-RFC2385">RFC2385</a>] Heffernan, A., "Protection of BGP Sessions via the TCP MD5
Signature Option", <a href="./rfc2385">RFC 2385</a>, DOI 10.17487/RFC2385, August
1998, <<a href="http://www.rfc-editor.org/info/rfc2385">http://www.rfc-editor.org/info/rfc2385</a>>.
[<a id="ref-RFC2992">RFC2992</a>] Hopps, C., "Analysis of an Equal-Cost Multi-Path
Algorithm", <a href="./rfc2992">RFC 2992</a>, DOI 10.17487/RFC2992, November 2000,
<<a href="http://www.rfc-editor.org/info/rfc2992">http://www.rfc-editor.org/info/rfc2992</a>>.
[<a id="ref-RFC4272">RFC4272</a>] Murphy, S., "BGP Security Vulnerabilities Analysis",
<a href="./rfc4272">RFC 4272</a>, DOI 10.17487/RFC4272, January 2006,
<<a href="http://www.rfc-editor.org/info/rfc4272">http://www.rfc-editor.org/info/rfc4272</a>>.
[<a id="ref-RFC4277">RFC4277</a>] McPherson, D. and K. Patel, "Experience with the BGP-4
Protocol", <a href="./rfc4277">RFC 4277</a>, DOI 10.17487/RFC4277, January 2006,
<<a href="http://www.rfc-editor.org/info/rfc4277">http://www.rfc-editor.org/info/rfc4277</a>>.
[<a id="ref-RFC4786">RFC4786</a>] Abley, J. and K. Lindqvist, "Operation of Anycast
Services", <a href="https://www.rfc-editor.org/bcp/bcp126">BCP 126</a>, <a href="./rfc4786">RFC 4786</a>, DOI 10.17487/RFC4786,
December 2006, <<a href="http://www.rfc-editor.org/info/rfc4786">http://www.rfc-editor.org/info/rfc4786</a>>.
[<a id="ref-RFC5082">RFC5082</a>] Gill, V., Heasley, J., Meyer, D., Savola, P., Ed., and C.
Pignataro, "The Generalized TTL Security Mechanism
(GTSM)", <a href="./rfc5082">RFC 5082</a>, DOI 10.17487/RFC5082, October 2007,
<<a href="http://www.rfc-editor.org/info/rfc5082">http://www.rfc-editor.org/info/rfc5082</a>>.
[<a id="ref-RFC5837">RFC5837</a>] Atlas, A., Ed., Bonica, R., Ed., Pignataro, C., Ed., Shen,
N., and JR. Rivers, "Extending ICMP for Interface and
Next-Hop Identification", <a href="./rfc5837">RFC 5837</a>, DOI 10.17487/RFC5837,
April 2010, <<a href="http://www.rfc-editor.org/info/rfc5837">http://www.rfc-editor.org/info/rfc5837</a>>.
[<a id="ref-RFC5880">RFC5880</a>] Katz, D. and D. Ward, "Bidirectional Forwarding Detection
(BFD)", <a href="./rfc5880">RFC 5880</a>, DOI 10.17487/RFC5880, June 2010,
<<a href="http://www.rfc-editor.org/info/rfc5880">http://www.rfc-editor.org/info/rfc5880</a>>.
[<a id="ref-RFC5925">RFC5925</a>] Touch, J., Mankin, A., and R. Bonica, "The TCP
Authentication Option", <a href="./rfc5925">RFC 5925</a>, DOI 10.17487/RFC5925,
June 2010, <<a href="http://www.rfc-editor.org/info/rfc5925">http://www.rfc-editor.org/info/rfc5925</a>>.
<span class="grey">Lapukhov, et al. Informational [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
[<a id="ref-RFC6325">RFC6325</a>] Perlman, R., Eastlake 3rd, D., Dutt, D., Gai, S., and A.
Ghanwani, "Routing Bridges (RBridges): Base Protocol
Specification", <a href="./rfc6325">RFC 6325</a>, DOI 10.17487/RFC6325, July 2011,
<<a href="http://www.rfc-editor.org/info/rfc6325">http://www.rfc-editor.org/info/rfc6325</a>>.
[<a id="ref-RFC6769">RFC6769</a>] Raszuk, R., Heitz, J., Lo, A., Zhang, L., and X. Xu,
"Simple Virtual Aggregation (S-VA)", <a href="./rfc6769">RFC 6769</a>,
DOI 10.17487/RFC6769, October 2012,
<<a href="http://www.rfc-editor.org/info/rfc6769">http://www.rfc-editor.org/info/rfc6769</a>>.
[<a id="ref-RFC6774">RFC6774</a>] Raszuk, R., Ed., Fernando, R., Patel, K., McPherson, D.,
and K. Kumaki, "Distribution of Diverse BGP Paths",
<a href="./rfc6774">RFC 6774</a>, DOI 10.17487/RFC6774, November 2012,
<<a href="http://www.rfc-editor.org/info/rfc6774">http://www.rfc-editor.org/info/rfc6774</a>>.
[<a id="ref-RFC6793">RFC6793</a>] Vohra, Q. and E. Chen, "BGP Support for Four-Octet
Autonomous System (AS) Number Space", <a href="./rfc6793">RFC 6793</a>,
DOI 10.17487/RFC6793, December 2012,
<<a href="http://www.rfc-editor.org/info/rfc6793">http://www.rfc-editor.org/info/rfc6793</a>>.
[<a id="ref-RFC7067">RFC7067</a>] Dunbar, L., Eastlake 3rd, D., Perlman, R., and I.
Gashinsky, "Directory Assistance Problem and High-Level
Design Proposal", <a href="./rfc7067">RFC 7067</a>, DOI 10.17487/RFC7067, November
2013, <<a href="http://www.rfc-editor.org/info/rfc7067">http://www.rfc-editor.org/info/rfc7067</a>>.
[<a id="ref-RFC7130">RFC7130</a>] Bhatia, M., Ed., Chen, M., Ed., Boutros, S., Ed.,
Binderberger, M., Ed., and J. Haas, Ed., "Bidirectional
Forwarding Detection (BFD) on Link Aggregation Group (LAG)
Interfaces", <a href="./rfc7130">RFC 7130</a>, DOI 10.17487/RFC7130, February
2014, <<a href="http://www.rfc-editor.org/info/rfc7130">http://www.rfc-editor.org/info/rfc7130</a>>.
[<a id="ref-RFC7196">RFC7196</a>] Pelsser, C., Bush, R., Patel, K., Mohapatra, P., and O.
Maennel, "Making Route Flap Damping Usable", <a href="./rfc7196">RFC 7196</a>,
DOI 10.17487/RFC7196, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7196">http://www.rfc-editor.org/info/rfc7196</a>>.
[<a id="ref-RFC7911">RFC7911</a>] Walton, D., Retana, A., Chen, E., and J. Scudder,
"Advertisement of Multiple Paths in BGP", <a href="./rfc7911">RFC 7911</a>,
DOI 10.17487/RFC7911, July 2016,
<<a href="http://www.rfc-editor.org/info/rfc7911">http://www.rfc-editor.org/info/rfc7911</a>>.
[<a id="ref-VENDOR-REMOVE-PRIVATE-AS">VENDOR-REMOVE-PRIVATE-AS</a>]
Cisco Systems, "Removing Private Autonomous System Numbers
in BGP", August 2005,
<<a href="http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080093f27.shtml">http://www.cisco.com/en/US/tech/tk365/</a>
<a href="http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080093f27.shtml">technologies_tech_note09186a0080093f27.shtml</a>>.
<span class="grey">Lapukhov, et al. Informational [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc7938">RFC 7938</a> BGP Routing in Data Centers August 2016</span>
Acknowledgements
This publication summarizes the work of many people who participated
in developing, testing, and deploying the proposed network design,
some of whom were George Chen, Parantap Lahiri, Dave Maltz, Edet
Nkposong, Robert Toomey, and Lihua Yuan. The authors would also like
to thank Linda Dunbar, Anoop Ghanwani, Susan Hares, Danny McPherson,
Robert Raszuk, and Russ White for reviewing this document and
providing valuable feedback, and Mary Mitchell for initial grammar
and style suggestions.
Authors' Addresses
Petr Lapukhov
Facebook
1 Hacker Way
Menlo Park, CA 94025
United States of America
Email: petr@fb.com
Ariff Premji
Arista Networks
5453 Great America Parkway
Santa Clara, CA 95054
United States of America
Email: ariff@arista.com
URI: <a href="http://arista.com/">http://arista.com/</a>
Jon Mitchell (editor)
Email: jrmitche@puck.nether.net
Lapukhov, et al. Informational [Page 35]
</pre>
|