1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668
|
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 8706: Restart Signaling for IS-IS</title>
<meta content="Les Ginsberg" name="author">
<meta content="Paul Wells" name="author">
<meta content="
This document describes a mechanism for a restarting router to signal
to its neighbors that it is restarting, allowing them to reestablish
their adjacencies without cycling through the DOWN state while still
correctly initiating database synchronization.
This document additionally describes a mechanism for a router to
signal its neighbors that it is preparing to initiate a restart while
maintaining forwarding-plane state. This allows the neighbors to
maintain their adjacencies until the router has restarted but also
allows the neighbors
to bring the adjacencies down in the event of other
topology changes.
This document additionally describes a mechanism for a restarting
router to determine when it has achieved Link State Protocol Data Unit
(LSP) database synchronization with its neighbors and a mechanism to
optimize LSP database synchronization while minimizing transient
routing disruption when a router starts.
This document obsoletes RFC 5306.
" name="description">
<meta content="xml2rfc 2.40.0" name="generator">
<meta content="IGP" name="keyword">
<meta content="IS-IS" name="keyword">
<meta content="graceful restart" name="keyword">
<meta content="8706" name="rfc.number">
<link href="rfc8706.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*
NOTE: Changes at the bottom of this file overrides some earlier settings.
Once the style has stabilized and has been adopted as an official RFC style,
this can be consolidated so that style settings occur only in one place, but
for now the contents of this file consists first of the initial CSS work as
provided to the RFC Formatter (xml2rfc) work, followed by itemized and
commented changes found necssary during the development of the v3
formatters.
*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: extend-to-zoom;
zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
max-width: 90%;
margin: 1.5em auto;
color: #222;
background-color: #fff;
font-size: 14px;
font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
line-height: 1.6;
scroll-behavior: smooth;
}
.ears {
display: none;
}
/* headings */
#title, h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.5em;
font-weight: bold;
line-height: 1.3;
}
#title {
clear: both;
border-bottom: 1px solid #ddd;
margin: 0 0 0.5em 0;
padding: 1em 0 0.5em;
}
.author {
padding-bottom: 4px;
}
h1 {
font-size: 26px;
margin: 1em 0;
}
h2 {
font-size: 22px;
margin-top: -20px; /* provide offset for in-page anchors */
padding-top: 33px;
}
h3 {
font-size: 18px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h4 {
font-size: 16px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h5, h6 {
font-size: 14px;
}
#n-copyright-notice {
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
margin-bottom: 1em;
}
/* general structure */
p {
padding: 0;
margin: 0 0 1em 0;
text-align: left;
}
div, span {
position: relative;
}
div {
margin: 0;
}
.alignRight.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignRight.art-text pre {
padding: 0;
}
.alignRight {
margin: 1em 0;
}
.alignRight > *:first-child {
border: none;
margin: 0;
float: right;
clear: both;
}
.alignRight > *:nth-child(2) {
clear: both;
display: block;
border: none;
}
svg {
display: block;
}
.alignCenter.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
padding: 0;
}
.alignCenter {
margin: 1em 0;
}
.alignCenter > *:first-child {
border: none;
/* this isn't optimal, but it's an existence proof. PrinceXML doesn't
support flexbox yet.
*/
display: table;
margin: 0 auto;
}
/* lists */
ol, ul {
padding: 0;
margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
margin-left: 1em;
}
li {
margin: 0 0 0.25em 0;
}
.ulCompact li {
margin: 0;
}
ul.empty, .ulEmpty {
list-style-type: none;
}
ul.empty li, .ulEmpty li {
margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
line-height: 100%;
margin: 0 0 0 2em;
}
/* definition lists */
dl {
}
dl > dt {
float: left;
margin-right: 1em;
}
/*
dl.nohang > dt {
float: none;
}
*/
dl > dd {
margin-bottom: .8em;
min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
margin-bottom: 0em;
}
dl > dd > dl {
margin-top: 0.5em;
margin-bottom: 0em;
}
/* links */
a {
text-decoration: none;
}
a[href] {
color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
background-color: transparent;
cursor: default;
} */
/* Figures */
tt, code, pre, code {
background-color: #f9f9f9;
font-family: 'Roboto Mono', monospace;
}
pre {
border: 1px solid #eee;
margin: 0;
padding: 1em;
}
img {
max-width: 100%;
}
figure {
margin: 0;
}
figure blockquote {
margin: 0.8em 0.4em 0.4em;
}
figcaption {
font-style: italic;
margin: 0 0 1em 0;
}
@media screen {
pre {
overflow-x: auto;
max-width: 100%;
max-width: calc(100% - 22px);
}
}
/* aside, blockquote */
aside, blockquote {
margin-left: 0;
padding: 1.2em 2em;
}
blockquote {
background-color: #f9f9f9;
color: #111; /* Arlen: WCAG 2019 */
border: 1px solid #ddd;
border-radius: 3px;
margin: 1em 0;
}
cite {
display: block;
text-align: right;
font-style: italic;
}
/* tables */
table {
width: 100%;
margin: 0 0 1em;
border-collapse: collapse;
border: 1px solid #eee;
}
th, td {
text-align: left;
vertical-align: top;
padding: 0.5em 0.75em;
}
th {
text-align: left;
background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
background-color: #f5f5f5;
}
table caption {
font-style: italic;
margin: 0;
padding: 0;
text-align: left;
}
table p {
/* XXX to avoid bottom margin on table row signifiers. If paragraphs should
be allowed within tables more generally, it would be far better to select on a class. */
margin: 0;
}
/* pilcrow */
a.pilcrow {
color: #666; /* Arlen: AHDJ 2019 */
text-decoration: none;
visibility: hidden;
user-select: none;
-ms-user-select: none;
-o-user-select:none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
@media screen {
aside:hover > a.pilcrow,
p:hover > a.pilcrow,
blockquote:hover > a.pilcrow,
div:hover > a.pilcrow,
li:hover > a.pilcrow,
pre:hover > a.pilcrow {
visibility: visible;
}
a.pilcrow:hover {
background-color: transparent;
}
}
/* misc */
hr {
border: 0;
border-top: 1px solid #eee;
}
.bcp14 {
font-variant: small-caps;
}
.role {
font-variant: all-small-caps;
}
/* info block */
#identifiers {
margin: 0;
font-size: 0.9em;
}
#identifiers dt {
width: 3em;
clear: left;
}
#identifiers dd {
float: left;
margin-bottom: 0;
}
#identifiers .authors .author {
display: inline-block;
margin-right: 1.5em;
}
#identifiers .authors .org {
font-style: italic;
}
/* The prepared/rendered info at the very bottom of the page */
.docInfo {
color: #666; /* Arlen: WCAG 2019 */
font-size: 0.9em;
font-style: italic;
margin-top: 2em;
}
.docInfo .prepared {
float: left;
}
.docInfo .prepared {
float: right;
}
/* table of contents */
#toc {
padding: 0.75em 0 2em 0;
margin-bottom: 1em;
}
nav.toc ul {
margin: 0 0.5em 0 0;
padding: 0;
list-style: none;
}
nav.toc li {
line-height: 1.3em;
margin: 0.75em 0;
padding-left: 1.2em;
text-indent: -1.2em;
}
/* references */
.references dt {
text-align: right;
font-weight: bold;
min-width: 7em;
}
.references dd {
margin-left: 8em;
overflow: auto;
}
.refInstance {
margin-bottom: 1.25em;
}
.references .ascii {
margin-bottom: 0.25em;
}
/* index */
.index ul {
margin: 0 0 0 1em;
padding: 0;
list-style: none;
}
.index ul ul {
margin: 0;
}
.index li {
margin: 0;
text-indent: -2em;
padding-left: 2em;
padding-bottom: 5px;
}
.indexIndex {
margin: 0.5em 0 1em;
}
.index a {
font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
.index ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
}
.index ul ul {
-moz-column-count: 1;
-moz-column-gap: 0;
}
}
/* authors */
address.vcard {
font-style: normal;
margin: 1em 0;
}
address.vcard .nameRole {
font-weight: 700;
margin-left: 0;
}
address.vcard .label {
font-family: "Noto Sans",Arial,Helvetica,sans-serif;
margin: 0.5em 0;
}
address.vcard .type {
display: none;
}
.alternative-contact {
margin: 1.5em 0 1em;
}
hr.addr {
border-top: 1px dashed;
margin: 0;
color: #ddd;
max-width: calc(100% - 16px);
}
/* temporary notes */
.rfcEditorRemove::before {
position: absolute;
top: 0.2em;
right: 0.2em;
padding: 0.2em;
content: "The RFC Editor will remove this note";
color: #9e2a00; /* Arlen: WCAG 2019 */
background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
position: relative;
padding-top: 1.8em;
background-color: #ffd; /* Arlen: WCAG 2019 */
border-radius: 3px;
}
.cref {
background-color: #ffd; /* Arlen: WCAG 2019 */
padding: 2px 4px;
}
.crefSource {
font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
body {
padding-top: 2em;
}
#title {
padding: 1em 0;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 38px;
}
#identifiers dd {
max-width: 60%;
}
#toc {
position: fixed;
z-index: 2;
top: 0;
right: 0;
padding: 0;
margin: 0;
background-color: inherit;
border-bottom: 1px solid #ccc;
}
#toc h2 {
margin: -1px 0 0 0;
padding: 4px 0 4px 6px;
padding-right: 1em;
min-width: 190px;
font-size: 1.1em;
text-align: right;
background-color: #444;
color: white;
cursor: pointer;
}
#toc h2::before { /* css hamburger */
float: right;
position: relative;
width: 1em;
height: 1px;
left: -164px;
margin: 6px 0 0 0;
background: white none repeat scroll 0 0;
box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
content: "";
}
#toc nav {
display: none;
padding: 0.5em 1em 1em;
overflow: auto;
height: calc(100vh - 48px);
border-left: 1px solid #ddd;
}
}
/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
body {
max-width: 724px;
margin: 42px auto;
padding-left: 1.5em;
padding-right: 29em;
}
#toc {
position: fixed;
top: 42px;
right: 42px;
width: 25%;
margin: 0;
padding: 0 1em;
z-index: 1;
}
#toc h2 {
border-top: none;
border-bottom: 1px solid #ddd;
font-size: 1em;
font-weight: normal;
margin: 0;
padding: 0.25em 1em 1em 0;
}
#toc nav {
display: block;
height: calc(90vh - 84px);
bottom: 0;
padding: 0.5em 0 0;
overflow: auto;
}
img { /* future proofing */
max-width: 100%;
height: auto;
}
}
/* pagination */
@media print {
body {
width: 100%;
}
p {
orphans: 3;
widows: 3;
}
#n-copyright-notice {
border-bottom: none;
}
#toc, #n-introduction {
page-break-before: always;
}
#toc {
border-top: none;
padding-top: 0;
}
figure, pre {
page-break-inside: avoid;
}
figure {
overflow: scroll;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
h2+*, h3+*, h4+*, h5+*, h6+* {
page-break-before: avoid;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
font-size: 10pt;
}
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
}
/* This is commented out here, as the string-set: doesn't
pass W3C validation currently */
/*
.ears thead .left {
string-set: ears-top-left content();
}
.ears thead .center {
string-set: ears-top-center content();
}
.ears thead .right {
string-set: ears-top-right content();
}
.ears tfoot .left {
string-set: ears-bottom-left content();
}
.ears tfoot .center {
string-set: ears-bottom-center content();
}
.ears tfoot .right {
string-set: ears-bottom-right content();
}
*/
@page :first {
padding-top: 0;
@top-left {
content: normal;
border: none;
}
@top-center {
content: normal;
border: none;
}
@top-right {
content: normal;
border: none;
}
}
@page {
size: A4;
margin-bottom: 45mm;
padding-top: 20px;
/* The follwing is commented out here, but set appropriately by in code, as
the content depends on the document */
/*
@top-left {
content: 'Internet-Draft';
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-left {
content: string(ears-top-left);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-center {
content: string(ears-top-center);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-right {
content: string(ears-top-right);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@bottom-left {
content: string(ears-bottom-left);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-center {
content: string(ears-bottom-center);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-right {
content: '[Page ' counter(page) ']';
vertical-align: top;
border-top: solid 1px #ccc;
}
*/
}
/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
clear: both;
}
/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
vertical-align: top;
}
/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
width: 8em;
}
/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
margin-left: 1em;
}
/* Give floating toc a background color (needed when it's a div inside section */
#toc {
background-color: white;
}
/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
#toc h2 a,
#toc h2 a:link,
#toc h2 a:focus,
#toc h2 a:hover,
#toc a.toplink,
#toc a.toplink:hover {
color: white;
background-color: #444;
text-decoration: none;
}
}
/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
#toc {
padding: 0 0 1em 1em;
}
}
/* Style section numbers with more space between number and title */
.section-number {
padding-right: 0.5em;
}
/* prevent monospace from becoming overly large */
tt, code, pre, code {
font-size: 95%;
}
/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
line-height: 1.12;
}
/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
float: right;
margin-right: 0.5em;
}
/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
float: left;
margin-right: 1em;
}
dl.dlNewline > dt {
float: none;
}
/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
text-align: left;
}
table td.text-center,
table th.text-center {
text-align: center;
}
table td.text-right,
table th.text-right {
text-align: right;
}
/* Make the alternative author contact informatio look less like just another
author, and group it closer with the primary author contact information */
.alternative-contact {
margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
margin: 0 0 0 2em;
}
/* With it being possible to set tables with alignment
left, center, and right, { width: 100%; } does not make sense */
table {
width: auto;
}
/* Avoid reference text that sits in a block with very wide left margin,
because of a long floating dt label.*/
.references dd {
overflow: visible;
}
/* Control caption placement */
caption {
caption-side: bottom;
}
/* Limit the width of the author address vcard, so names in right-to-left
script don't end up on the other side of the page. */
address.vcard {
max-width: 30em;
margin-right: auto;
}
/* For address alignment dependent on LTR or RTL scripts */
address div.left {
text-align: left;
}
address div.right {
text-align: right;
}
/* Provide table alignment support. We can't use the alignX classes above
since they do unwanted things with caption and other styling. */
table.right {
margin-left: auto;
margin-right: 0;
}
table.center {
margin-left: auto;
margin-right: auto;
}
table.left {
margin-left: 0;
margin-right: auto;
}
/* Give the table caption label the same styling as the figcaption */
caption a[href] {
color: #222;
}
@media print {
.toplink {
display: none;
}
/* avoid overwriting the top border line with the ToC header */
#toc {
padding-top: 1px;
}
/* Avoid page breaks inside dl and author address entries */
.vcard {
page-break-inside: avoid;
}
}
/* Avoid wrapping of URLs in references */
@media screen {
.references a {
white-space: nowrap;
}
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
h4 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
/* Float artwork pilcrow to the right */
@media screen {
.artwork a.pilcrow {
display: block;
line-height: 0.7;
margin-top: 0.15em;
}
}
/* Make pilcrows on dd visible */
@media screen {
dd:hover > a.pilcrow {
visibility: visible;
}
}
/* Make the placement of figcaption match that of a table's caption
by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
possibly even requiring a new line */
@media print {
a.pilcrow {
display: none;
}
}
/* Styling for the external metadata */
div#external-metadata {
background-color: #eee;
padding: 0.5em;
margin-bottom: 0.5em;
display: none;
}
div#internal-metadata {
padding: 0.5em; /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
clear: both;
margin: 0 0 -1em;
padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
margin: 0 0 0.25em 0;
min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
border-left: 1px solid #ddd;
margin: 1em 0 1em 2em;
padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
figcaption, table caption {
page-break-before: avoid;
}
}
/* Font size adjustments for print */
@media print {
body { font-size: 10pt; line-height: normal; max-width: 96%; }
h1 { font-size: 1.72em; padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
h2 { font-size: 1.44em; padding-top: 1.5em; } /* 1*1.2*1.2 */
h3 { font-size: 1.2em; padding-top: 1.5em; } /* 1*1.2 */
h4 { font-size: 1em; padding-top: 1.5em; }
h5, h6 { font-size: 1em; margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
.artwork,
.sourcecode {
margin-bottom: 1em;
}
}
/*
The margin-left: 0 on <dd> removes all distinction
between levels from nested <dl>s. Undo that.
*/
dl.olPercent > dd,
dd {
margin-left: revert;
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc8706" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-lsr-isis-rfc5306bis-09" rel="prev">
</head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 8706</td>
<td class="center">Restart Signaling for IS-IS</td>
<td class="right">February 2020</td>
</tr></thead>
<tfoot><tr>
<td class="left">Ginsberg & Wells</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc8706" class="eref">8706</a></dd>
<dt class="label-obsoletes">Obsoletes:</dt>
<dd class="obsoletes">
<a href="https://www.rfc-editor.org/rfc/rfc5306" class="eref">5306</a> </dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2020-02" class="published">February 2020</time>
</dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">L. Ginsberg</div>
<div class="org">Cisco Systems, Inc.</div>
</div>
<div class="author">
<div class="author-name">P. Wells</div>
<div class="org">Cisco Systems, Inc.</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8706</h1>
<h1 id="title">Restart Signaling for IS-IS</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">This document describes a mechanism for a restarting router to signal
to its neighbors that it is restarting, allowing them to reestablish
their adjacencies without cycling through the DOWN state while still
correctly initiating database synchronization.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
<p id="section-abstract-2">This document additionally describes a mechanism for a router to
signal its neighbors that it is preparing to initiate a restart while
maintaining forwarding-plane state. This allows the neighbors to
maintain their adjacencies until the router has restarted but also
allows the neighbors
to bring the adjacencies down in the event of other
topology changes.<a href="#section-abstract-2" class="pilcrow">¶</a></p>
<p id="section-abstract-3">This document additionally describes a mechanism for a restarting
router to determine when it has achieved Link State Protocol Data Unit
(LSP) database synchronization with its neighbors and a mechanism to
optimize LSP database synchronization while minimizing transient
routing disruption when a router starts.<a href="#section-abstract-3" class="pilcrow">¶</a></p>
<p id="section-abstract-4">This document obsoletes RFC 5306.<a href="#section-abstract-4" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by
the Internet Engineering Steering Group (IESG). Further
information on Internet Standards is available in Section 2 of
RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
<span><a href="https://www.rfc-editor.org/info/rfc8706">https://www.rfc-editor.org/info/rfc8706</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2020 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) 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.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1"><a href="#section-1" class="xref">1</a>. <a href="#name-overview" class="xref">Overview</a><a href="#section-toc.1-1.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1"><a href="#section-2" class="xref">2</a>. <a href="#name-conventions-used-in-this-do" class="xref">Conventions Used in This Document</a><a href="#section-toc.1-1.2.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.2.2.1">
<p id="section-toc.1-1.2.2.1.1"><a href="#section-2.1" class="xref">2.1</a>. <a href="#name-requirements-language" class="xref">Requirements Language</a><a href="#section-toc.1-1.2.2.1.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-approach" class="xref">Approach</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.3.2.1">
<p id="section-toc.1-1.3.2.1.1"><a href="#section-3.1" class="xref">3.1</a>. <a href="#name-timers" class="xref">Timers</a><a href="#section-toc.1-1.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.2">
<p id="section-toc.1-1.3.2.2.1"><a href="#section-3.2" class="xref">3.2</a>. <a href="#name-restart-tlv" class="xref">Restart TLV</a><a href="#section-toc.1-1.3.2.2.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.3.2.2.2.1">
<p id="section-toc.1-1.3.2.2.2.1.1"><a href="#section-3.2.1" class="xref">3.2.1</a>. <a href="#name-use-of-rr-and-ra-bits" class="xref">Use of RR and RA Bits</a><a href="#section-toc.1-1.3.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.2.2.2">
<p id="section-toc.1-1.3.2.2.2.2.1"><a href="#section-3.2.2" class="xref">3.2.2</a>. <a href="#name-use-of-the-sa-bit" class="xref">Use of the SA Bit</a><a href="#section-toc.1-1.3.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.2.2.3">
<p id="section-toc.1-1.3.2.2.2.3.1"><a href="#section-3.2.3" class="xref">3.2.3</a>. <a href="#name-use-of-pr-and-pa-bits" class="xref">Use of PR and PA Bits</a><a href="#section-toc.1-1.3.2.2.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.3">
<p id="section-toc.1-1.3.2.3.1"><a href="#section-3.3" class="xref">3.3</a>. <a href="#name-adjacency-reacquisition" class="xref">Adjacency (Re)Acquisition</a><a href="#section-toc.1-1.3.2.3.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.3.2.3.2.1">
<p id="section-toc.1-1.3.2.3.2.1.1"><a href="#section-3.3.1" class="xref">3.3.1</a>. <a href="#name-adjacency-reacquisition-dur" class="xref">Adjacency Reacquisition during Restart</a><a href="#section-toc.1-1.3.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.3.2.2">
<p id="section-toc.1-1.3.2.3.2.2.1"><a href="#section-3.3.2" class="xref">3.3.2</a>. <a href="#name-adjacency-acquisition-durin" class="xref">Adjacency Acquisition during Start</a><a href="#section-toc.1-1.3.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.3.2.3">
<p id="section-toc.1-1.3.2.3.2.3.1"><a href="#section-3.3.3" class="xref">3.3.3</a>. <a href="#name-multiple-levels" class="xref">Multiple Levels</a><a href="#section-toc.1-1.3.2.3.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.4">
<p id="section-toc.1-1.3.2.4.1"><a href="#section-3.4" class="xref">3.4</a>. <a href="#name-database-synchronization" class="xref">Database Synchronization</a><a href="#section-toc.1-1.3.2.4.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.3.2.4.2.1">
<p id="section-toc.1-1.3.2.4.2.1.1"><a href="#section-3.4.1" class="xref">3.4.1</a>. <a href="#name-lsp-generation-and-flooding" class="xref">LSP Generation and Flooding and SPF Computation</a><a href="#section-toc.1-1.3.2.4.2.1.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>. <a href="#name-state-tables" class="xref">State Tables</a><a href="#section-toc.1-1.4.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>. <a href="#name-running-router" class="xref">Running Router</a><a href="#section-toc.1-1.4.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>. <a href="#name-restarting-router" class="xref">Restarting Router</a><a href="#section-toc.1-1.4.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.3">
<p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>. <a href="#name-starting-router" class="xref">Starting Router</a><a href="#section-toc.1-1.4.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a><a href="#section-toc.1-1.6.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>. <a href="#name-manageability-consideration" class="xref">Manageability Considerations</a><a href="#section-toc.1-1.7.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>. <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-appendix.a" class="xref">Appendix A</a>. <a href="#name-summary-of-changes-from-rfc" class="xref">Summary of Changes from RFC 5306</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-acknowledgements" class="xref">Acknowledgements</a><a href="#section-toc.1-1.10.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-appendix.c" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.11.1" class="pilcrow">¶</a></p>
</li>
</ul>
</nav>
</section>
</div>
<section id="section-1">
<h2 id="name-overview">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-overview" class="section-name selfRef">Overview</a>
</h2>
<p id="section-1-1">The Intermediate System to Intermediate System (IS-IS) routing
protocol <span>[<a href="#RFC1195" class="xref">RFC1195</a>]</span> <span>[<a href="#ISO10589" class="xref">ISO10589</a>]</span> is a link state intra-domain routing
protocol. Normally, when an IS-IS router is restarted, temporary
disruption of routing occurs due to events in both the restarting router
and the neighbors of the restarting router.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2">The router that has been restarted computes its own routes before
achieving database synchronization with its neighbors. The results of
this computation are likely to be non-convergent with the routes
computed by other routers in the area/domain.<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">Neighbors of the restarting router detect the restart event and cycle
their adjacencies with the restarting router through the DOWN state. The
cycling of the adjacency state causes the neighbors to regenerate their
LSPs describing the adjacency concerned. This in turn causes a temporary
disruption of routes passing through the restarting router.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">In certain scenarios, the temporary disruption of the routes is
highly undesirable. This document describes mechanisms to avoid or
minimize the disruption due to both of these causes.<a href="#section-1-4" class="pilcrow">¶</a></p>
<p id="section-1-5">When an adjacency is reinitialized as a result of a neighbor
restarting, a router does three things:<a href="#section-1-5" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-1-6">
<li id="section-1-6.1">It causes its own LSP(s) to be regenerated, thus triggering
Shortest Path First (SPF)
runs throughout the area (or in the case of Level 2, throughout the
domain).<a href="#section-1-6.1" class="pilcrow">¶</a>
</li>
<li id="section-1-6.2">It sets SRMflags on its own LSP database on the adjacency
concerned.<a href="#section-1-6.2" class="pilcrow">¶</a>
</li>
<li id="section-1-6.3">In the case of a Point-to-Point link, it transmits a complete set
of Complete Sequence Number PDUs (CSNPs), over the adjacency.<a href="#section-1-6.3" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-1-7">In the case of a restarting router process, the first of these is
highly undesirable, but the second is essential in order to ensure
synchronization of the LSP database.<a href="#section-1-7" class="pilcrow">¶</a></p>
<p id="section-1-8">The third action above minimizes the number of LSPs that must be
exchanged and, if made reliable, provides a means of determining when
the LSP databases of the neighboring routers have been synchronized.
This is desirable whether or not the router is being restarted (so that
the overload bit can be cleared in the router's own LSP, for
example).<a href="#section-1-8" class="pilcrow">¶</a></p>
<p id="section-1-9">This document describes a mechanism for a restarting router to signal
to its neighbors that it is restarting. The mechanism further allows the
neighbors to reestablish their adjacencies with the restarting router
without cycling through the DOWN state while still correctly initiating
database synchronization.<a href="#section-1-9" class="pilcrow">¶</a></p>
<p id="section-1-10">This document additionally describes a mechanism for a restarting
router to determine when it has achieved LSP database synchronization
with its neighbors and a mechanism to optimize LSP database
synchronization and minimize transient routing disruption when a router
starts.<a href="#section-1-10" class="pilcrow">¶</a></p>
<p id="section-1-11">It is assumed that the three-way handshake <span>[<a href="#RFC5303" class="xref">RFC5303</a>]</span>
is being used on Point-to-Point circuits.<a href="#section-1-11" class="pilcrow">¶</a></p>
</section>
<div id="conventions">
<section id="section-2">
<h2 id="name-conventions-used-in-this-do">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-conventions-used-in-this-do" class="section-name selfRef">Conventions Used in This Document</a>
</h2>
<p id="section-2-1">If the control and forwarding functions in a router can be maintained
independently, it is possible for the forwarding function state to be
maintained across a resumption of control function operations. This
functionality is assumed when the terms "restart/restarting" are used in
this document.<a href="#section-2-1" class="pilcrow">¶</a></p>
<p id="section-2-2">The terms "start/starting" are used to refer to a router in which the
control function has either commenced operations for the first time or
has resumed operations, but the forwarding functions have not been
maintained in a prior state.<a href="#section-2-2" class="pilcrow">¶</a></p>
<p id="section-2-3">The terms "(re)start/(re)starting" are used when the text is
applicable to both a "starting" and a "restarting" router.<a href="#section-2-3" class="pilcrow">¶</a></p>
<p id="section-2-4">The terms "normal IIH" or "IIH normal" refer to IS-IS Hellos (IIHs)
in which the Restart TLV (defined later in this document) has no flags
set.<a href="#section-2-4" class="pilcrow">¶</a></p>
<section id="section-2.1">
<h3 id="name-requirements-language">
<a href="#section-2.1" class="section-number selfRef">2.1. </a><a href="#name-requirements-language" class="section-name selfRef">Requirements Language</a>
</h3>
<p id="section-2.1-1">
The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
"<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
described in BCP 14 <span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span>
when, and only when, they appear in all capitals, as shown here.<a href="#section-2.1-1" class="pilcrow">¶</a></p>
</section>
</section>
</div>
<section id="section-3">
<h2 id="name-approach">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-approach" class="section-name selfRef">Approach</a>
</h2>
<section id="section-3.1">
<h3 id="name-timers">
<a href="#section-3.1" class="section-number selfRef">3.1. </a><a href="#name-timers" class="section-name selfRef">Timers</a>
</h3>
<p id="section-3.1-1">Three additional timers (T1, T2, and T3) are required to support
the mechanisms defined in this document. Timers T1 and T2 are used
both by a restarting router and a starting router. Timer T3 is used
only by a restarting router.<a href="#section-3.1-1" class="pilcrow">¶</a></p>
<p id="section-3.1-2">NOTE: These timers are NOT applicable to a router that is
preparing to do a planned restart.<a href="#section-3.1-2" class="pilcrow">¶</a></p>
<p id="section-3.1-3">An instance of the timer T1 is maintained per interface and
indicates the time after which an unacknowledged (re)start attempt
will be repeated. A typical value is 3 seconds.<a href="#section-3.1-3" class="pilcrow">¶</a></p>
<p id="section-3.1-4">An instance of the timer T2 is maintained for each LSP database
(LSPDB) present in the system. For example, for a Level 1/2 system,
there will be an instance of the timer T2 for Level 1 and an instance
for Level 2. This is the maximum time that the system will wait for
LSPDB synchronization. A typical value is 60 seconds.<a href="#section-3.1-4" class="pilcrow">¶</a></p>
<p id="section-3.1-5">A single instance of the timer T3 is maintained for the entire
system. It indicates the time after which the router will declare that
it has failed to achieve database synchronization (by setting the
overload bit in its own LSP). This is initialized to 65535 seconds
but is set to the minimum of the remaining times of received IIHs
containing a Restart TLV with the Restart Acknowledgement (RA) set and
an indication that the neighbor has an adjacency in the UP state to
the restarting router. (See <a href="#itema" class="xref">item a</a> in <a href="#useofrrrabitssection" class="xref">Section 3.2.1</a>.)<a href="#section-3.1-5" class="pilcrow">¶</a></p>
</section>
<section id="section-3.2">
<h3 id="name-restart-tlv">
<a href="#section-3.2" class="section-number selfRef">3.2. </a><a href="#name-restart-tlv" class="section-name selfRef">Restart TLV</a>
</h3>
<p id="section-3.2-1">A new TLV is defined to be included in IIH PDUs. The TLV includes
flags that are used to convey information during a (re)start. The
absence of this TLV indicates that the sender supports none of the
functionality defined in this document. Therefore, if a router
supports any of the functionality defined in this document it <span class="bcp14">MUST</span> include this TLV in all transmitted IIHs.<a href="#section-3.2-1" class="pilcrow">¶</a></p>
<dl class="dlNewline" id="section-3.2-2">
<dt id="section-3.2-2.1">Type:</dt>
<dd id="section-3.2-2.2">211<a href="#section-3.2-2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-2.3">Length:</dt>
<dd id="section-3.2-2.4">Number of octets in the Value field (1 to (3 + ID
Length))<a href="#section-3.2-2.4" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-2.5">Value:</dt>
<dd id="section-3.2-2.6">
<div class="artwork art-text alignLeft" id="section-3.2-2.6.1">
<pre>
No. of octets
+-----------------------+
| Flags | 1
+-----------------------+
| Remaining Time | 2
+-----------------------+
| Restarting Neighbor ID| ID Length
+-----------------------+
</pre><a href="#section-3.2-2.6.1" class="pilcrow">¶</a>
</div>
<dl class="dlNewline" id="section-3.2-2.6.2">
<dt id="section-3.2-2.6.2.1">Flags (1 octet)</dt>
<dd id="section-3.2-2.6.2.2">
<div class="artwork art-text alignLeft" id="section-3.2-2.6.2.2.1">
<pre>
0 1 2 3 4 5 6 7
+--+--+--+--+--+--+--+--+
|Reserved|PA|PR|SA|RA|RR|
+--+--+--+--+--+--+--+--+
</pre><a href="#section-3.2-2.6.2.2.1" class="pilcrow">¶</a>
</div>
<dl class="dlParallel dlCompact" id="section-3.2-2.6.2.2.2">
<dt id="section-3.2-2.6.2.2.2.1">RR -</dt>
<dd id="section-3.2-2.6.2.2.2.2">Restart Request<a href="#section-3.2-2.6.2.2.2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-2.6.2.2.2.3">RA -</dt>
<dd id="section-3.2-2.6.2.2.2.4">Restart Acknowledgement<a href="#section-3.2-2.6.2.2.2.4" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-2.6.2.2.2.5">SA -</dt>
<dd id="section-3.2-2.6.2.2.2.6">Suppress adjacency advertisement<a href="#section-3.2-2.6.2.2.2.6" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-2.6.2.2.2.7">PR -</dt>
<dd id="section-3.2-2.6.2.2.2.8">Restart is planned<a href="#section-3.2-2.6.2.2.2.8" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-2.6.2.2.2.9">PA -</dt>
<dd id="section-3.2-2.6.2.2.2.10">Planned restart acknowledgement<a href="#section-3.2-2.6.2.2.2.10" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
<dt id="section-3.2-2.6.2.3">Remaining Time (2 octets)</dt>
<dd id="section-3.2-2.6.2.4">
<p id="section-3.2-2.6.2.4.1">Remaining Holding Time (in seconds).<a href="#section-3.2-2.6.2.4.1" class="pilcrow">¶</a></p>
<p id="section-3.2-2.6.2.4.2">Required when the RA, PR, or PA bit is set. Otherwise, this field
<span class="bcp14">SHOULD</span> be omitted when sent and <span class="bcp14">MUST</span> be ignored
when received.<a href="#section-3.2-2.6.2.4.2" class="pilcrow">¶</a></p>
</dd>
<dt id="section-3.2-2.6.2.5">Restarting Neighbor System ID (ID Length octets)</dt>
<dd id="section-3.2-2.6.2.6">
<p id="section-3.2-2.6.2.6.1">The System ID of the neighbor to which an RA/PA refers.<a href="#section-3.2-2.6.2.6.1" class="pilcrow">¶</a></p>
<p id="section-3.2-2.6.2.6.2">Required when the RA or PA bit is set. Otherwise,
this field <span class="bcp14">SHOULD</span> be omitted when sent and
<span class="bcp14">MUST</span> be ignored when received.<a href="#section-3.2-2.6.2.6.2" class="pilcrow">¶</a></p>
<p id="section-3.2-2.6.2.6.3">Note: Very early draft versions of the restart functionality
did not include the Restarting Neighbor System ID in the TLV.
RFC 5306 allowed for the possibility of interoperating with
legacy implementations by stating that a router that
is expecting an RA on a LAN circuit should assume that the
acknowledgement is directed at the local system if the TLV
is received with RA set and Restarting Neighbor System ID
is not present. It is an implementation choice whether to
continue to accept (on a LAN) a TLV with RA set and
Restarting Neighbor System ID absent. Note that the omission
of the Restarting Neighbor System ID only introduces ambiguity
in the case where there are multiple systems on a LAN
simultaneously performing restart.<a href="#section-3.2-2.6.2.6.3" class="pilcrow">¶</a></p>
</dd>
</dl>
</dd>
</dl>
<p id="section-3.2-3">The RR and SA flags may both be set in the TLV under the conditions
described in <a href="#adjacencyacqsection" class="xref">Section 3.3.2</a>. All other combinations where multiple
flags are set are invalid and <span class="bcp14">MUST NOT</span> be transmitted. Received TLVs
that have invalid flag combinations set <span class="bcp14">MUST</span> be ignored.<a href="#section-3.2-3" class="pilcrow">¶</a></p>
<div id="useofrrrabitssection">
<section id="section-3.2.1">
<h4 id="name-use-of-rr-and-ra-bits">
<a href="#section-3.2.1" class="section-number selfRef">3.2.1. </a><a href="#name-use-of-rr-and-ra-bits" class="section-name selfRef">Use of RR and RA Bits</a>
</h4>
<p id="section-3.2.1-1">The RR bit is used by a (re)starting router to signal to its
neighbors that a (re)start is in progress, that an existing
adjacency <span class="bcp14">SHOULD</span> be maintained even under circumstances when the
normal operation of the adjacency state machine would require the
adjacency to be reinitialized, to request a set of CSNPs, and to
request setting of the SRMflags.<a href="#section-3.2.1-1" class="pilcrow">¶</a></p>
<p id="section-3.2.1-2">The RA bit is sent by the neighbor of a (re)starting router to
acknowledge the receipt of a Restart TLV with the RR bit set.<a href="#section-3.2.1-2" class="pilcrow">¶</a></p>
<p id="section-3.2.1-3">When the neighbor of a (re)starting router receives an IIH with
the Restart TLV having the RR bit set, if there exists on this
interface an adjacency in the UP state with the same System ID and, in
the case of a LAN circuit, with the same source LAN address, then
irrespective of the other contents of the "Intermediate System
Neighbors" option (LAN circuits) or the "Point-to-Point Three-Way
Adjacency" option (Point-to-Point circuits):<a href="#section-3.2.1-3" class="pilcrow">¶</a></p>
<ol start="1" type="a" class="normal type-a" id="section-3.2.1-4">
<div id="itema">
<li id="section-3.2.1-4.1">the state of the adjacency is not changed. If this is the
first IIH with the RR bit set that this system has received
associated with this adjacency, then the adjacency is marked as
being in "Restart mode" and the adjacency Holding Time is
refreshed -- otherwise, the Holding Time is not refreshed. The
Remaining Time transmitted according to (b) below <span class="bcp14">MUST</span> reflect
the actual time after which the adjacency will now expire.
Receipt of an IIH with the RR bit reset will clear the "Restart
mode" state. This procedure allows the restarting router to
cause the neighbor to maintain the adjacency long enough for
restart to successfully complete while also preventing
repetitive restarts from maintaining an adjacency indefinitely.
Whether or not an adjacency is marked as being in "Restart mode"
has no effect on adjacency state transitions.<a href="#section-3.2.1-4.1" class="pilcrow">¶</a>
</li>
</div>
<li id="section-3.2.1-4.2">immediately (i.e., without waiting for any currently running
timer interval to expire but with a small random delay of a few
tens of milliseconds on LANs to avoid "storms") transmit over
the corresponding interface an IIH including the Restart TLV
with the RR bit clear and the RA bit set, in the case of
Point-to-Point adjacencies having updated the "Point-to-Point
Three-Way Adjacency" option to reflect any new values received
from the (re)starting router. (This allows a restarting router
to quickly acquire the correct information to place in its
hellos.) The Remaining Time <span class="bcp14">MUST</span> be set to the current time
(in seconds) before the holding timer on this adjacency is due
to expire. If the corresponding interface is a LAN interface,
then the Restarting Neighbor System ID <span class="bcp14">SHOULD</span> be set to the
System ID of the router from which the IIH with the RR bit set
was received. This is required to correctly associate the
acknowledgement and Holding Time in the case where multiple
systems on a LAN restart at approximately the same time. This
IIH <span class="bcp14">SHOULD</span> be transmitted before any LSPs or SNPs are
transmitted as a result of the receipt of the original IIH.<a href="#section-3.2.1-4.2" class="pilcrow">¶</a>
</li>
<div id="itemc">
<li id="section-3.2.1-4.3">if the corresponding interface is a Point-to-Point interface,
or if the receiving router has the highest LnRouterPriority
(with the highest source Media Access Control (MAC) address
breaking ties) among those routers to which the receiving router
has an adjacency in the UP state on this interface whose IIHs
contain the Restart TLV, excluding adjacencies to all routers
that are considered in "Restart mode" (note the actual
Designated Intermediate System (DIS) is
NOT changed by this process), initiate the transmission over the
corresponding interface of a complete set of CSNPs, and set
SRMflags on the corresponding interface for all LSPs in the
local LSP database.<a href="#section-3.2.1-4.3" class="pilcrow">¶</a>
</li>
</div>
</ol>
<p id="section-3.2.1-5">Otherwise (i.e., if there was no adjacency in the UP
state to the System ID in question), process the IIH as normal by
reinitializing the adjacency and setting the RA bit in the returned
IIH.<a href="#section-3.2.1-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="useofsabitsection">
<section id="section-3.2.2">
<h4 id="name-use-of-the-sa-bit">
<a href="#section-3.2.2" class="section-number selfRef">3.2.2. </a><a href="#name-use-of-the-sa-bit" class="section-name selfRef">Use of the SA Bit</a>
</h4>
<p id="section-3.2.2-1">The SA bit is used by a starting router to request that its
neighbor suppress advertisement of the adjacency to the starting
router in the neighbor's LSPs.<a href="#section-3.2.2-1" class="pilcrow">¶</a></p>
<p id="section-3.2.2-2">A router that is starting has no maintained forwarding function
state. This may or may not be the first time the router has started.
If this is not the first time the router has started, copies of LSPs
generated by this router in its previous incarnation may exist in
the LSP databases of other routers in the network. These copies are
likely to appear "newer" than LSPs initially generated by the
starting router due to the reinitialization of LSP fragment sequence
numbers by the starting router. This may cause temporary blackholes
to occur until the normal operation of the update process causes the
starting router to regenerate and flood copies of its own LSPs with
higher sequence numbers. The temporary blackholes can be avoided if
the starting router's neighbors suppress advertising an adjacency to
the starting router until the starting router has been able to
propagate newer versions of LSPs generated by previous
incarnations.<a href="#section-3.2.2-2" class="pilcrow">¶</a></p>
<p id="section-3.2.2-3">When a router receives an IIH with the Restart TLV having the SA
bit set, if there exists on this interface an adjacency in the UP state
with the same System ID and, in the case of a LAN circuit, with
the same source LAN address, then the router <span class="bcp14">MUST</span> suppress
advertisement of the adjacency to the neighbor in its own LSPs.
Until an IIH with the SA bit clear has been received, the neighbor
advertisement <span class="bcp14">MUST</span> continue to be suppressed. If the adjacency
transitions to the UP state, the new adjacency <span class="bcp14">MUST NOT</span> be
advertised until an IIH with the SA bit clear has been received.<a href="#section-3.2.2-3" class="pilcrow">¶</a></p>
<p id="section-3.2.2-4">Note that a router that suppresses advertisement of an adjacency
<span class="bcp14">MUST NOT</span> use this adjacency when performing its SPF calculation. In
particular, if an implementation follows the example guidelines
presented in <span>[<a href="#ISO10589" class="xref">ISO10589</a>]</span>, Annex C.2.5, Step 0:b) "pre-load TENT with
the local adjacency database", the suppressed adjacency <span class="bcp14">MUST NOT</span> be
loaded into TENT.<a href="#section-3.2.2-4" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-3.2.3">
<h4 id="name-use-of-pr-and-pa-bits">
<a href="#section-3.2.3" class="section-number selfRef">3.2.3. </a><a href="#name-use-of-pr-and-pa-bits" class="section-name selfRef">Use of PR and PA Bits</a>
</h4>
<p id="section-3.2.3-1">The PR bit is used by a router that is planning to initiate a
restart to signal to its neighbors that it will be restarting. The
router sending an IIH with PR bit set <span class="bcp14">SHOULD</span> set the Remaining
Time to a value greater than the expected control-plane restart
time. The PR bit <span class="bcp14">SHOULD</span> remain set in IIHs until the restart is
initiated.<a href="#section-3.2.3-1" class="pilcrow">¶</a></p>
<p id="section-3.2.3-2">The PA bit is sent by the neighbor of a router planning to
restart to acknowledge receipt of a Restart TLV with the PR bit
set.<a href="#section-3.2.3-2" class="pilcrow">¶</a></p>
<p id="section-3.2.3-3">When the neighbor of a router planning a restart receives an IIH
with the Restart TLV having the PR bit set, if there exists on this
interface an adjacency in the UP state with the same System ID and, in
the case of a LAN circuit, with the same source LAN address,
then:<a href="#section-3.2.3-3" class="pilcrow">¶</a></p>
<ol start="1" type="a" class="normal type-a" id="section-3.2.3-4">
<li id="section-3.2.3-4.1">if this is the first IIH with the PR bit set that this system
has received associated with this adjacency, then the adjacency
is marked as being in Planned Restart State and the adjacency
Holding Time is refreshed -- otherwise, the Holding Time is not
refreshed. The Holding Time <span class="bcp14">SHOULD</span> be set to the Remaining
Time specified in the received IIH with PR set. The Remaining
Time transmitted according to (b) below <span class="bcp14">MUST</span> reflect the actual
time after which the adjacency will now expire. Receipt of an
IIH with the PR bit reset will clear the Planned Restart State
and cause the receiving router to set the adjacency Holding Time to
the locally configured value. This procedure allows the router
planning a restart to cause the neighbor to maintain the
adjacency long enough for restart to successfully complete.
Whether or not an adjacency is marked as being in Planned
Restart State has no effect on adjacency state transitions.<a href="#section-3.2.3-4.1" class="pilcrow">¶</a>
</li>
<li id="section-3.2.3-4.2">immediately (i.e., without waiting for any currently running
timer interval to expire, but with a small random delay of a few
tens of milliseconds on LANs to avoid "storms") transmit over
the corresponding interface an IIH including the Restart TLV
with the PR bit clear and the PA bit set. The Remaining Time
<span class="bcp14">MUST</span> be set to the current time (in seconds) before the holding
timer on this adjacency is due to expire. If the corresponding
interface is a LAN interface, then the Restarting Neighbor
System ID <span class="bcp14">SHOULD</span> be set to the System ID of the router from
which the IIH with the PR bit set was received. This is required
to correctly associate the acknowledgement and Holding Time in
the case where multiple systems on a LAN are planning a restart
at approximately the same time.<a href="#section-3.2.3-4.2" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-3.2.3-5">NOTE: Receipt of an IIH with PA bit set indicates to the router
planning a restart that the neighbor is aware of the planned restart
and -- in the absence of topology changes as described below -- will
maintain the adjacency for the Remaining Time included in the IIH
with PA set.<a href="#section-3.2.3-5" class="pilcrow">¶</a></p>
<p id="section-3.2.3-6">By definition, a restarting router maintains forwarding state
across the control-plane restart (see <a href="#conventions" class="xref">Section 2</a>). But while a
control-plane restart is in progress, it is expected that the
restarting router will be unable to respond to topology changes. It
is therefore useful to signal a planned restart so that the
neighbors of the restarting router can determine whether it is safe
to maintain the adjacency if other topology changes occur prior to
the completion of the restart. Signaling a planned restart in the
absence of maintained forwarding-plane state is likely to lead to
significant traffic loss and <span class="bcp14">MUST NOT</span> be done.<a href="#section-3.2.3-6" class="pilcrow">¶</a></p>
<p id="section-3.2.3-7">Neighbors of the router that have signaled planned restart <span class="bcp14">SHOULD</span>
maintain the adjacency in a Planned Restart State until it receives
an IIH with the RR bit set, it receives an IIH with both PR and RR bits
clear, or the adjacency Holding Time expires -- whichever occurs
first. Neighbors that choose not to follow the recommended behavior
need to consider the impact on traffic delivery of not using the
restarting router for forwarding traffic during the restart
period.<a href="#section-3.2.3-7" class="pilcrow">¶</a></p>
<p id="section-3.2.3-8">While the adjacency is in Planned Restart State, some or all of
the following actions <span class="bcp14">MAY</span> be taken:<a href="#section-3.2.3-8" class="pilcrow">¶</a></p>
<ol start="1" type="a" class="normal type-a" id="section-3.2.3-9">
<li id="section-3.2.3-9.1">If additional topology changes occur, the adjacency that is
in Planned Restart State <span class="bcp14">MAY</span> be brought down even though the
Holding Time has not yet expired. Given that the neighbor that has
signaled a planned restart is not expected to update its
forwarding plane in response to signaling of the topology
changes (since it is restarting) traffic that transits that
node is at risk of being improperly forwarded. On a LAN circuit,
if the router in Planned Restart State is the DIS at any
supported level, the adjacency or adjacencies <span class="bcp14">SHOULD</span> be brought down
whenever any LSP update is either generated or received so as
to trigger a new DIS election. Failure to do so will compromise
the reliability of the update process on that circuit. What
other criteria are used to determine what topology changes will
trigger bringing the adjacency down is a local implementation
decision.<a href="#section-3.2.3-9.1" class="pilcrow">¶</a>
</li>
<li id="section-3.2.3-9.2">If a Bidirectional Forwarding Detection (BFD) <span>[<a href="#RFC5880" class="xref">RFC5880</a>]</span> Session to the neighbor
that signals a planned restart is in the UP state and
subsequently goes down, the event <span class="bcp14">MAY</span> be ignored since it is
possible this is an expected side effect of the restart. Use of
the Control-Plane Independent state as signaled in BFD control
packets <span class="bcp14">SHOULD</span> be considered in the decision to ignore a BFD
Session DOWN event.<a href="#section-3.2.3-9.2" class="pilcrow">¶</a>
</li>
<li id="section-3.2.3-9.3">On a Point-to-Point circuit, transmission of LSPs, CSNPs, and
Partial Sequence Number PDU (PSNPs) <span class="bcp14">MAY</span> be suppressed. It is expected that the PDUs will not
be received.<a href="#section-3.2.3-9.3" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-3.2.3-10">Use of the PR bit provides a means to safely support restart
periods that are significantly longer than standard Holding Times.<a href="#section-3.2.3-10" class="pilcrow">¶</a></p>
</section>
</section>
<section id="section-3.3">
<h3 id="name-adjacency-reacquisition">
<a href="#section-3.3" class="section-number selfRef">3.3. </a><a href="#name-adjacency-reacquisition" class="section-name selfRef">Adjacency (Re)Acquisition</a>
</h3>
<p id="section-3.3-1">Adjacency (re)acquisition is the first step in (re)initialization.
Restarting and starting routers will make use of the RR bit in the
Restart TLV, though each will use it at different stages of the
(re)start procedure.<a href="#section-3.3-1" class="pilcrow">¶</a></p>
<div id="adjacencyreacqsection">
<section id="section-3.3.1">
<h4 id="name-adjacency-reacquisition-dur">
<a href="#section-3.3.1" class="section-number selfRef">3.3.1. </a><a href="#name-adjacency-reacquisition-dur" class="section-name selfRef">Adjacency Reacquisition during Restart</a>
</h4>
<p id="section-3.3.1-1">The restarting router explicitly notifies its neighbor that the
adjacency is being reacquired and, hence, that it <span class="bcp14">SHOULD NOT</span>
reinitialize the adjacency. This is achieved by setting the RR bit
in the Restart TLV. When the neighbor of a restarting router
receives an IIH with the Restart TLV having the RR bit set, if there
exists on this interface an adjacency in the UP state with the same
System ID and, in the case of a LAN circuit, with the same source
LAN address, then the procedures described in <a href="#useofrrrabitssection" class="xref">Section 3.2.1</a> are
followed.<a href="#section-3.3.1-1" class="pilcrow">¶</a></p>
<p id="section-3.3.1-2">A router that does not support the restart capability will ignore
the Restart TLV and reinitialize the adjacency as normal, returning
an IIH without the Restart TLV.<a href="#section-3.3.1-2" class="pilcrow">¶</a></p>
<p id="section-3.3.1-3">On restarting, a router initializes the timer T3, starts the
timer T2 for each LSPDB, and for each interface (and in the case of
a LAN circuit, for each level) starts the timer T1 and transmits an
IIH containing the Restart TLV with the RR bit set.<a href="#section-3.3.1-3" class="pilcrow">¶</a></p>
<p id="section-3.3.1-4">On a Point-to-Point circuit, the restarting router <span class="bcp14">SHOULD</span> set the
"Adjacency Three-Way State" to "Init", because the receipt of the
acknowledging IIH (with RA set) <span class="bcp14">MUST</span> cause the adjacency to enter
the UP state immediately.<a href="#section-3.3.1-4" class="pilcrow">¶</a></p>
<p id="section-3.3.1-5">On a LAN circuit, the LAN-ID assigned to the circuit <span class="bcp14">SHOULD</span> be
the same as that used prior to the restart. In particular, for any
circuits for which the restarting router was previously DIS, the use
of a different LAN-ID would necessitate the generation of a new set
of pseudonode LSPs and corresponding changes in all the LSPs
referencing them from other routers on the LAN. By preserving the
LAN-ID across the restart, this churn can be prevented. To enable a
restarting router to learn the LAN-ID used prior to restart, the
LAN-ID specified in an IIH with RR set <span class="bcp14">MUST</span> be ignored.<a href="#section-3.3.1-5" class="pilcrow">¶</a></p>
<p id="section-3.3.1-6">Transmission of "normal IIHs" is inhibited until the conditions
described below are met (in order to avoid causing an unnecessary
adjacency initialization). Upon expiry of the timer T1, it is
restarted and the IIH is retransmitted as above.<a href="#section-3.3.1-6" class="pilcrow">¶</a></p>
<p id="section-3.3.1-7">When a restarting router receives an IIH a local adjacency is
established as usual, and if the IIH contains a Restart TLV with the
RA bit set (and on LAN circuits with a Restart Neighbor System ID
that matches that of the local system), the receipt of the
acknowledgement over that interface is noted. When the RA bit is set
and the state of the remote adjacency is UP, then the timer T3 is
set to the minimum of its current value and the value of the
Remaining Time field in the received IIH.<a href="#section-3.3.1-7" class="pilcrow">¶</a></p>
<p id="section-3.3.1-8">On a Point-to-Point link, receipt of an IIH not containing the
Restart TLV is also treated as an acknowledgement, since it
indicates that the neighbor is not restart capable. However, since
no CSNP is guaranteed to be received over this interface, the timer
T1 is canceled immediately without waiting for a complete set of
CSNPs. Synchronization may therefore be deemed complete even though
there are some LSPs that are held (only) by this neighbor (see
<a href="#dbsyncsection" class="xref">Section 3.4</a>). In this case, we also want to be certain that the
neighbor will reinitialize the adjacency in order to guarantee that
the SRMflags have been set on its database, thus ensuring eventual
LSPDB synchronization. This is guaranteed to happen except in the
case where the Adjacency Three-Way State in the received IIH is UP
and the Neighbor Extended Local Circuit ID matches the Extended
Local Circuit ID assigned by the restarting router. In this case,
the restarting router <span class="bcp14">MUST</span> force the adjacency to reinitialize by
setting the local Adjacency Three-Way State to DOWN and sending a
normal IIH.<a href="#section-3.3.1-8" class="pilcrow">¶</a></p>
<p id="section-3.3.1-9">In the case of a LAN interface, receipt of an IIH not containing
the Restart TLV is unremarkable since synchronization can still
occur so long as at least one of the non-restarting neighboring
routers on the LAN supports restart. Therefore, T1 continues to run
in this case. If none of the neighbors on the LAN are restart
capable, T1 will eventually expire after the locally defined number
of retries.<a href="#section-3.3.1-9" class="pilcrow">¶</a></p>
<p id="section-3.3.1-10">In the case of a Point-to-Point circuit, the LocalCircuitID and
Extended Local Circuit ID information contained in the IIH can be
used immediately to generate an IIH containing the correct three-way
handshake information. The presence of Neighbor Extended Local
Circuit ID information that does not match the value currently in
use by the local system is ignored (since the IIH may have been
transmitted before the neighbor had received the new value from the
restarting router), but the adjacency remains in the initializing
state until the correct information is received.<a href="#section-3.3.1-10" class="pilcrow">¶</a></p>
<p id="section-3.3.1-11">In the case of a LAN circuit, the source neighbor information
(e.g., SNPAAddress) is recorded and used for adjacency establishment
and maintenance as normal.<a href="#section-3.3.1-11" class="pilcrow">¶</a></p>
<p id="section-3.3.1-12">When BOTH a complete set of CSNPs (for each active level, in the
case of a Point-to-Point circuit) and an acknowledgement have been
received over the interface, the timer T1 is canceled.<a href="#section-3.3.1-12" class="pilcrow">¶</a></p>
<p id="section-3.3.1-13">Once the timer T1 has been canceled, subsequent IIHs are
transmitted according to the normal algorithms but including the
Restart TLV with both RR and RA clear.<a href="#section-3.3.1-13" class="pilcrow">¶</a></p>
<p id="section-3.3.1-14">If a LAN contains a mixture of systems, only some of which
support the new algorithm, database synchronization is still
guaranteed, but the "old" systems will have reinitialized their
adjacencies.<a href="#section-3.3.1-14" class="pilcrow">¶</a></p>
<p id="section-3.3.1-15">If an interface is active but does not have any neighboring
router reachable over that interface, the timer T1 would never be
canceled, and according to <a href="#restartingsection" class="xref">Section 3.4.1.1</a>, the SPF would never be
run. Therefore, timer T1 is canceled after some predetermined
number of expirations (which <span class="bcp14">MAY</span> be 1).<a href="#section-3.3.1-15" class="pilcrow">¶</a></p>
</section>
</div>
<div id="adjacencyacqsection">
<section id="section-3.3.2">
<h4 id="name-adjacency-acquisition-durin">
<a href="#section-3.3.2" class="section-number selfRef">3.3.2. </a><a href="#name-adjacency-acquisition-durin" class="section-name selfRef">Adjacency Acquisition during Start</a>
</h4>
<p id="section-3.3.2-1">The starting router wants to ensure that in the event that a
neighboring router has an adjacency to the starting router in the
UP state (from a previous incarnation of the starting router),
this adjacency is reinitialized. The starting router also wants
neighboring routers to suppress advertisement of an adjacency to the
starting router until LSP database synchronization is achieved. This
is achieved by sending IIHs with the RR bit clear and the SA bit set
in the Restart TLV. The RR bit remains clear and the SA bit remains
set in subsequent transmissions of IIHs until the adjacency has
reached the UP state and the initial T1 timer interval (see below)
has expired.<a href="#section-3.3.2-1" class="pilcrow">¶</a></p>
<p id="section-3.3.2-2">Receipt of an IIH with the RR bit clear will result in the
neighboring router utilizing normal operation of the adjacency state
machine. This will ensure that any old adjacency on the neighboring
router will be reinitialized.<a href="#section-3.3.2-2" class="pilcrow">¶</a></p>
<p id="section-3.3.2-3">Upon receipt of an IIH with the SA bit set, the behavior
described in <a href="#useofsabitsection" class="xref">Section 3.2.2</a> is followed.<a href="#section-3.3.2-3" class="pilcrow">¶</a></p>
<p id="section-3.3.2-4">Upon starting, a router starts timer T2 for each LSPDB.<a href="#section-3.3.2-4" class="pilcrow">¶</a></p>
<p id="section-3.3.2-5">For each interface (and in the case of a LAN circuit, for each
level), when an adjacency reaches the UP state, the starting
router starts a timer T1 and transmits an IIH containing the restart
TLV with the RR bit clear and SA bit set. Upon expiry of the timer
T1, it is restarted and the IIH is retransmitted with both RR and SA
bits set (only the RR bit has changed state from earlier IIHs).<a href="#section-3.3.2-5" class="pilcrow">¶</a></p>
<p id="section-3.3.2-6">Upon receipt of an IIH with the RR bit set (regardless of whether
or not the SA bit is set), the behavior described in <a href="#useofrrrabitssection" class="xref">Section 3.2.1</a>
is followed.<a href="#section-3.3.2-6" class="pilcrow">¶</a></p>
<p id="section-3.3.2-7">When an IIH is received by the starting router and the IIH
contains a Restart TLV with the RA bit set (and on LAN circuits with
a Restart Neighbor System ID that matches that of the local system),
the receipt of the acknowledgement over that interface is noted.<a href="#section-3.3.2-7" class="pilcrow">¶</a></p>
<p id="section-3.3.2-8">On a Point-to-Point link, receipt of an IIH not containing the
Restart TLV is also treated as an acknowledgement, since it
indicates that the neighbor is not restart capable. Since the
neighbor will have reinitialized the adjacency, this guarantees that
SRMflags have been set on its database, thus ensuring eventual LSPDB
synchronization. However, since no CSNP is guaranteed to be received
over this interface, the timer T1 is canceled immediately without
waiting for a complete set of CSNPs. Synchronization may therefore
be deemed complete even though there are some LSPs that are held
(only) by this neighbor (see <a href="#dbsyncsection" class="xref">Section 3.4</a>).<a href="#section-3.3.2-8" class="pilcrow">¶</a></p>
<p id="section-3.3.2-9">In the case of a LAN interface, receipt of an IIH not containing
the Restart TLV is unremarkable since synchronization can still
occur so long as at least one of the non-restarting neighboring
routers on the LAN supports restart. Therefore, T1 continues to run
in this case. If none of the neighbors on the LAN are restart
capable, T1 will eventually expire after the locally defined number
of retries. The usual operation of the update process will ensure
that synchronization is eventually achieved.<a href="#section-3.3.2-9" class="pilcrow">¶</a></p>
<p id="section-3.3.2-10">When BOTH a complete set of CSNPs (for each active level, in the
case of a Point-to-Point circuit) and an acknowledgement have been
received over the interface, the timer T1 is canceled. Subsequent
IIHs sent by the starting router have the RR and RA bits clear and
the SA bit set in the Restart TLV.<a href="#section-3.3.2-10" class="pilcrow">¶</a></p>
<p id="section-3.3.2-11">Timer T1 is canceled after some predetermined number of
expirations (which <span class="bcp14">MAY</span> be 1).<a href="#section-3.3.2-11" class="pilcrow">¶</a></p>
<p id="section-3.3.2-12">When the T2 timer(s) are canceled or expire, transmission of
"normal IIHs" will begin.<a href="#section-3.3.2-12" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-3.3.3">
<h4 id="name-multiple-levels">
<a href="#section-3.3.3" class="section-number selfRef">3.3.3. </a><a href="#name-multiple-levels" class="section-name selfRef">Multiple Levels</a>
</h4>
<p id="section-3.3.3-1">A router that is operating as both a Level 1 and a Level 2 router
on a particular interface <span class="bcp14">MUST</span> perform the above operations for each
level.<a href="#section-3.3.3-1" class="pilcrow">¶</a></p>
<p id="section-3.3.3-2">On a LAN interface, it <span class="bcp14">MUST</span> send and receive both Level 1 and
Level 2 IIHs and perform the CSNP synchronizations independently for
each level.<a href="#section-3.3.3-2" class="pilcrow">¶</a></p>
<p id="section-3.3.3-3">On a Point-to-Point interface, only a single IIH (indicating
support for both levels) is required, but it <span class="bcp14">MUST</span> perform the CSNP
synchronizations independently for each level.<a href="#section-3.3.3-3" class="pilcrow">¶</a></p>
</section>
</section>
<div id="dbsyncsection">
<section id="section-3.4">
<h3 id="name-database-synchronization">
<a href="#section-3.4" class="section-number selfRef">3.4. </a><a href="#name-database-synchronization" class="section-name selfRef">Database Synchronization</a>
</h3>
<p id="section-3.4-1">When a router is started or restarted, it can expect to receive a
complete set of CSNPs over each interface. The arrival of the CSNP(s)
is now guaranteed, since an IIH with the RR bit set will be
retransmitted until the CSNP(s) are correctly received.<a href="#section-3.4-1" class="pilcrow">¶</a></p>
<p id="section-3.4-2">The CSNPs describe the set of LSPs that are currently held by each
neighbor. Synchronization will be complete when all these LSPs have
been received.<a href="#section-3.4-2" class="pilcrow">¶</a></p>
<p id="section-3.4-3">When (re)starting, a router starts an instance of timer T2 for each
LSPDB, as described in <a href="#adjacencyreacqsection" class="xref">Section 3.3.1</a> or <a href="#adjacencyacqsection" class="xref">Section 3.3.2</a>. In addition to
normal processing of the CSNPs, the set of LSPIDs contained in the
first complete set of CSNPs received over each interface is recorded,
together with their remaining lifetime. In the case of a LAN
interface, a complete set of CSNPs <span class="bcp14">MUST</span> consist of CSNPs received from
neighbors that are not restarting. If there are multiple interfaces on
the (re)starting router, the recorded set of LSPIDs is the union of
those received over each interface. LSPs with a remaining lifetime of
zero are NOT so recorded.<a href="#section-3.4-3" class="pilcrow">¶</a></p>
<p id="section-3.4-4">As LSPs are received (by the normal operation of the update
process) over any interface, the corresponding LSPID entry is removed
(it is also removed if an LSP arrives before the CSNP containing the
reference). When an LSPID has been held in the list for its indicated
remaining lifetime, it is removed from the list. When the list of
LSPIDs is empty and the timer T1 has been canceled for all the
interfaces that have an adjacency at this level, the timer T2 is
canceled.<a href="#section-3.4-4" class="pilcrow">¶</a></p>
<p id="section-3.4-5">At this point, the local database is guaranteed to contain all the
LSP(s) (either the same sequence number or a more recent sequence
number) that were present in the neighbors' databases at the time of
(re)starting. LSPs that arrived in a neighbor's database after the
time of (re)starting may or may not be present, but the normal
operation of the update process will guarantee that they will
eventually be received. At this point, the local database is deemed to
be "synchronized".<a href="#section-3.4-5" class="pilcrow">¶</a></p>
<p id="section-3.4-6">Since LSPs mentioned in the CSNP(s) with a zero remaining lifetime
are not recorded and those with a short remaining lifetime are
deleted from the list when the lifetime expires, cancellation of the
timer T2 will not be prevented by waiting for an LSP that will never
arrive.<a href="#section-3.4-6" class="pilcrow">¶</a></p>
<section id="section-3.4.1">
<h4 id="name-lsp-generation-and-flooding">
<a href="#section-3.4.1" class="section-number selfRef">3.4.1. </a><a href="#name-lsp-generation-and-flooding" class="section-name selfRef">LSP Generation and Flooding and SPF Computation</a>
</h4>
<p id="section-3.4.1-1">The operation of a router starting, as opposed to restarting, is
somewhat different. These two cases are dealt with separately
below.<a href="#section-3.4.1-1" class="pilcrow">¶</a></p>
<div id="restartingsection">
<section id="section-3.4.1.1">
<h5 id="name-restarting">
<a href="#section-3.4.1.1" class="section-number selfRef">3.4.1.1. </a><a href="#name-restarting" class="section-name selfRef">Restarting</a>
</h5>
<p id="section-3.4.1.1-1">In order to avoid causing unnecessary routing churn in other
routers, it is highly desirable that the router's own LSPs
generated by the restarting system are the same as those
previously present in the network (assuming no other changes have
taken place). It is important therefore not to regenerate and
flood the LSPs until all the adjacencies have been reestablished
and any information required for propagation into the local LSPs
is fully available. Ideally, the information is loaded into the
LSPs in a deterministic way, such that the same information occurs
in the same place in the same LSP (and hence the LSPs are
identical to their previous versions). If this can be achieved,
the new versions may not even cause SPF to be run in other
systems. However, provided the same information is included in the
set of LSPs (albeit in a different order, and possibly different
LSPs), the result of running the SPF will be the same and will not
cause churn to the forwarding tables.<a href="#section-3.4.1.1-1" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-2">In the case of a restarting router, none of the router's own
LSPs are transmitted, nor are the router's own forwarding tables
updated while the timer T3 is running.<a href="#section-3.4.1.1-2" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-3">Redistribution of inter-level information <span class="bcp14">MUST</span> be regenerated
before this router's LSP is flooded to other nodes. Therefore, the
Level-n non-pseudonode LSP(s) <span class="bcp14">MUST NOT</span> be flooded until the other
level's T2 timer has expired and its SPF has been run. This
ensures that any inter-level information that is to be propagated
can be included in the Level-n LSP(s).<a href="#section-3.4.1.1-3" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-4">During this period, if one of the router's own (including
pseudonodes) LSPs is received, which the local router does not
currently have in its own database, it is NOT purged. Under normal
operation, such an LSP would be purged, since the LSP clearly
should not be present in the global LSP database. However, in the
present circumstances, this would be highly undesirable, because
it could cause premature removal of a router's own LSP -- and
hence churn in remote routers. Even if the local system has one or
more of the router's own LSPs (which it has generated but not yet
transmitted), it is still not valid to compare the received LSP
against this set, since it may be that as a result of propagation
between Level 1 and Level 2 (or vice versa), a further router's
own LSP will need to be generated when the LSP databases have
synchronized.<a href="#section-3.4.1.1-4" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-5">During this period, a restarting router <span class="bcp14">SHOULD</span> send CSNPs as it
normally would. Information about the router's own LSPs <span class="bcp14">MAY</span> be
included, but if it is included, it <span class="bcp14">MUST</span> be based on LSPs that have
been received, not on versions that have been generated (but not
yet transmitted). This restriction is necessary to prevent
premature removal of an LSP from the global LSP database.<a href="#section-3.4.1.1-5" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-6">When the timer T2 expires or is canceled, indicating that
synchronization for that level is complete, the SPF for that level
is run in order to derive any information that is required to be
propagated to another level, but the forwarding tables are not yet
updated.<a href="#section-3.4.1.1-6" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-7">Once the other level's SPF has run and any inter-level
propagation has been resolved, the router's own LSPs can be
generated and flooded. Any own LSPs that were previously ignored,
but that are not part of the current set of own LSPs (including
pseudonodes), <span class="bcp14">MUST</span> then be purged. Note that it is possible that a
Designated Router change may have taken place and, consequently,
the router <span class="bcp14">SHOULD</span> purge those pseudonode LSPs that it previously
owned but that are now no longer part of its set of pseudonode
LSPs.<a href="#section-3.4.1.1-7" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-8">When all the T2 timers have expired or been canceled, the
timer T3 is canceled, and the local forwarding tables are
updated.<a href="#section-3.4.1.1-8" class="pilcrow">¶</a></p>
<p id="section-3.4.1.1-9">If the timer T3 expires before all the T2 timers have expired
or been canceled, this indicates that the synchronization process
is taking longer than the minimum Holding Time of the neighbors.
The router's own LSP(s) for levels that have not yet completed
their first SPF computation are then flooded with the overload bit
set to indicate that the router's LSPDB is not yet synchronized
(and therefore other routers <span class="bcp14">MUST NOT</span> compute routes through this
router). Normal operation of the update process resumes, and the
local forwarding tables are updated. In order to prevent the
neighbor's adjacencies from expiring, IIHs with the normal
interface value for the Holding Time are transmitted over all
interfaces with neither RR nor RA set in the Restart TLV. This
will cause the neighbors to refresh their adjacencies. The
router's own LSP(s) will continue to have the overload bit set
until timer T2 has expired or been canceled.<a href="#section-3.4.1.1-9" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-3.4.1.2">
<h5 id="name-starting">
<a href="#section-3.4.1.2" class="section-number selfRef">3.4.1.2. </a><a href="#name-starting" class="section-name selfRef">Starting</a>
</h5>
<p id="section-3.4.1.2-1">In the case of a starting router, as soon as each adjacency is
established, and before any CSNP exchanges, the router's own
zeroth LSP is transmitted with the overload bit set. This prevents
other routers from computing routes through the router until it
has reliably acquired the complete set of LSPs. The overload bit
remains set in subsequent transmissions of the zeroth LSP (such as
will occur if a previous copy of the router's own zeroth LSP is
still present in the network) while any timer T2 is running.<a href="#section-3.4.1.2-1" class="pilcrow">¶</a></p>
<p id="section-3.4.1.2-2">When all the T2 timers have been canceled, the router's own
LSP(s) <span class="bcp14">MAY</span> be regenerated with the overload bit clear (assuming
the router is not in fact overloaded, and there is no other
reason, such as incomplete BGP convergence, to keep the overload
bit set) and flooded as normal.<a href="#section-3.4.1.2-2" class="pilcrow">¶</a></p>
<p id="section-3.4.1.2-3">Other LSPs owned by this router (including pseudonodes) are
generated and flooded as normal, irrespective of the timer T2. The
SPF is also run as normal and the Routing Information Base (RIB)
and Forwarding Information Base (FIB) updated as routes become
available.<a href="#section-3.4.1.2-3" class="pilcrow">¶</a></p>
<p id="section-3.4.1.2-4">To avoid the possible formation of temporary blackholes, the
starting router sets the SA bit in the Restart TLV (as described
in <a href="#adjacencyacqsection" class="xref">Section 3.3.2</a>) in all IIHs that it sends.<a href="#section-3.4.1.2-4" class="pilcrow">¶</a></p>
<p id="section-3.4.1.2-5">When all T2 timers have been canceled, the starting router
<span class="bcp14">MUST</span> transmit IIHs with the SA bit clear.<a href="#section-3.4.1.2-5" class="pilcrow">¶</a></p>
</section>
</section>
</section>
</div>
</section>
<section id="section-4">
<h2 id="name-state-tables">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-state-tables" class="section-name selfRef">State Tables</a>
</h2>
<p id="section-4-1">This section presents state tables that summarize the behaviors
described in this document. Other behaviors, in particular adjacency
state transitions and LSP database update operations, are NOT included in
the state tables except where this document modifies the behaviors
described in <span>[<a href="#ISO10589" class="xref">ISO10589</a>]</span> and <span>[<a href="#RFC5303" class="xref">RFC5303</a>]</span>.<a href="#section-4-1" class="pilcrow">¶</a></p>
<p id="section-4-2">The states named in the columns of the tables below are a mixture of
states that are specific to a single adjacency (ADJ suppressed, ADJ Seen
RA, ADJ Seen CSNP) and states that are indicative of the state of the
protocol instance (Running, Restarting, Starting, SPF Wait).<a href="#section-4-2" class="pilcrow">¶</a></p>
<p id="section-4-3">Three state tables are presented from the point of view of a running
router, a restarting router, and a starting router.<a href="#section-4-3" class="pilcrow">¶</a></p>
<section id="section-4.1">
<h3 id="name-running-router">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-running-router" class="section-name selfRef">Running Router</a>
</h3>
<span id="name-running-router-2"></span><div id="table1">
<table class="center" id="table-1">
<caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-running-router-2" class="selfRef">Running Router</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Event</th>
<th class="text-left" rowspan="1" colspan="1">Running</th>
<th class="text-left" rowspan="1" colspan="1">ADJ suppressed</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX PR</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.1-1.2.1.2.1">Set Planned Restart State<br>
Update Holding Time<br>
Send PA<a href="#section-4.1-1.2.1.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX PR clr and RR clr</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.1-1.2.2.2.1">Clear Planned Restart State<br>
Restore Holding Time to local value<a href="#section-4.1-1.2.2.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX RR</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.1-1.2.3.2.1">Maintain ADJ State<br>
Send RA<br>
Set SRM, send CSNP (<a href="#note1" class="xref">Note 1</a>)<br>
Update Holding Time,<br> set Restart Mode (<a href="#note2" class="xref">Note 2</a>)<a href="#section-4.1-1.2.3.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX RR clr</td>
<td class="text-left" rowspan="1" colspan="1">Clr Restart mode</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX SA</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.1-1.2.5.2.1">Suppress IS neighbor TLV in LSP(s)<br>
Goto ADJ Suppressed<a href="#section-4.1-1.2.5.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX SA clr</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.1-1.2.6.3.1">Unsuppress IS neighbor TLV in LSP(s)<br>
Goto Running<a href="#section-4.1-1.2.6.3.1" class="pilcrow">¶</a></p>
</td>
</tr>
</tbody>
</table>
</div>
<dl class="olPercent" id="section-4.1-2">
<dt>Note 1:</dt>
<div id="note1">
<dd id="section-4.1-2.1">CSNPs are sent by routers in accordance with <a href="#itemc" class="xref">item c</a> in <a href="#useofrrrabitssection" class="xref">Section 3.2.1</a><a href="#section-4.1-2.1" class="pilcrow">¶</a>
</dd>
</div>
<dt>Note 2:</dt>
<div id="note2">
<dd id="section-4.1-2.2">If Restart Mode clear<a href="#section-4.1-2.2" class="pilcrow">¶</a>
</dd>
</div>
</dl>
</section>
<section id="section-4.2">
<h3 id="name-restarting-router">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-restarting-router" class="section-name selfRef">Restarting Router</a>
</h3>
<span id="name-restarting-router-2"></span><div id="table2">
<table class="center" id="table-2">
<caption>
<a href="#table-2" class="selfRef">Table 2</a>:
<a href="#name-restarting-router-2" class="selfRef">Restarting Router</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Event</th>
<th class="text-left" rowspan="1" colspan="1">Restarting</th>
<th class="text-left" rowspan="1" colspan="1">ADJ Seen RA</th>
<th class="text-left" rowspan="1" colspan="1">ADJ Seen CSNP</th>
<th class="text-left" rowspan="1" colspan="1">SPF Wait</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">Restart planned</td>
<td class="text-left" rowspan="1" colspan="1">Send PR</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Planned restart canceled</td>
<td class="text-left" rowspan="1" colspan="1">Send PR clr</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX PA</td>
<td class="text-left" rowspan="1" colspan="1">Proceed with planned restart</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Router restarts</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.4.2.1">Send IIH/RR<br>
ADJ Init<br>
Start T1, T2, T3<a href="#section-4.2-1.2.4.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX RR</td>
<td class="text-left" rowspan="1" colspan="1">Send RA</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX RA</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.6.2.1">Adjust T3<br>
Goto ADJ Seen RA<a href="#section-4.2-1.2.6.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.6.4.1">Cancel T1<br>
Adjust T3<a href="#section-4.2-1.2.6.4.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX CSNP set</td>
<td class="text-left" rowspan="1" colspan="1">Goto ADJ Seen CSNP</td>
<td class="text-left" rowspan="1" colspan="1">Cancel T1</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX IIH w/o Restart TLV</td>
<td class="text-left" rowspan="1" colspan="1">Cancel T1 (Point-to-point only)</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">T1 expires</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.9.2.1">Send IIH/RR<br>
Restart T1<a href="#section-4.2-1.2.9.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.9.3.1">Send IIH/RR<br>
Restart T1<a href="#section-4.2-1.2.9.3.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.9.4.1">Send IIH/RR<br>
Restart T1<a href="#section-4.2-1.2.9.4.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">T1 expires nth time</td>
<td class="text-left" rowspan="1" colspan="1">Send IIH/normal</td>
<td class="text-left" rowspan="1" colspan="1">Send IIH/normal</td>
<td class="text-left" rowspan="1" colspan="1">Send IIH/normal</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">T2 expires</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.11.2.1">Trigger SPF<br>
Goto SPF Wait<a href="#section-4.2-1.2.11.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">T3 expires</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.12.2.1">Set overload bit<br>
Flood local LSPs<br>
Update fwd plane<a href="#section-4.2-1.2.12.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">LSP DB Sync</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.13.2.1">Cancel T2 and T3<br>
Trigger SPF<br>
Goto SPF wait<a href="#section-4.2-1.2.13.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">All SPF done</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.2-1.2.14.5.1">Clear overload bit<br>
Update fwd plane<br>
Flood local LSPs<br>
Goto Running<a href="#section-4.2-1.2.14.5.1" class="pilcrow">¶</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-4.3">
<h3 id="name-starting-router">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-starting-router" class="section-name selfRef">Starting Router</a>
</h3>
<span id="name-starting-router-2"></span><div id="table3">
<table class="center" id="table-3">
<caption>
<a href="#table-3" class="selfRef">Table 3</a>:
<a href="#name-starting-router-2" class="selfRef">Starting Router</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Event</th>
<th class="text-left" rowspan="1" colspan="1">Starting</th>
<th class="text-left" rowspan="1" colspan="1">ADJ Seen RA</th>
<th class="text-left" rowspan="1" colspan="1">ADJ Seen CSNP</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">Router starts</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.3-1.2.1.2.1">Send IIH/SA<br>
Start T1 and T2<a href="#section-4.3-1.2.1.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX RR</td>
<td class="text-left" rowspan="1" colspan="1">Send RA</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX RA</td>
<td class="text-left" rowspan="1" colspan="1">Goto ADJ Seen RA</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">Cancel T1</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX CSNP Set</td>
<td class="text-left" rowspan="1" colspan="1">Goto ADJ Seen CSNP</td>
<td class="text-left" rowspan="1" colspan="1">Cancel T1</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">RX IIH w no Restart TLV</td>
<td class="text-left" rowspan="1" colspan="1">Cancel T1 (Point-to-Point only)</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">ADJ UP</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.3-1.2.6.2.1">Start T1<br>
Send local LSPs with overload bit set<a href="#section-4.3-1.2.6.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">T1 expires</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.3-1.2.7.2.1">Send IIH/RR and SA<br>
Restart T1<a href="#section-4.3-1.2.7.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.3-1.2.7.3.1">Send IIH/RR and SA<br>
Restart T1<a href="#section-4.3-1.2.7.3.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.3-1.2.7.4.1">Send IIH/RR and SA<br>
Restart T1<a href="#section-4.3-1.2.7.4.1" class="pilcrow">¶</a></p>
</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">T1 expires nth time</td>
<td class="text-left" rowspan="1" colspan="1">Send IIH/SA</td>
<td class="text-left" rowspan="1" colspan="1">Send IIH/SA</td>
<td class="text-left" rowspan="1" colspan="1">Send IIH/SA</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">T2 expires</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.3-1.2.9.2.1">Clear overload bit<br>
Send IIH normal<br>
Goto Running<a href="#section-4.3-1.2.9.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">LSP DB Sync</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-4.3-1.2.10.2.1">Cancel T2<br>
Clear overload bit<br>
Send IIH normal<a href="#section-4.3-1.2.10.2.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
<div id="IANA">
<section id="section-5">
<h2 id="name-iana-considerations">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-5-1">This document defines the following IS-IS TLV that is listed in the
"IS-IS TLV Codepoints" registry.<a href="#section-5-1" class="pilcrow">¶</a></p>
<div id="ianatable">
<table class="left" id="table-4">
<caption><a href="#table-4" class="selfRef">Table 4</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Type</th>
<th class="text-left" rowspan="1" colspan="1">Description</th>
<th class="text-left" rowspan="1" colspan="1">IIH</th>
<th class="text-left" rowspan="1" colspan="1">LSP</th>
<th class="text-left" rowspan="1" colspan="1">SNP</th>
<th class="text-left" rowspan="1" colspan="1">Purge</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">211</td>
<td class="text-left" rowspan="1" colspan="1">Restart TLV</td>
<td class="text-left" rowspan="1" colspan="1">y</td>
<td class="text-left" rowspan="1" colspan="1">n</td>
<td class="text-left" rowspan="1" colspan="1">n</td>
<td class="text-left" rowspan="1" colspan="1">n</td>
</tr>
</tbody>
</table>
</div>
<p id="section-5-3">IANA has updated the entry in registry to point to
this document.<a href="#section-5-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Security">
<section id="section-6">
<h2 id="name-security-considerations">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-6-1">Any new security issues raised by the procedures in this document
depend upon the ability of an attacker to inject a false but apparently
valid IIH, the ease/difficulty of which has not been altered.<a href="#section-6-1" class="pilcrow">¶</a></p>
<p id="section-6-2">If the RR bit is set in a false IIH, neighbors who receive such an
IIH will continue to maintain an existing adjacency in the UP state
and may (re)send a complete set of CSNPs. While the latter action is
wasteful, neither action causes any disruption in correct protocol
operation.<a href="#section-6-2" class="pilcrow">¶</a></p>
<p id="section-6-3">If the RA bit is set in a false IIH, a (re)starting router that
receives such an IIH may falsely believe that there is a neighbor on the
corresponding interface that supports the procedures described in this
document. In the absence of receipt of a complete set of CSNPs on that
interface, this could delay the completion of (re)start procedures by
requiring the timer T1 to time out the locally defined maximum number of
retries. This behavior is the same as would occur on a LAN where none of
the (re)starting router's neighbors support the procedures in this
document and is covered in Sections <a href="#adjacencyreacqsection" class="xref">3.3.1</a> and <a href="#adjacencyacqsection" class="xref">3.3.2</a>.<a href="#section-6-3" class="pilcrow">¶</a></p>
<p id="section-6-4">If the SA bit is set in a false IIH, this could cause suppression of
the advertisement of an IS neighbor, which could either continue for an
indefinite period or occur intermittently with the result being a
possible loss of reachability to some destinations in the network and/or
increased frequency of LSP flooding and SPF calculation.<a href="#section-6-4" class="pilcrow">¶</a></p>
<p id="section-6-5">If the PR bit is set in a false IIH, neighbors who receive such an
IIH could modify the Holding Time of an existing adjacency
inappropriately. In the event of topology changes, the neighbor might
also choose to not flood the topology updates and/or bring the adjacency
down in the false belief that the forwarding plane of the router
identified as the source of the false IIH is not currently processing
announced topology changes. This would result in unnecessary forwarding
disruption.<a href="#section-6-5" class="pilcrow">¶</a></p>
<p id="section-6-6">If the PA bit is set in a false IIH, a router that receives such an
IIH may falsely believe that the neighbor on the corresponding interface
supports the planned restart procedures defined in this document. If
such a router is planning to restart, it might then proceed to initiate a
restart in the false expectation that the neighbor has updated its
Holding Time as requested. This may result in the neighbor bringing down
the adjacency while the receiving router is restarting, causing
unnecessary disruption to forwarding.<a href="#section-6-6" class="pilcrow">¶</a></p>
<p id="section-6-7">The possibility of IS-IS PDU spoofing can be reduced by the use of
authentication, as described in <span>[<a href="#RFC1195" class="xref">RFC1195</a>]</span>
and <span>[<a href="#ISO10589" class="xref">ISO10589</a>]</span>, and especially by
the use of cryptographic authentication, as described in <span>[<a href="#RFC5304" class="xref">RFC5304</a>]</span> and <span>[<a href="#RFC5310" class="xref">RFC5310</a>]</span>.<a href="#section-6-7" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-7">
<h2 id="name-manageability-consideration">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-manageability-consideration" class="section-name selfRef">Manageability Considerations</a>
</h2>
<p id="section-7-1">These extensions that have been designed, developed, and deployed for
many years do not have any new impact on management and operation of the
IS-IS protocol via this standardization process.<a href="#section-7-1" class="pilcrow">¶</a></p>
</section>
<section id="section-8">
<h2 id="name-normative-references">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h2>
<dl class="references">
<dt id="ISO10589">[ISO10589]</dt>
<dd>
<span class="refAuthor">ISO</span>, <span class="refTitle">"Information technology -- Telecommunications and information exchange between systems -- Intermediate System to Intermediate System intra-domain routeing information exchange protocol for use in conjunction with the protocol for providing the connectionless-mode network service (ISO 8473)"</span>, <span class="seriesInfo">ISO/IEC 10589:2002, Second Edition</span>, <time datetime="2002-11">November 2002</time>. </dd>
<dt id="RFC1195">[RFC1195]</dt>
<dd>
<span class="refAuthor">Callon, R.</span>, <span class="refTitle">"Use of OSI IS-IS for routing in TCP/IP and dual environments"</span>, <span class="seriesInfo">RFC 1195</span>, <span class="seriesInfo">DOI 10.17487/RFC1195</span>, <time datetime="1990-12">December 1990</time>, <span><<a href="https://www.rfc-editor.org/info/rfc1195">https://www.rfc-editor.org/info/rfc1195</a>></span>. </dd>
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dt id="RFC5303">[RFC5303]</dt>
<dd>
<span class="refAuthor">Katz, D.</span><span class="refAuthor">, Saluja, R.</span><span class="refAuthor">, and D. Eastlake 3rd</span>, <span class="refTitle">"Three-Way Handshake for IS-IS Point-to-Point Adjacencies"</span>, <span class="seriesInfo">RFC 5303</span>, <span class="seriesInfo">DOI 10.17487/RFC5303</span>, <time datetime="2008-10">October 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5303">https://www.rfc-editor.org/info/rfc5303</a>></span>. </dd>
<dt id="RFC5304">[RFC5304]</dt>
<dd>
<span class="refAuthor">Li, T.</span><span class="refAuthor"> and R. Atkinson</span>, <span class="refTitle">"IS-IS Cryptographic Authentication"</span>, <span class="seriesInfo">RFC 5304</span>, <span class="seriesInfo">DOI 10.17487/RFC5304</span>, <time datetime="2008-10">October 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5304">https://www.rfc-editor.org/info/rfc5304</a>></span>. </dd>
<dt id="RFC5310">[RFC5310]</dt>
<dd>
<span class="refAuthor">Bhatia, M.</span><span class="refAuthor">, Manral, V.</span><span class="refAuthor">, Li, T.</span><span class="refAuthor">, Atkinson, R.</span><span class="refAuthor">, White, R.</span><span class="refAuthor">, and M. Fanto</span>, <span class="refTitle">"IS-IS Generic Cryptographic Authentication"</span>, <span class="seriesInfo">RFC 5310</span>, <span class="seriesInfo">DOI 10.17487/RFC5310</span>, <time datetime="2009-02">February 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5310">https://www.rfc-editor.org/info/rfc5310</a>></span>. </dd>
<dt id="RFC5880">[RFC5880]</dt>
<dd>
<span class="refAuthor">Katz, D.</span><span class="refAuthor"> and D. Ward</span>, <span class="refTitle">"Bidirectional Forwarding Detection (BFD)"</span>, <span class="seriesInfo">RFC 5880</span>, <span class="seriesInfo">DOI 10.17487/RFC5880</span>, <time datetime="2010-06">June 2010</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5880">https://www.rfc-editor.org/info/rfc5880</a>></span>. </dd>
<dt id="RFC8174">[RFC8174]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
</dl>
</section>
<section id="section-appendix.a">
<h2 id="name-summary-of-changes-from-rfc">
<a href="#section-appendix.a" class="section-number selfRef">Appendix A. </a><a href="#name-summary-of-changes-from-rfc" class="section-name selfRef">Summary of Changes from RFC 5306</a>
</h2>
<p id="section-appendix.a-1">This document extends RFC 5306 by introducing support for signaling
the neighbors of a restarting router that a planned restart is about to
occur. This allows the neighbors to be aware of the state of the
restarting router so that appropriate action may be taken if other
topology changes occur while the planned restart is in progress. Since
the forwarding plane of the restarting router is maintained based upon
the pre-restart state of the network, additional topology changes
introduce the possibility that traffic may be lost if paths via the
restarting router continue to be used while the restart is in
progress.<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
<p id="section-appendix.a-2">In support of this new functionality, two new flags have been
introduced:<a href="#section-appendix.a-2" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-appendix.a-3">
<dt id="section-appendix.a-3.1">PR -</dt>
<dd style="margin-left: 1.0em" id="section-appendix.a-3.2">Restart is planned<a href="#section-appendix.a-3.2" class="pilcrow">¶</a>
</dd>
<dt id="section-appendix.a-3.3">PA -</dt>
<dd style="margin-left: 1.0em" id="section-appendix.a-3.4">Planned restart acknowledgement<a href="#section-appendix.a-3.4" class="pilcrow">¶</a>
</dd>
</dl>
<p id="section-appendix.a-4">No changes to the post-restart exchange between the restarting router
and its neighbors have been introduced.<a href="#section-appendix.a-4" class="pilcrow">¶</a></p>
</section>
<div id="Acknowledgements">
<section id="section-appendix.b">
<h2 id="name-acknowledgements">
<a href="#name-acknowledgements" class="section-name selfRef">Acknowledgements</a>
</h2>
<p id="section-appendix.b-1">For RFC 5306, the authors acknowledged contributions made by
<span class="contact-name">Jeff Parker</span>,
<span class="contact-name">Radia Perlman</span>,
<span class="contact-name">Mark Schaefer</span>,
<span class="contact-name">Naiming Shen</span>,
<span class="contact-name">Nischal Sheth</span>,
<span class="contact-name">Russ White</span>, and
<span class="contact-name">Rena Yang</span>.<a href="#section-appendix.b-1" class="pilcrow">¶</a></p>
<p id="section-appendix.b-2">The authors of this updated document acknowledge the contribution of
<span class="contact-name">Mike Shand</span>, coauthor of RFC 5306.<a href="#section-appendix.b-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.c">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Les Ginsberg</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc.</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:ginsberg@cisco.com" class="email">ginsberg@cisco.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Paul Wells</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc.</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:pauwells@cisco.com" class="email">pauwells@cisco.com</a>
</div>
</address>
</section>
</div>
<script>var toc = document.getElementById("toc");
var tocToggle = toc.querySelector("h2");
var tocNav = toc.querySelector("nav");
// mobile menu toggle
tocToggle.onclick = function(event) {
if (window.innerWidth < 1024) {
var tocNavDisplay = tocNav.currentStyle ? tocNav.currentStyle.display : getComputedStyle(tocNav, null).display;
if (tocNavDisplay == "none") {
tocNav.style.display = "block";
} else {
tocNav.style.display = "none";
}
}
}
// toc anchor scroll to anchor
tocNav.addEventListener("click", function (event) {
event.preventDefault();
if (event.target.nodeName == 'A') {
if (window.innerWidth < 1024) {
tocNav.style.display = "none";
}
var href = event.target.getAttribute("href");
var anchorId = href.substr(1);
var anchor = document.getElementById(anchorId);
anchor.scrollIntoView(true);
window.history.pushState("","",href);
}
});
// switch toc mode when window resized
window.onresize = function () {
if (window.innerWidth < 1024) {
tocNav.style.display = "none";
} else {
tocNav.style.display = "block";
}
}
</script>
</body>
</html>
|