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 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317
|
<pre>Network Working Group L. Kane
Request for Comments: 2642 Cabletron Systems Incorporated
Category: Informational August 1999
<span class="h1">Cabletron's VLS Protocol Specification</span>
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (1999). All Rights Reserved.
Abstract
The Virtual LAN Link State Protocol (VLSP) is part of the InterSwitch
Message Protocol (ISMP) which provides interswitch communication
between switches running Cabletron's SecureFast VLAN (SFVLAN)
product. VLSP is used to determine and maintain a fully connected
mesh topology graph of the switch fabric. Each switch maintains an
identical database describing the topology. Call-originating switches
use the topology database to determine the path over which to route a
call connection.
VLSP provides support for equal-cost multipath routing, and
recalculates routes quickly in the face of topological changes,
utilizing a minimum of routing protocol traffic.
Table of Contents
<a href="#section-1">1</a>. Introduction............................................ <a href="#page-3">3</a>
<a href="#section-1.1">1.1</a> Acknowledgments..................................... <a href="#page-3">3</a>
<a href="#section-1.2">1.2</a> Data Conventions.................................... <a href="#page-3">3</a>
<a href="#section-1.3">1.3</a> ISMP Overview....................................... <a href="#page-4">4</a>
<a href="#section-2">2</a>. VLS Protocol Overview................................... <a href="#page-5">5</a>
<a href="#section-2.1">2.1</a> Definitions of Commonly Used Terms.................. <a href="#page-6">6</a>
<a href="#section-2.2">2.2</a> Differences Between VLSP and OSPF................... <a href="#page-7">7</a>
<a href="#section-2.2.1">2.2.1</a> Operation at the Physical Layer............... <a href="#page-8">8</a>
<a href="#section-2.2.2">2.2.2</a> All Links Treated as Point-to-Point........... <a href="#page-8">8</a>
<a href="#section-2.2.3">2.2.3</a> Routing Path Information...................... <a href="#page-9">9</a>
<a href="#section-2.2.4">2.2.4</a> Configurable Parameters....................... <a href="#page-9">9</a>
<a href="#section-2.2.5">2.2.5</a> Features Not supported........................ <a href="#page-9">9</a>
<a href="#section-2.3">2.3</a> Functional Summary.................................. <a href="#page-10">10</a>
<a href="#section-2.4">2.4</a> Protocol Packets.................................... <a href="#page-11">11</a>
<span class="grey">Kane Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<a href="#section-2.5">2.5</a> Protocol Data Structures............................ <a href="#page-12">12</a>
<a href="#section-2.6">2.6</a> Basic Implementation Requirements................... <a href="#page-12">12</a>
<a href="#section-2.7">2.7</a> Organization of the Remainder of This Document...... <a href="#page-13">13</a>
<a href="#section-3">3</a>. Interface Data Structure................................ <a href="#page-14">14</a>
<a href="#section-3.1">3.1</a> Interface States.................................... <a href="#page-16">16</a>
<a href="#section-3.2">3.2</a> Events Causing Interface State Changes.............. <a href="#page-18">18</a>
<a href="#section-3.3">3.3</a> Interface State Machine............................. <a href="#page-21">21</a>
<a href="#section-4">4</a>. Neighbor Data Structure................................. <a href="#page-23">23</a>
<a href="#section-4.1">4.1</a> Neighbor States..................................... <a href="#page-25">25</a>
<a href="#section-4.2">4.2</a> Events Causing Neighbor State Changes............... <a href="#page-27">27</a>
<a href="#section-4.3">4.3</a> Neighbor State Machine.............................. <a href="#page-29">29</a>
<a href="#section-5">5</a>. Area Data Structure..................................... <a href="#page-33">33</a>
<a href="#section-5.1">5.1</a> Adding and Deleting Link State Advertisements....... <a href="#page-34">34</a>
<a href="#section-5.2">5.2</a> Accessing Link State Advertisements................. <a href="#page-35">35</a>
<a href="#section-5.3">5.3</a> Best Path Lookup.................................... <a href="#page-35">35</a>
<a href="#section-6">6</a>. Discovery Process....................................... <a href="#page-35">35</a>
<a href="#section-6.1">6.1</a> Neighbor Discovery.................................. <a href="#page-36">36</a>
<a href="#section-6.2">6.2</a> Bidirectional Communication......................... <a href="#page-37">37</a>
<a href="#section-6.3">6.3</a> Designated Switch................................... <a href="#page-38">38</a>
<a href="#section-6.3.1">6.3.1</a> Selecting the Designated Switch............... <a href="#page-39">39</a>
<a href="#section-6.4">6.4</a> Adjacencies......................................... <a href="#page-41">41</a>
<a href="#section-7">7</a>. Synchronizing the Databases............................. <a href="#page-42">42</a>
<a href="#section-7.1">7.1</a> Link State Advertisements........................... <a href="#page-43">43</a>
7.1.1 Determining Which
Link State Advertisement Is Newer............. <a href="#page-44">44</a>
<a href="#section-7.2">7.2</a> Database Exchange Process........................... <a href="#page-44">44</a>
<a href="#section-7.2.1">7.2.1</a> Database Description Packets.................. <a href="#page-44">44</a>
<a href="#section-7.2.2">7.2.2</a> Negotiating the Master/Slave Relationship..... <a href="#page-45">45</a>
<a href="#section-7.2.3">7.2.3</a> Exchanging Database Description Packets....... <a href="#page-46">46</a>
<a href="#section-7.3">7.3</a> Updating the Database............................... <a href="#page-48">48</a>
<a href="#section-7.4">7.4</a> An Example.......................................... <a href="#page-49">49</a>
<a href="#section-8">8</a>. Maintaining the Databases............................... <a href="#page-51">51</a>
<a href="#section-8.1">8.1</a> Originating Link State Advertisements............... <a href="#page-52">52</a>
<a href="#section-8.1.1">8.1.1</a> Switch Link Advertisements.................... <a href="#page-52">52</a>
<a href="#section-8.1.2">8.1.2</a> Network Link Advertisements................... <a href="#page-55">55</a>
<a href="#section-8.2">8.2</a> Distributing Link State Advertisements.............. <a href="#page-56">56</a>
<a href="#section-8.2.1">8.2.1</a> Overview...................................... <a href="#page-57">57</a>
8.2.2 Processing an
Incoming Link State Update Packet............. <a href="#page-58">58</a>
<a href="#section-8.2.3">8.2.3</a> Forwarding Link State Advertisements.......... <a href="#page-60">60</a>
8.2.4 Installing Link
State Advertisements in the Database.......... <a href="#page-62">62</a>
<a href="#section-8.2.5">8.2.5</a> Retransmitting Link State Advertisements...... <a href="#page-63">63</a>
<a href="#section-8.2.6">8.2.6</a> Acknowledging Link State Advertisements....... <a href="#page-64">64</a>
<a href="#section-8.3">8.3</a> Aging the Link State Database....................... <a href="#page-66">66</a>
<a href="#section-8.3.1">8.3.1</a> Premature Aging of Advertisements............. <a href="#page-66">66</a>
<a href="#section-9">9</a>. Calculating the Best Paths.............................. <a href="#page-67">67</a>
<a href="#section-10">10</a>. Protocol Packets........................................ <a href="#page-67">67</a>
<span class="grey">Kane Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<a href="#section-10.1">10.1</a> ISMP Packet Format................................. <a href="#page-68">68</a>
<a href="#section-10.1.1">10.1.1</a> Frame Header................................ <a href="#page-69">69</a>
<a href="#section-10.1.2">10.1.2</a> ISMP Packet Header.......................... <a href="#page-70">70</a>
<a href="#section-10.1.3">10.1.3</a> ISMP Message Body........................... <a href="#page-71">71</a>
<a href="#section-10.2">10.2</a> VLSP Packet Processing............................. <a href="#page-71">71</a>
<a href="#section-10.3">10.3</a> Network Layer Address Information.................. <a href="#page-72">72</a>
<a href="#section-10.4">10.4</a> VLSP Packet Header................................. <a href="#page-73">73</a>
<a href="#section-10.5">10.5</a> Options Field...................................... <a href="#page-75">75</a>
<a href="#section-10.6">10.6</a> Packet Formats..................................... <a href="#page-76">76</a>
<a href="#section-10.6.1">10.6.1</a> Hello Packets............................... <a href="#page-76">76</a>
<a href="#section-10.6.2">10.6.2</a> Database Description Packets................ <a href="#page-78">78</a>
<a href="#section-10.6.3">10.6.3</a> Link State Request Packets.................. <a href="#page-80">80</a>
<a href="#section-10.6.4">10.6.4</a> Link State Update Packets................... <a href="#page-82">82</a>
<a href="#section-10.6.5">10.6.5</a> Link State Acknowledgment Packets........... <a href="#page-83">83</a>
<a href="#section-11">11</a>. Link State Advertisement Formats........................ <a href="#page-84">84</a>
<a href="#section-11.1">11.1</a> Link State Advertisement Headers................... <a href="#page-84">84</a>
<a href="#section-11.2">11.2</a> Switch Link Advertisements......................... <a href="#page-86">86</a>
<a href="#section-11.3">11.3</a> Network Link Advertisements........................ <a href="#page-89">89</a>
<a href="#section-12">12</a>. Protocol Parameters..................................... <a href="#page-89">89</a>
<a href="#section-12.1">12.1</a> Architectural Constants............................ <a href="#page-90">90</a>
<a href="#section-12.2">12.2</a> Configurable Parameters............................ <a href="#page-91">91</a>
<a href="#section-13">13</a>. End Notes............................................... <a href="#page-93">93</a>
<a href="#section-14">14</a>. Security Considerations................................. <a href="#page-94">94</a>
<a href="#section-15">15</a>. References.............................................. <a href="#page-94">94</a>
<a href="#section-16">16</a>. Author's Address........................................ <a href="#page-94">94</a>
<a href="#section-17">17</a>. Full Copyright Statement................................ <a href="#page-95">95</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This memo is being distributed to members of the Internet community
in order to solicit reactions to the proposals contained herein.
While the specification discussed here may not be directly relevant
to the research problems of the Internet, it may be of interest to
researchers and implementers.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a> Acknowledgments</span>
VLSP is derived from the OSPF link-state routing protocol described
in [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>], written by John Moy, formerly of Proteon, Inc.,
Westborough, Massachusetts. Much of the current memo has been drawn
from [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>]. Therefore, this author wishes to acknowledge the
contribution Mr. Moy has (unknowingly) made to this document.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a> Data Conventions</span>
The methods used in this memo to describe and picture data adhere to
the standards of Internet Protocol documentation [<a href="./rfc1700" title=""Assigned Numbers"">RFC1700</a>]. In
particular:
<span class="grey">Kane Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
The convention in the documentation of Internet Protocols is to
express numbers in decimal and to picture data in "big-endian"
order. That is, fields are described left to right, with the most
significant octet on the left and the least significant octet on
the right. The order of transmission of the header and data
described in this document is resolved to the octet level.
Whenever a diagram shows a group of octets, the order of
transmission of those octets is the normal order in which they are
read in English.
Whenever an octet represents a numeric quantity the left most bit
in the diagram is the high order or most significant bit. That
is, the bit labeled 0 is the most significant bit.
Similarly, whenever a multi-octet field represents a numeric
quantity the left most bit of the whole field is the most
significant bit. When a multi-octet quantity is transmitted the
most significant octet is transmitted first.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a> ISMP Overview</span>
The InterSwitch Message Protocol (ISMP) provides a consistent method
of encapsulating and transmitting control messages exchanged between
switches running Cabletron's SecureFast VLAN (SFVLAN) product, as
described in [<a href="#ref-IDsfvlan" title=""Cabletron's SecureFast VLAN Operational Model"">IDsfvlan</a>]. ISMP provides the following services:
o Topology services. Each switch maintains a distributed topology
of the switch fabric by exchanging the following interswitch
control messages with other switches:
o Interswitch Keepalive messages are sent by each switch to announce
its existence to its neighboring switches and to establish the
topology of the switch fabric. (Interswitch Keepalive messages
are exchanged in accordance with Cabletron's VlanHello protocol,
described in [<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>].)
o Interswitch Spanning Tree BPDU messages and Interswitch Remote
Blocking messages are used to determine and maintain a loop-free
flood path between all network switches in the fabric. This flood
path is used for all undirected interswitch messages -- that is,
messages that are (potentially) sent to all switches in the switch
fabric.
o Interswitch Link State messages (VLS protocol) are used to
determine and maintain a fully connected mesh topology graph of
the switch fabric. Call-originating switches use the topology
graph to determine the path over which to route a call connection.
<span class="grey">Kane Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o Address resolution services. Interswitch Resolve messages are
used to resolve a packet destination address when the packet
source and destination pair does not match a known connection.
Interswitch New User messages are used to provide end-station
address mobility between switches.
o Tag-based flooding. A tag-based broadcast method is used to
restrict the broadcast of unresolved packets to only those ports
within the fabric that belong to the same VLAN as the source.
o Call tapping services. Interswitch Tap messages are used to
monitor traffic moving between two end stations. Traffic can be
monitored in one or both directions along the connection path.
Note: Previous versions of VLSP treated all links as if they were
broadcast (multi-access). Thus, if VLSP determines that a neighbor
switch is running an older version of the protocol software (see
<a href="#section-6.1">Section 6.1</a>), it will change the interface type to broadcast and
begin exchanging Hello packets with the single neighbor switch.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. VLS Protocol Overview</span>
VLSP is a dynamic routing protocol. It quickly detects topological
changes in the switch fabric (such as, switch interface failures) and
calculates new loop-free routes after a period of convergence. This
period of convergence is short and involves a minimum of routing
traffic.
All switches in the fabric run the same algorithm and maintain
identical databases describing the switch fabric topology. This
database contains each switch's local state, including its usable
interfaces and reachable neighbors. Each switch distributes its
local state throughout the switch fabric by flooding. From the
topological database, each switch constructs a set of best path trees
(using itself as the root) that specify routes to all other switches
in the fabric.
<span class="grey">Kane Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a> Definitions of Commonly Used Terms</span>
This section contains a collection of definitions for terms that have
a specific meaning to the protocol and that are used throughout the
text.
Switch ID
A 10-octet value that uniquely identifies the switch within the
switch fabric. The value consists of the 6-octet base MAC address
of the switch, followed by 4 octets of zeroes.
Network link
The physical connection between two switches. A link is
associated with a switch interface.
There are two physical types of network links supported by VLSP:
o Point-to-point links that join a single pair of switches. A
serial line is an example of a point-to-point network link.
o Multi-access broadcast links that support the attachment of
multiple switches, along with the capability to address a
single message to all the attached switches. An attached
ethernet is an example of a multi-access broadcast network
link.
A single topology can contain both types of links. At startup,
all links are assumed to be point-to-point. A link is
determined to be multi-access when more than one neighboring
switch is discovered on the link.
Interface
The port over which a switch accesses one of its links.
Interfaces are identified by their interface ID, a 10-octet value
consisting of the 6-octet base MAC address of the switch, followed
by the 4-octet local port number of the interface.
Neighboring switches
Two switches attached to a common link.
<span class="grey">Kane Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Adjacency
A relationship formed between selected neighboring switches for
the purpose of exchanging routing information. Not every pair of
neighboring switches become adjacent.
Link state advertisement
Describes the local state of a switch or a link. Each link state
advertisement is flooded throughout the switch fabric. The
collected link state advertisements of all switches and links form
the protocol's topological database.
Designated switch
Each multi-access network link has a designated switch. The
designated switch generates a link state advertisement for the
link and has other special responsibilities in the running of the
protocol.
The use of a designated switch permits a reduction in the number
of adjacencies required on multi-access links. This in turn
reduces the amount of routing protocol traffic and the size of the
topological database.
The designated switch is selected during the discovery process. A
designated switch is not selected for a point-to-point network
link.
Backup designated switch
Each multi-access network link has a backup designated switch.
The backup designated switch maintains adjacencies with the same
switches on the link as the designated switch. This optimizes the
failover time when the backup designated switch must take over for
the (failed) designated switch.
The backup designated switch is selected during the Discovery
process. A backup designated switch is not selected for a point-
to-point network link.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a> Differences Between VLSP and OSPF</span>
The VLS protocol is derived from the OSPF link-state routing protocol
described in [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>].
<span class="grey">Kane Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h4"><a class="selflink" id="section-2.2.1" href="#section-2.2.1">2.2.1</a> Operation at the Physical Layer</span>
The primary differences between the VLS and OSPF protocols stem from
the fact that OSPF runs over the IP layer, while VLSP runs at the
physical MAC layer. This difference has the following repercussions:
o VLSP does not support features (such as fragmentation) that are
typically provided by network layer service providers.
o Due to the unrelated nature of MAC address assignments, VLSP
provides no summarization of the address space (such as, classical
IP subnet information) or level 2 routing (such as,
IS-IS Phase V DECnet). Thus, VLSP does not support grouping
switches into areas. All switches exist in a single area. Since
a single domain exists within any switch fabric, there is no need
for VLSP to provide interdomain reachability.
o As mentioned in <a href="#section-10.1.1">Section 10.1.1</a>, ISMP uses a single well-known
multicast address for all packets. However, parts of the VLS
protocol (as derived from OSPF) are dependent on certain network
layer addresses -- in particular, the AllSPFSwitches and
AllDSwitches multicast addresses that drive the distribution of
link state advertisements throughout the switch fabric. In order
to facilitate the implementation of the protocol at the physical
MAC layer, network layer address information is encapsulated in
the protocol packets (see <a href="#section-10.3">Section 10.3</a>). This information is
unbundled and packets are then processed as if they had been sent
or received on that multicast address.
<span class="h4"><a class="selflink" id="section-2.2.2" href="#section-2.2.2">2.2.2</a> All Links Treated as Point-to-Point</span>
When the switch first comes on line, VLSP assumes all network links
are point-to-point and no more than one neighboring switch will be
discovered on any one port. Therefore, at startup, VLSP does not
send its own Hello packets over its network ports, but instead,
relies on the VlanHello protocol [<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] for the discovery of its
neighbor switches. If a second neighbor is detected on a link, the
link is then deemed multi-access and the interface type is changed to
broadcast. At that point, VLSP exchanges its own Hello packets with
the switches on the link in order to select a designated switch and
designated backup switch for the link.
This method eliminates unnecessary duplication of message traffic and
processing, thereby increasing the overall efficiency of the switch
fabric.
<span class="grey">Kane Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Note: Previous versions of VLSP treated all links as if they were
broadcast (multi-access). Thus, if VLSP determines that a neighbor
switch is running an older version of the protocol software (see
<a href="#section-6.1">Section 6.1</a>), it will change the interface type to broadcast and
begin exchanging Hello packets with the single neighbor switch.
<span class="h4"><a class="selflink" id="section-2.2.3" href="#section-2.2.3">2.2.3</a> Routing Path Information</span>
Instead of providing the next hop to a destination, VLSP calculates
and maintains complete end-to-end path information. On request, a
list of individual port identifiers is generated describing a
complete path from the source switch to the destination switch. If
multiple equal-cost routes exist to a destination switch, up to three
paths are calculated and returned.
<span class="h4"><a class="selflink" id="section-2.2.4" href="#section-2.2.4">2.2.4</a> Configurable Parameters</span>
OSPF supports (and requires) configurable parameters. In fact, even
the default OSPF configuration requires that IP address assignments
be specified. On the other hand, no configuration information is
ever required for the VLS protocol. Switches are uniquely identified
by their base MAC addresses and ports are uniquely identified by the
base MAC address of the switch and a port number.
While a developer is free to implement configurable parameters for
the VLS protocol, the current version of VLSP supports configurable
path metrics only. Note that this has the following repercussions:
o All switches are assigned a switch priority of 1. This forces the
selection of the designated switch to be based solely on base MAC
address.
o Authentication is not supported.
<span class="h4"><a class="selflink" id="section-2.2.5" href="#section-2.2.5">2.2.5</a> Features Not supported</span>
In addition to those features mentioned in the previous sections, the
following OSPF features are not supported by the current version of
VLSP:
o Periodic refresh of link state advertisements. (This optimizes
performance by eliminating unnecessary traffic between the
switches.)
o Routing based on non-zero type of service (TOS).
o Use of external routing information for destinations outside the
switch fabric.
<span class="grey">Kane Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a> Functional Summary</span>
There are essentially four operational stages of the VLS protocol.
o Discovery Process The discovery process involves two steps:
o Neighboring switches are detected by the VlanHello protocol
[<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] which then notifies VLSP of the neighbor.
o If more than one neighbor switch is detected on a single port,
the link is determined to be multi-access. VLSP then sends its
own Hello packets over the link in order to discover the full
set of neighbors on the link and select a designated switch and
designated backup switch for the link. Note that this
selection process is unnecessary on point-to-point links.
The discovery process is described in more detail in <a href="#section-6">Section 6</a>.
o Synchronizing the Databases
Adjacencies are used to simplify and speed up the process of
synchronizing the topological database (also known as the link
state database) maintained by each switch in the fabric. Each
switch is only required to synchronize its database with those
neighbors to which it is adjacent. This reduces the amount of
routing protocol traffic across the fabric, particularly for
multi-access links with multiple switches.
The process of synchronizing the databases is described in more
detail in <a href="#section-7">Section 7</a>.
o Maintaining the Databases
Each switch advertises its state (also known as its link state)
any time its link state changes. Link state advertisements are
distributed throughout the switch fabric using a reliable flooding
algorithm that ensures that all switches in the fabric are
notified of any link state changes.
The process of maintaining the databases is described in more
detail in <a href="#section-8">Section 8</a>.
<span class="grey">Kane Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o Calculating the Best Paths
The link state database consists of the collection of link state
advertisements received from each switch. Each switch uses its
link state database to calculate a set of best paths, using itself
as root, to all other switches in the fabric.
The process of recalculating the set of best paths is described in
more detail in <a href="#section-9">Section 9</a>.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a> Protocol Packets</span>
In addition to the frame header and the ISMP packet header described
in <a href="#section-10.1">Section 10.1</a>, all VLS protocol packets share a common protocol
header, described in <a href="#section-10.4">Section 10.4</a>.
The VLSP packet types are listed below in Table 1. Their formats are
described in <a href="#section-10.6">Section 10.6</a>.
Type Packet Name Protocol Function
1 Hello Select DS and Backup DS
2 Database Description Summarize database contents
3 Link State Request Database download
4 Link State Update Database update
5 Link State Ack Flooding acknowledgment
Table 1: VLSP Packet Types
The Hello packets are used to select the designated switch and the
backup designated switch on multi-access links. The Database
Description and Link State Request packets are used to form
adjacencies. Link State Update and Link State Acknowledgment packets
are used to update the topological database.
Each Link State Update packet carries a set of link state
advertisements. A single Link State Update packet may contain the
link state advertisements of several switches. There are two
different types of link state advertisement, as shown below in Table
2.
<span class="grey">Kane Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
LS Advertisement Advertisement Description
Type Name
1 Switch link Originated by all switches. This
advertisements advertisement describes the collected
states of the switch's interfaces.
2 Network link Originated by the designated switch.
advertisements This advertisement contains the list
of switches connected to the network
link.
Table 2: VLSP Link State Advertisements
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a> Protocol Data Structures</span>
The VLS protocol is described in this specification in terms of its
operation on various protocol data structures. Table 3 lists the
primary VLSP data structures, along with the section in which they
are described in detail.
Structure Name Description
Interface Data Structure <a href="#section-3">Section 3</a>
Neighbor Data Structure <a href="#section-4">Section 4</a>
Area Data Structure <a href="#section-5">Section 5</a>
Table 3: VLSP Data Structures
<span class="h3"><a class="selflink" id="section-2.6" href="#section-2.6">2.6</a> Basic Implementation Requirements</span>
An implementation of the VLS protocol requires the following pieces
of system support:
Timers
Two types of timer are required. The first type, known as a one-
shot timer, expires once and triggers an event. The second type,
known as an interval timer, expires at preset intervals. Interval
timers are used to trigger events at periodic intervals. The
granularity of both types of timers is one second.
Interval timers should be implemented in such a way as to avoid
drift. In some switch implementations, packet processing can
affect timer execution. For example, on a multi-access link with
multiple switches, regular broadcasts can lead to undesirable
synchronization of routing packets unless the interval timers have
been implemented to avoid drift. If it is not possible to
<span class="grey">Kane Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
implement drift-free timers, small random amounts of time should
be added to or subtracted from the timer interval at each firing.
List manipulation primitives
Much of the functionality of VLSP is described here in terms of
its operation on lists of link state advertisements. Any
particular advertisement may be on many such lists. Implementation
of VLSP must be able to manipulate these lists, adding and
deleting constituent advertisements as necessary.
Tasking support
Certain procedures described in this specification invoke other
procedures. At times, these other procedures should be executed
in-line -- that is, before the current procedure has finished.
This is indicated in the text by instructions to "execute" a
procedure. At other times, the other procedures are to be
executed only when the current procedure has finished. This is
indicated by instructions to "schedule" a task. Implementation of
VLSP must provide these two types of tasking support.
<span class="h3"><a class="selflink" id="section-2.7" href="#section-2.7">2.7</a> Organization of the Remainder of This Document</span>
The remainder of this document is organized as follows:
o <a href="#section-3">Section 3</a> through <a href="#section-5">Section 5</a> describe the primary data structures
used by the protocol. Note that this specification is presented
in terms of these data structures in order to make explanations
more precise. Implementations of the protocol must support the
functionality described, but need not use the exact data
structures that appear in this specification.
o <a href="#section-6">Section 6</a> through <a href="#section-9">Section 9</a> describe the four operational stages
of the protocol: the discovery process, synchronizing the
databases, maintaining the databases, and calculating the set of
best paths.
o <a href="#section-10">Section 10</a> describes the processing of VLSP packets and presents
detailed descriptions of their formats.
o <a href="#section-11">Section 11</a> presents detailed descriptions of link state
advertisements.
o <a href="#section-12">Section 12</a> summarizes the protocol parameters.
<span class="grey">Kane Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Interface Data Structure</span>
The port over which a switch accesses a network link is known as the
link interface. Each switch maintains a separate interface data
structure for each network link.
The following data items are associated with each interface:
Type
The type of network to which the interface is attached -- point-
to-point or broadcast (multi-access). This data item is
initialized to point-to-point when the interface becomes
operational. If a second neighbor is detected on the link after
the first neighbor has been discovered, the link interface type is
changed to broadcast. The type remains as broadcast until the
interface is declared down, at which time the type reverts to
point-to-point.
Note: Previous versions of VLSP treated all links as if they were
multi-access. Thus, if VLSP determines that a neighbor switch is
running an older version of the protocol software (see <a href="#section-6.1">Section 6.1</a>),
it will change the interface type to broadcast.
State
The functional level of the interface. The state of the interface
is included in all switch link advertisements generated by the
switch, and is also used to determine whether full adjacencies are
allowed on the interface. See <a href="#section-3.1">Section 3.1</a> for a complete
description of interface states.
Interface identifier
A 10-octet value that uniquely identifies the interface. This
value consists of the 6-octet base MAC address of the neighbor
switch, followed by the 4-octet local port number of the
interface.
Area ID
A 4-octet value identifying the area. Since VLSP does not support
multiple areas, the value here is always zero.
<span class="grey">Kane Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
HelloInterval
The interval, in seconds, at which the switch sends VLSP Hello
packets over the interface. This parameter is not used on point-
to-point links.
SwitchDeadInterval
The length of time, in seconds, that neighboring switches will
wait before declaring the local switch dNeighboring switches
A list of the neighboring switches attached to this network link.
This list is created during the discovery process. Adjacencies are
formed to one or more of these neighbors. The set of adjacent
neighbors can be determined by examining the states of the
neighboring switches as shown in their link state advertisements.
Designated switch
The designated switch selected for the multi-access network link.
(A designated switch is not selected for a point-to-point link.)
This data item is initialized to zero when the switch comes on-
line, indicating that no designated switch has been chosen for the
link.
Backup designated switch
The backup designated switch selected for the multi-access network
link. (A backup designated switch is not selected for a point-
to-point link.) This data item is initialized to zero when the
switch comes on-line, indicating that no backup designated switch
has been chosen for the link.
Interface output cost(s)
The cost of sending a packet over the interface. The link cost is
expressed in the link state metric and must be greater than zero.
RxmtInterval
The number of seconds between link state advertisement
retransmissions, for adjacencies belonging to this interface. This
value is also used to time the retransmission of Database
Description and Link State Request packets.
<span class="grey">Kane Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a> Interface States</span>
This section describes the various states of a switch interface. The
states are listed in order of progressing functionality. For example,
the inoperative state is listed first, followed by a list of the
intermediate states through which the interface passes before
attaining the final, fully functional state. The specification makes
use of this ordering by references such as "those interfaces in state
greater than X".
Figure 1 represents the interface state machine, showing the
progression of interface state changes. The arrows on the graph
represent the events causing each state change. These events are
described in <a href="#section-3.2">Section 3.2</a>. The interface state machine is described
in detail in <a href="#section-3.3">Section 3.3</a>.
Down
This is the initial state of the interface. In this state, the
interface is unusable, and no protocol traffic is sent or received
on the interface. In this state, interface parameters are set to
their initial values, all interface timers are disabled, and no
adjacencies are associated with the interface.
<span class="grey">Kane Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
+-------+
| any | Interface +----------+ Unloop Ind +----------+
| state | -----------> | Down | <----------- | Loopback |
+-------+ Down +----------+ +----------+
| ^
| Interface Up |
+-------+ [pt-to-pt] | |
| Point |<------------type? Loop Ind |
| to | | |
| Point | | [broadcast] |
+-------+ V +-------+
+-----------+ | any |
| Waiting | | state |
+-----------+ +-------+
|
Backup Seen |
| Wait Timer
|
|
+----------+ Neighbor V Neighbor +----------+
| DS | <------------> [ ] <------------> | DS Other |
+----------+ Change ^ Change +----------+
|
|
Neighbor Change |
|
V
+----------+
| Backup |
+----------+
Figure 1: Interface State Machine
Loopback
In this state, the switch interface is looped back, either in
hardware or in software. The interface is unavailable for regular
data traffic.
Point-to-Point
In this state, the interface is operational and is connected to a
physical point-to-point link. On entering this state, the switch
attempts to form an adjacency with the neighboring switch.
<span class="grey">Kane Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Waiting
In this state, the switch is attempting to identify the backup
designated switch for the link by monitoring the Hello packets it
receives. The switch does not attempt to select a designated
switch or a backup designated switch until it changes out of this
state, thereby preventing unnecessary changes of the designated
switch and its backup.
DS Other
In this state, the interface is operational and is connected to a
multi-access broadcast link on which other switches have been
selected as the designated switch and the backup designated
switch. On entering this state, the switch attempts to form
adjacencies with both the designated switch and the backup
designated switch.
Backup
In this state, the switch itself is the backup designated switch
on the attached multi-access broadcast link. It will be promoted
to designated switch if the current designated switch fails. The
switch establishes adjacencies with all other switches attached to
the link. (See <a href="#section-6.3">Section 6.3</a> for more information on the functions
performed by the backup designated switch.)
DS
In this state, this switch itself is the designated switch on the
attached multi-access broadcast link. The switch establishes
adjacencies with all other switches attached to the link. The
switch is responsible for originating network link advertisements
for the link, containing link information for all switches
attached to the link, including the designated switch itself.
(See <a href="#section-6.3">Section 6.3</a> for more information on the functions performed
by the designated switch.)
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a> Events Causing Interface State Changes</span>
The state of an interface changes due to an interface event. This
section describes these events.
Interface events are shown as arrows in Figure 1, the graphic
representation of the interface state machine. For more information
on the interface state machine, see <a href="#section-3.3">Section 3.3</a>.
<span class="grey">Kane Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Interface Up
This event is generated by the VlanHello protocol [<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] when
it discovers a neighbor switch on the interface. The interface is
now operational. This event causes the interface to change out of
the Down state. The state it enters is determined by the
interface type. If the interface type is broadcast (multi-
access), this event also causes the switch to begin sending
periodic Hello packets out over the interface.
Wait Timer
This event is generated when the one-shot Wait timer expires,
triggering the end of the required waiting period before the
switch can begin the process of selecting a designated switch and
a backup designated switch on a multi-access link.
Backup Seen
This event is generated when the switch has detected the existence
or non-existence of a backup designated switch for the link, as
determined in one of the following two ways:
o A Hello packet has been received from a neighbor that claims to
be the backup designated switch.
o A Hello packet has been received from a neighbor that claims to
be the designated switch. In addition, the packet indicated
that there is no backup.
In either case, the interface must have bidirectional communication
with its neighbor -- that is, the local switch must be listed in the
neighbor's Hello packet.
This event signals the end of the Waiting state.
Neighbor change
This event is generated when there has been one of the following
changes in the set of bidirectional neighbors associated with the
interface. (See <a href="#section-4.1">Section 4.1</a> for information on neighbor states.)
o Bidirectional communication has been established with a
neighbor -- the state of the neighbor has changed to 2-Way or
higher.
o Bidirectional communication with a neighbor has been lost --
the state of the neighbor has changed to Init or lower.
<span class="grey">Kane Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o A bidirectional neighbor has just declared itself to be either
the designated switch or the backup designated switch, as
detected by examination of that neighbor's Hello packets.
o A bidirectional neighbor is no longer declaring itself to be
either the designated switch or the backup designated switch,
as detected by examination of that neighbor's Hello packets.
o The advertised switch priority of a bidirectional neighbor has
changed, as detected by examination of that neighbor's Hello
packets.
When this event occurs, the designated switch and the backup
designated switch must be reselected.
Loop Ind
This event is generated when an interface enters the Loopback
state. This event can be generated by either the network
management service or by the lower-level protocols.
Unloop Ind
This event is generated when an interface leaves the Loopback
state. This event can be generated by either the network
management service or by the lower-level protocols.
Interface Down
This event is generated under the following two circumstances:
o The VlanHello [<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] protocol has determined that the
interface is no longer functional.
o The neighbor state machine has detected a second neighboring
switch on a link presumed to be of type point-to-point. In
addition to generating the Interface Down event, the
neighbor state machine changes the interface type to
broadcast.
In both instances, this event forces the interface state to Down.
However, when the event is generated by the neighbor state
machine, it is immediately followed by an Interface Up event.
(See <a href="#section-4.3">Section 4.3</a>.)
<span class="grey">Kane Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a> Interface State Machine</span>
This section presents a detailed description of the interface state
machine.
Interface states (see <a href="#section-3.1">Section 3.1</a>) change as the result of various
events (see <a href="#section-3.2">Section 3.2</a>). However, the effect of each event can
vary, depending on the current state of the interface. For this
reason, the state machine described in this section is organized
according to the current interface state and the occurring event.
For each state/event pair, the new interface state is listed, along
with a description of the required processing.
Note that when the state of an interface changes, it may be necessary
to originate a new switch link advertisement. See <a href="#section-8.1">Section 8.1</a> for
more information.
Some of the processing described here includes generating events for
the neighbor state machine. For example, when an interface becomes
inoperative, all neighbor connections associated with the interface
must be destroyed. For more information on the neighbor state
machine, see <a href="#section-4.3">Section 4.3</a>.
State(s): Down
Event: Interface Up
New state: Depends on action routine
Action:
If the interface is a point-to-point link, set the interface state
to Point-to-Point. Otherwise, start the Hello interval timer,
enabling the periodic sending of Hello packets over the interface.
If the switch is not eligible to become the designated switch,
change the interface state to DS Other. Otherwise, set the
interface state to Waiting and start the one-shot wait timer.
Create a new neighbor data structure for the neighbor switch,
initialize all neighbor parameters and set the stateof the
neighbor to Down.
State(s): Waiting
Event: Backup Seen
New state: Depends on action routine
Action:
Select the designated switch and backup designated switch for the
attached link, as described in <a href="#section-6.3.1">Section 6.3.1</a>. As a result of this
selection, set the new state of the interface to either DS Other,
Backup or DS.
<span class="grey">Kane Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
State(s): Waiting
Event: Wait Timer
New state: Depends on action routine
Action:
Select the designated switch and backup designated switch for the
attached link, as described in <a href="#section-6.3.1">Section 6.3.1</a>. As a result of this
selection, set the new state of the interface to either DS Other,
Backup or DS.
State(s): DS Other, Backup or DS
Event: Neighbor Change
New state: Depends on action routine
Action:
Reselect the designated switch and backup designated switch for
the attached link, as described in <a href="#section-6.3.1">Section 6.3.1</a>. As a result of
this selection, set the new state of the interface to either DS
Other, Backup or DS.
State(s): Any State
Event: Interface Down
New state: Down
Action:
Reset all variables in the interface data structure and disable
all timers. In addition, destroy all neighbor connections
associated with the interface by generating the KillNbr event on
all neighbors listed in the interface data structure.
State(s): Any State
Event: Loop Ind
New state: Loopback
Action:
Reset all variables in the interface data structure and disable
all timers. In addition, destroy all neighbor connections
associated with the interface by generating the KillNbr event on
all neighbors listed in the interface data structure.
State(s): Loopback
Event: Unloop Ind
New state: Down
Action:
No action is necessary beyond changing the interface state to Down
because the interface was reset on entering the Loopback state.
<span class="grey">Kane Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Neighbor Data Structure</span>
Each switch conducts a conversation with its neighboring switches and
each conversation is described by a neighbor data structure. A
conversation is associated with a switch interface, and is identified
by the neighboring switch ID.
Note that if two switches have multiple attached links in common,
multiple conversations ensue, each described by a unique neighbor
data structure. Each separate conversation is treated as a separate
neighbor.
The neighbor data structure contains all information relevant to any
adjacency formed between the two neighbors. Remember, however, that
not all neighbors become adjacent. An adjacency can be thought of as
a highly developed conversation between two switches.
State
The functional level of the neighbor conversation. See <a href="#section-4.1">Section</a>
<a href="#section-4.1">4.1</a> for a complete description of neighbor states.
Inactivity timer
A one-shot timer used to determine when to declare the neighbor
down if no Hello packet is received from this (multi-access)
neighbor. The length of the timer is SwitchDeadInterval seconds,
as contained in the neighbor's Hello packet. This timer is not
used on point-to-point links.
Master/slave flag
A flag indicating whether the local switch is to act as the master
or the slave in the database exchange process (see <a href="#section-7.2">Section 7.2</a>).
The master/slave relationship is negotiated when the conversation
changes to the ExStart state.
Sequence number
A 4-octet number identifying individual Database Description
packets. When the neighbor state ExStart is entered and the
database exchange process is started, the sequence number is set
to a value not previously seen by the neighboring switch. (One
possible scheme is to use the switch's time of day counter.) The
sequence number is then incremented by the master with each new
Database Description packet sent. See <a href="#section-7.2">Section 7.2</a> for more
information on the database exchange process.
<span class="grey">Kane Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Neighbor ID
The switch ID of the neighboring switch, as discovered by the
VlanHello protocol [<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] or contained in the neighbor's Hello
packets.
Neighbor priority
The switch priority of the neighboring switch, as contained in the
neighbor's Hello packets. Switch priorities are used when
selecting the designated switch for the attached multi-access
link. Priority is not used on point-to-point links.
Interface identifier
A 10-octet value that uniquely identifies the interface over which
this conversation is being held. This value consists of the 6-
octet base MAC address of the neighbor switch, followed by the 4-
octet local port number of the interface.
Neighbor's designated switch
The switch ID identifying the neighbor's idea of the designated
switch, as contained in the neighbor's Hello packets. This value
is used in the local selection of the designated switch. It is
not used on point-to-point links.
Neighbor's backup designated switch
The switch ID identifying the neighbor's idea of the backup
designated switch, as contained in the neighbor's Hello packets.
This value is used in the local selection of the backup designated
switch. It is not used on point-to-point links.
Link state retransmission list
The list of link state advertisements that have been forwarded
over but not acknowledged on this adjacency. The local switch
retransmits these link state advertisements at periodic intervals
until they are acknowledged or until the adjacency is destroyed.
(For more information on retransmitting link state advertisements,
see <a href="#section-8.2.5">Section 8.2.5</a>.)
<span class="grey">Kane Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Database summary list
The set of link state advertisement headers that summarize the
local link state database. When the conversation changes to the
Exchange state, this list is sent to the neighbor via Database
Description packets. (For more information on the synchronization
of databases, see <a href="#section-7">Section 7</a>.)
Link state request list
The list of link state advertisements that must be received in
order to synchronize with the neighbor switch's link state
database. This list is created as Database Description packets
are received, and is then sent to the neighbor in Link State
Request packets. (For more information on the synchronization of
databases, see <a href="#section-7">Section 7</a>.)
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a> Neighbor States</span>
This section describes the various states of a conversation with a
neighbor switch. The states are listed in order of progressing
functionality. For example, the inoperative state is listed first,
followed by a list of the intermediate states through which the
conversation passes before attaining the final, fully functional
state. The specification makes use of this ordering by references
such as "those neighbors/adjacencies in state greater than X".
Figure 2 represents the neighbor state machine. The arrows on the
graph represent the events causing each state change. These events
are described in <a href="#section-4.2">Section 4.2</a>. The neighbor state machine is
described in detail in <a href="#section-4.3">Section 4.3</a>.
Down
This is the initial state of a neighbor conversation.
Init
In this state, the neighbor has been discovered, but bidirectional
communication has not yet been established. All neighbors in this
state or higher are listed in the VLS Hello packets sent by the
local switch over the associated (multi-access) interface.
<span class="grey">Kane Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
+----------+ KillNbr, LLDown, +-----------+
| Down | <--------------------- | any state |
+----------+ or Inactivity Timer +-----------+
|
Hello |
Rcvd |
|
V
+-----< [pt-to-pt?]
| yes |
| | no
| V
| +----------+ 1-Way +----------+
| | Init | <-------- | >= 2-way |
| +----------+ +----------+
| |
| 2-Way |
| Rcvd | +-------+ AdjOK? +------------+
| +----------------> | 2-Way | <------- | >= ExStart |
| | (no adjacency) +-------+ no +------------+
| |
| V
| +---------+ Seq Number Mismatch +-------------+
+----> | ExStart | <--------------------- | >= Exchange |
+---------+ or BadLSReq +-------------+
|
Negotiation |
Done |
V
+----------+
| Exchange |
+----------+
|
Exchange | +--------+
Done +----------------------> | Full |
| (request list empty) +--------+
| ^
V |
+---------+ Loading Done |
| Loading | ----------------------->
+---------+
Figure 2: Neighbor State Machine
<span class="grey">Kane Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
2-Way
In this state, communication between the two switches is
bidirectional. This is the most advanced state short of beginning
to establish an adjacency. On a multi-access link, the designated
switch and the backup designated switch are selected from the set
of neighbors in state 2-Way or greater.
ExStart
This state indicates that the two switches have begun to establish
an adjacency by determining which switch is the master, as well as
the initial sequence number for Database Descriptor packets.
Neighbor conversations in this state or greater are called
adjacencies.
Exchange
In this state, the switches are exchanging Database Description
packets. (See <a href="#section-7.2">Section 7.2</a> for a complete description of this
process.) All adjacencies in the Exchange state or greater are
used by the distribution procedure (see <a href="#section-8.2">Section 8.2</a>), and are
capable of transmitting and receiving all types of VLSP routing
packets.
Loading
In this state, the local switch is sending Link State Request
packets to the neighbor asking for the more recent advertisements
that were discovered in the Exchange state.
Full
In this state, the two switches are fully adjacent. These
adjacencies will now appear in switch link and network link
advertisements generated for the link.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a> Events Causing Neighbor State Changes</span>
The state of a neighbor conversation changes due to neighbor events.
This section describes these events.
Neighbor events are shown as arrows in Figure 2, the graphic
representation of the neighbor state machine. For more information
on the neighbor state machine, see <a href="#section-4.3">Section 4.3</a>.
<span class="grey">Kane Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Hello Received
This event is generated when a Hello packet has been received from
a neighbor.
2-Way Received
This event is generated when the local switch sees its own switch
ID listed in the neighbor's Hello packet, indicating that
bidirectional communication has been established between the two
switches.
Negotiation Done
This event is generated when the master/slave relationship has
been successfully negotiated and initial packet sequence numbers
have been exchanged. This event signals the start of the database
exchange process (see <a href="#section-7.2">Section 7.2</a>).
Exchange Done
This event is generated when the database exchange process is
complete and both switches have successfully transmitted a full
sequence of Database Description packets. (For more information
on the database exchange process, see <a href="#section-7.2">Section 7.2</a>.)
BadLSReq
This event is generated when a Link State Request has been
received for a link state advertisement that is not contained in
the database. This event indicates an error in the
synchronization process.
Loading Done
This event is generated when all Link State Updates have been
received for all out-of-date portions of the database. (See
<a href="#section-7.3">Section 7.3</a>.)
AdjOK?
This event is generated when a decision must be made as to whether
an adjacency will be established or maintained with the neighbor.
This event will initiate some adjacencies and destroy others.
<span class="grey">Kane Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Seq Number Mismatch
This event is generated when a Database Description packet has
been received with any of the following conditions:
o The packet contains an unexpected sequence number.
o The packet (unexpectedly) has the Init bit set.
o The packet has a different Options field than was
previously seen.
These conditions all indicate that an error has occurred during
the establishment of the adjacency.
1-Way
This event is generated when bidirectional communication with the
neighbor has been lost. That is, a Hello packet has been received
from the neighbor in which the local switch is not listed.
KillNbr
This event is generated when further communication with the
neighbor is impossible.
Inactivity Timer
This event is generated when the inactivity timer has expired,
indicating that no Hello packets have been received from the
neighbor in SwitchDeadInterval seconds. This timer is used only
on broadcast (multi-access) links.
LLDown
This event is generated by the lower-level switch discovery
protocols and indicates that the neighbor is now unreachable.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a> Neighbor State Machine</span>
This section presents a detailed description of the neighbor state
machine.
Neighbor states (see <a href="#section-4.1">Section 4.1</a>) change as the result of various
events (see <a href="#section-4.2">Section 4.2</a>). However, the effect of each event can
vary, depending on the current state of the conversation with the
neighbor. For this reason, the state machine described in this
section is organized according to the current neighbor state and the
occurring event. For each state/event pair, the new neighbor state
is listed, along with a description of the required processing.
<span class="grey">Kane Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Note that when the neighbor state changes as a result of an interface
Neighbor Change event (see <a href="#section-3.2">Section 3.2</a>), it may be necessary to rerun
the designated switch selection algorithm. In addition, if the
interface associated with the neighbor conversation is in the DS
state (that is, the local switch is the designated switch), changes
in the neighbor state may cause a new network link advertisement to
be originated (see <a href="#section-8.1">Section 8.1</a>).
When the neighbor state machine must invoke the interface state
machine, it is invoked as a scheduled task. This simplifies
processing, by ensuring that neither state machine executes
recursively.
State(s): Down
Event: Hello Received
New state: Depends on the interface type
Action:
If the interface type of the associated link is point-to-point,
change the neighbor state to ExStart. Otherwise, change the
neighbor state to Init and start the inactivity timer for the
neighbor. If the timer expires before another Hello packet is
received, the neighbor switch is declared dead.
State(s): Init or greater
Event: Hello Received
New state: No state change
Action:
If the interface type of the associated link is point-to-point,
determine whether this notification is for a different neighbor
than the one previously seen. If so, generate an Interface Down
event for the associated interface, reset the interface type to
broadcast and generate an Interface Up event.
Note: This procedure of generating an Interface Down event and
changing the interface type to broadcast is also executed if the
neighbor for whom the notification was received is running an older
version of the protocol software (see <a href="#section-6.1">Section 6.1</a>). In previous
versions of the protocol, all interfaces were treated as if they were
broadcast.
If the interface type is broadcast, reset the inactivity timer for
the neighbor.
<span class="grey">Kane Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
State(s): Init
Event: 2-Way Received
New state: Depends on action routine
Action:
Determine whether an adjacency will be formed with the neighbor
(see <a href="#section-6.4">Section 6.4</a>). If no adjacency is to be formed, change the
neighbor state to 2-Way.
Otherwise, change the neighbor state to ExStart. Initialize the
sequence number for this neighbor and declare the local switch to
be master for the database exchange process. (See <a href="#section-7.2">Section 7.2</a>.)
State(s): ExStart
Event: Negotiation Done
New state: Exchange
Action:
The Negotiation Done event signals the start of the database
exchange process. See <a href="#section-7.2">Section 7.2</a> for a detailed description of
this process.
State(s): Exchange
Event: Exchange Done
New state: Depends on action routine
Action:
If the neighbor Link state request list is empty, change the
neighbor state to Full. This is the adjacency's final state.
Otherwise, change the neighbor state to Loading. Begin sending
Link State Request packets to the neighbor requesting the most
recent link state advertisements, as discovered during the
database exchange process. (See <a href="#section-7.2">Section 7.2</a>.) These
advertisements are listed in the link state request list
associated with the neighbor.
State(s): Loading
Event: Loading Done
New state: Full
Action:
No action is required beyond changing the neighbor state to Full.
This is the adjacency's final state.
<span class="grey">Kane Informational [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
State(s): 2-Way
Event: AdjOK?
New state: Depends on action routine
Action:
If no adjacency is to be formed with the neighboring switch (see
<a href="#section-6.4">Section 6.4</a>), retain the neighbor state at 2-Way. Otherwise,
change the neighbor state to ExStart. Initialize the sequence
number for this neighbor and declare the local switch to be master
for the database exchange process. (See <a href="#section-7.2">Section 7.2</a>.)
State(s): ExStart or greater
Event: AdjOK?
New state: Depends on action routine
Action:
If an adjacency should still be formed with the neighboring switch
(see <a href="#section-6.4">Section 6.4</a>), no state change and no further action is
necessary. Otherwise, tear down the (possibly partially formed)
adjacency. Clear the link state retransmission list, database
summary list and link state request list and change the neighbor
state to 2-Way.
State(s): Exchange or greater
Event: Seq Number Mismatch
New state: ExStart
Action:
Tear down the (possibly partially formed) adjacency. Clear the
link state retransmission list, database summary list and link
state request list. Change the neighbor state to ExStart and make
another attempt to establish the adjacency.
State(s): Exchange or greater
Event: BadLSReq
New state: ExStart
Action:
Tear down the (possibly partially formed) adjacency. Clear the
link state retransmission list, database summary list and link
state request list. Change the neighbor state to ExStart and make
another attempt to establish the adjacency.
State(s): Any state
Event: KillNbr
New state: Down
Action:
Terminate the neighbor conversation. Disable the inactivity timer
and clear the link state retransmission list, database summary
list and link state request list.
<span class="grey">Kane Informational [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
State(s): Any state
Event: LLDown
New state: Down
Action:
Terminate the neighbor conversation. Disable the inactivity timer
and clear the link state retransmission list, database summary
list and link state request list.
State(s): Any state
Event: Inactivity Timer
New state: Down
Action:
Terminate the neighbor conversation. Disable the inactivity timer
and clear the link state retransmission list, database summary
list and link state request list.
State(s): 2-Way or greater
Event: 1-Way Received
New state: Init
Action:
Tear down the adjacency between the switches, if any. Clear the
link state retransmission list, database summary list and link
state request list.
State(s): 2-Way or greater
Event: 2-Way received
New state: No state change
Action:
No action required.
State(s): Init
Event: 1-Way received
New state: No state change
Action:
No action required.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Area Data Structure</span>
The area data structure contains all the information needed to run
the basic routing algorithm. One of its components is the link state
database -- the collection of all switch link and network link
advertisements generated by the switches.
The area data structure contains the following items:
<span class="grey">Kane Informational [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Area ID
A 4-octet value identifying the area. Since VLSP does not support
multiple areas, the value here is always zero.
Associated switch interfaces
A list of interface IDs of the local switch interfaces connected
to network links.
Link state database
The collection of all current link state advertisements for the
switch fabric. This collection consists of the following:
Switch link advertisements
A list of the switch link advertisements for all switches in the
fabric. Switch link advertisements describe the state of each
switch's interfaces.
Network link advertisements
A list of the network link advertisements for all multi-access
network links in the switch fabric. Network link advertisements
describe the set of switches currently connected to each link.
Best path(s)
A set of end-to-end hop descriptions for all equal-cost best paths
from the local switch to every other switch in the fabric. Each
hop is specified by the interface ID of the next link in the path.
Best paths are derived from the collected switch link and network
link advertisements using the Dijkstra algorithm. [<a href="#ref-Perlman" title="R.">Perlman</a>]
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a> Adding and Deleting Link State Advertisements</span>
The link state database within the area data structure must contain,
at most, a single instance of each link state advertisement. To keep
the database current, a switch adds link state advertisements to the
database under the following conditions:
o When a link state advertisement is received during the
distribution process
o When the switch itself generates a link state advertisement
<span class="grey">Kane Informational [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
(See <a href="#section-8.2.4">Section 8.2.4</a> for information on installing link state
advertisements.)
Likewise, a switch deletes link state advertisements from the
database under the following conditions:
o When a link state advertisement has been superseded by a newer
instance during the flooding process
o When the switch generates a newer instance of one of its self-
originated advertisements
Note that when an advertisement is deleted from the link state
database, it must also be removed from the link state retransmission
list of all neighboring switches.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a> Accessing Link State Advertisements</span>
An implementation of the VLS protocol must provide access to
individual link state advertisements, based on the advertisement's
type, link state identifier, and advertising switch [<a href="#ref-1">1</a>]. This lookup
function is invoked during the link state distribution procedure and
during calculation of the set of best paths. In addition, a switch
can use the function to determine whether it has originated a
particular link state advertisement, and if so, with what sequence
number.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a> Best Path Lookup</span>
An implementation of the VLS protocol must provide access to multiple
equal-cost best paths, based on the base MAC addresses of the source
and destination switches. This lookup function should return up to
three equal-cost paths. Paths should be returned as lists of end-
to-end hop information, with each hop specified as a interface ID of
the next link in the path -- the 6-octet base MAC address of the next
switch and the 4-octet local port number of the link interface.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Discovery Process</span>
The first operational stage of the VLS protocol is the discovery
process. During this stage, each switch dynamically detects its
neighboring switches and establishes a relationship with each of
these neighbors. This process has the following component steps:
<span class="grey">Kane Informational [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o Neighboring switches are detected on each functioning network
interface.
o Bidirectional communication is established with each neighbor
switch.
o A designated switch and backup designated switch are selected for
each multi-access network link.
o An adjacent relationship is established with selected neighbors on
each link.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a> Neighbor Discovery</span>
When the switch first comes on line, VLSP assumes all network links
are point-to-point and no more than one neighboring switch will be
discovered on any one port. Therefore, at startup, VLSP relies on
the VlanHello protocol [<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] for the discovery of its neighbor
switches.
As each neighbor is detected, VlanHello triggers a Found Neighbor
event, notifying VLSP that a new neighbor has been discovered. (See
[<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] for a description of the Found Neighbor event and the
information passed.) VLSP enters the neighbor switch ID in the list
of known neighbors and creates a new neighbor data structure with a
neighbor status of Down. A Hello Received neighbor event is then
generated, which changes the neighbor state to ExStart.
There are two circumstances under which VLSP will change the type of
an interface to broadcast:
o If VLSP receives a subsequent notification from VlanHello,
specifying a second (different) neighbor switch on the port., the
interface is then known to be multi-access. VLSP generates an
Interface Down event for the interface, resets the interface type
to broadcast, and then generates an Interface Up event.
o If the functional level of the neighbor switch is less than 2, the
neighbor is running a previous version of the VLSP software in
which all links were treated as broadcast links. VLSP immediately
changes the interface type to broadcast and generates an Interface
Up event.
In both cases, VLSP assumes control of communication over the
interface by exchanging its own VLSP Hello packets with the
neighbors on the link.
<span class="grey">Kane Informational [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Note: These Hello packets are in addition to the Interswitch
Keepalive messages sent by VlanHello. VlanHello still continues to
monitor the condition of the interface and notifies VLSP of any
change.
Each Hello packet contains the following data used during the
discovery process on multi-access links:
o The switch ID and priority of the sending switch
o Values specifying the interval timers to be used for sending Hello
packets and deciding whether to declare a neighbor switch Down.
o The switch ID of the designated switch and the backup designated
switch for the link, as understood by the sending switch
o A list of switch IDs of all neighboring switches seen so far on
the link
For a detailed description of the Hello packet format, see <a href="#section-10.6.1">Section</a>
<a href="#section-10.6.1">10.6.1</a>.
When VLSP receives a Hello packet (on a broadcast link), it first
attempts to identify the sending switch by matching its switch ID to
one of the known neighbors listed in the interface data structure.
If this is the first Hello packet received from the switch, the
switch ID is entered in the list of known neighbors and a new
neighbor data structure is created with a neighbor status of Down.
At this point, the remainder of the Hello packet is examined and the
appropriate interface and neighbor events are generated. In all
cases, a neighbor Hello Received event is generated. Other events
may also be generated, triggering further steps in the discovery
process or other actions, as appropriate.
For a detailed description of the interface state machine, see
<a href="#section-3.3">Section 3.3</a>. For a detailed description of the neighbor state
machine, see <a href="#section-4.3">Section 4.3</a>.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a> Bidirectional Communication</span>
Before a conversation can proceed with a neighbor switch,
bidirectional communication must be established with that neighbor.
Bidirectional communication is detected in one of two ways:
<span class="grey">Kane Informational [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o On a point-to-point link, the VlanHello protocol sees its own
switch ID listed in an Interswitch Keepalive message it has
received from the neighbor.
o On a multi-access link, VLSP sees its own switch ID listed in a
VLSP Hello packet it has received from the neighbor.
In either case, a neighbor 2-Way Received neighbor event is
generated.
Once bidirectional communication has been established with a
neighbor, the local switch determines whether an adjacency will be
formed with the neighbor. However, if the link is a multi-access
link, a designated switch and a backup designated switch must first
be selected for the link. The next section contains a description of
the designated switch, the backup designated switch, and the
selection process.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a> Designated Switch</span>
Every multi-access network link has a designated switch. The
designated switch performs the following functions for the routing
protocol:
o The designated switch originates a network link advertisement on
behalf of the link, listing the set of switches (including the
designated switch itself) currently attached to the link. For a
detailed description of network link advertisements, see <a href="#section-11.3">Section</a>
<a href="#section-11.3">11.3</a>.
o The designated switch becomes adjacent to all other switches on
the link. Since the link state databases are synchronized across
adjacencies, the designated switch plays a central part in the
synchronization process. For a description of the synchronization
process, see <a href="#section-7">Section 7</a>.
Each multi-access network link also has a backup designated switch.
The primary function of the backup designated switch is to act as a
standby for the designated switch. If the current designated switch
fails, the backup designated switch becomes the designated switch.
To facilitate this transition, the backup designated switch forms an
adjacency with every other switch on the link. Thus, when the backup
designated switch must take over for the designated switch, its link
state database is already synchronized with the databases of all
other switches on the link.
<span class="grey">Kane Informational [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Note: Point-to-point network links have neither a designated switch
or a backup designated switch.
<span class="h4"><a class="selflink" id="section-6.3.1" href="#section-6.3.1">6.3.1</a> Selecting the Designated Switch</span>
When a multi-access link interface first becomes functional, the
switch sets a one-shot Wait timer (with a value of SwitchDeadInterval
seconds) for the interface. The purpose of this timer is to ensure
that all switches attached to the link have a chance to establish
bidirectional communication before the designated switch and backup
designated switch are selected for the link.
When the Wait timer is set, the interface enters the Waiting state.
During this state, the switch exchanges Hello packets with its
neighbors attempting to establish bidirectional communication. The
interface leaves the Waiting state under one of the following
conditions:
o The Wait timer expires.
o A Hello packet is received indicating that a designated switch or
a backup designated switch has already been specified for the
interface.
At this point, if the switch sees that a designated switch has
already been selected for the link, the switch accepts that
designated switch, regardless of its own switch priority and MAC
address. This situation typically means the switch has come up late
on a fully functioning link. Although this makes it harder to
predict the identity of the designated switch on a particular link,
it ensures that the designated switch does not change needlessly,
necessitating a resynchronization of the databases.
If no designated switch is currently specified for the link, the
switch begins the actual selection process. Note that this selection
algorithm operates only on a list of neighbor switches that are
eligible to become the designated switch. A neighbor is eligible to
be the designated switch if it has a switch priority greater than
zero and its neighbor state is 2-Way or greater. The local switch
includes itself on the list of eligible switches as long as it has a
switch priority greater than zero.
The selection process includes the following steps:
1. The current values of the link's designated switch and backup
designated switch are saved for use in step 6.
2. The new backup designated switch is selected as follows:
<span class="grey">Kane Informational [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
a) Eliminate from consideration those switches that have declared
themselves to be the designated switch.
b) If one or more of the remaining switches have declared
themselves to be the backup designated switch, eliminate from
consideration all other switches.
c) From the remaining list of eligible switches, select the switch
having the highest switch priority as the backup designated
switch. If multiple switches have the same (highest) priority,
select the switch with the highest switch ID as the backup
designated switch.
3. The new designated switch is selected as follows:
a) If one or more of the switches have declared themselves to be
the designated switch, eliminate from consideration all other
switches.
b) From the remaining list of eligible switches, select the switch
having the highest switch priority as the designated switch.
If multiple switches have the same (highest) priority, select
the switch with the highest switch ID as the designated switch.
4. If the local switch has been newly selected as either the
designated switch or the backup designated switch, or is now no
longer the designated switch or the backup designated switch,
repeat steps 2 and 3, above, and then proceed to step 5.
If the local switch is now the designated switch, it will
eliminate itself from consideration at step 2a when the selection
of the backup designated switch is repeated. Likewise, if the
local switch is now the backup designated switch, it will
eliminate itself from consideration at step 3a when the selection
of the designated switch is repeated. This ensures that no switch
will select itself as both backup designated switch and designated
switch [<a href="#ref-2">2</a>].
5. Set the interface state to the appropriate value, as follows:
o If the local switch is now the designated switch, set the
interface state to DS.
o If the local switch is now the backup designated switch, set the
interface state to Backup.
o Otherwise, set the interface state to DS Other.
<span class="grey">Kane Informational [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
6. If either the designated switch or backup designated switch has
now changed, the set of adjacencies associated with this link must
be modified. Some adjacencies may need to be formed, while others
may need to be broken. Generate the neighbor AdjOK? event for all
neighbors with a state of 2-Way or higher to trigger a
reexamination of adjacency eligibility.
Caution: If VLSP is implemented with configurable parameters, care
must be exercised in specifying the switch priorities. Note that if
the local switch is not itself eligible to become the designated
switch (i.e., it has a switch priority of 0), it is possible that
neither a backup designated switch nor a designated switch will be
selected by the above procedure. Note also that if the local switch
is the only attached switch that is eligible to become the designated
switch, it will select itself as designated switch and there will be
no backup designated switch for the link. For this reason, it is
advisable to specify a default switch priority of 1 for all switches.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a> Adjacencies</span>
VLSP creates adjacencies between neighboring switches for the purpose
of exchanging routing information. Not every two neighboring
switches will become adjacent. On a multi-access link, an adjacency
is only formed between two switches if one of them is either the
designated switch or the backup designated switch.
Note that an adjacency is bound to the network link that the two
switches have in common. Therefore, if two switches have multiple
links in common, they may also have multiple adjacencies between
them.
The decision to form an adjacency occurs in two places in the
neighbor state machine:
o When bidirectional communication is initially established with the
neighbor.
o When the designated switch or backup designated switch on the
attached link changes.
The rules for establishing an adjacency between two neighboring
switches are as follows:
o On a point-to-point link, the two neighboring switches always
establish an adjacency.
o On a multi-access link, an adjacency is established with the
neighboring switch under one of the following conditions:
<span class="grey">Kane Informational [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o The local switch itself is the designated switch.
o The local switch itself is the backup designated switch.
o The neighboring switch is the designated switch.
o The neighboring switch is the backup designated switch.
If no adjacency is formed between two neighboring switches, the state
of the neighbor conversation remains set to 2-Way.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Synchronizing the Databases</span>
In an SPF-based routing algorithm, it is important for the link state
databases of all switches to stay synchronized. VLSP simplifies this
process by requiring only adjacent switches to remain synchronized.
The synchronization process begins when the switches attempt to bring
up the adjacency. Each switch in the adjacency describes its
database by sending a sequence of Database Description packets to its
neighbor. Each Database Description packet describes a set of link
state advertisements belonging to the database. When the neighbor
sees a link state advertisement that is more recent than its own
database copy, it makes a note to request this newer advertisement.
During this exchange of Database Description packets (known as the
database exchange process), the two switches form a master/slave
relationship. Database Description packets sent by the master are
known as polls, and each poll contains a sequence number. Polls are
acknowledged by the slave by echoing the sequence number in the
Database Description response packet.
When all Database Description packets have been sent and
acknowledged, the database exchange process is completed. At this
point, each switch in the exchange has a list of link state
advertisements for which its neighbor has more recent instances.
These advertisements are requested using Link State Request packets.
Once the database exchange process has completed and all Link State
Requests have been satisfied, the databases are deemed synchronized
and the neighbor states of the two switches are set to Full,
indicating that the adjacency is fully functional. Fully functional
adjacencies are advertised in the link state advertisements of the
two switches [<a href="#ref-3">3</a>].
<span class="grey">Kane Informational [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a> Link State Advertisements</span>
Link state advertisements form the core of the database from which a
switch calculates the set of best paths to the other switches in the
fabric.
Each link state advertisement begins with a standard header. This
header contains three data items that uniquely identify the link
state advertisement.
o The link state type. Possible values are as follows:
1 Switch link advertisement -- describes the collected states of
the switch's interfaces.
2 Network link advertisement -- describes the set of switches
attached to the network link.
o The link state ID, defined as follows:
o For a switch link advertisement -- the switch ID of the
originating switch
o For a network link advertisement -- the switch ID of the
designated switch for the link
o The switch ID of the advertising switch -- the switch that
generated the advertisement
The link state advertisement header also contains three data items
that are used to determine which instance of a particular link state
advertisement is the most current. (See <a href="#section-7.1.1">Section 7.1.1</a> for a
description of how to determine which instance of a link state
advertisement is the most current.)
o The link state sequence number
o The link state age, stored in seconds
o The link state checksum, a 16-bit unsigned value calculated for
the entire contents of the link state advertisement, with the
exception of the age field
The remainder of each link state advertisement contains data specific
to the type of the advertisement. See <a href="#section-11">Section 11</a> for a detailed
description of the link state header, as well as the format of a
switch link or network link advertisement.
<span class="grey">Kane Informational [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h4"><a class="selflink" id="section-7.1.1" href="#section-7.1.1">7.1.1</a> Determining Which Link State Advertisement Is Newer</span>
At various times while synchronizing or updating the link state
database, a switch must determine which instance of a particular link
state advertisement is the most current. This decision is made as
follows:
o The advertisement having the greater sequence number is the most
current.
o If both instances have the same sequence number, then:
o If the two instances have different checksum values, then the
instance having the larger checksum is considered the most
current [<a href="#ref-4">4</a>].
o If both instances have the same sequence number and the same
checksum value, then:
o If one (and only one) of the instances is of age MaxAge, then
the instance of age MaxAge is considered the most current [<a href="#ref-5">5</a>].
o Else, if the ages of the two instances differ by more than
MaxAgeDiff, the instance having the smaller (younger) age is
considered the most current [<a href="#ref-6">6</a>].
o Else, the two instances are considered identical.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a> Database Exchange Process</span>
There are two stages to the database exchange process:
o Negotiating the master/slave relationship
o Exchanging database summary information
<span class="h4"><a class="selflink" id="section-7.2.1" href="#section-7.2.1">7.2.1</a> Database Description Packets</span>
Database Description packets are used to describe a switch's link
state database during the database exchange process. Each Database
Description packet contains a list of headers of the link state
advertisements currently stored in the sending switch's database.
(See <a href="#section-11.1">Section 11.1</a> for a description of a link state advertisement
header.)
In addition to the link state headers, each Database Description
packet contains the following data items:
<span class="grey">Kane Informational [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o A flag (the M-bit) indicating whether or not more packets are to
follow. Depending on the size of the local database and the
maximum size of the packet, the list of headers in any particular
Database Description packet may be only a partial list of the
total database. When the M-bit is set, the list of headers is
only a partial list and more headers are to follow in subsequent
packets.
o A flag (the I-bit) indicating whether or not this is the first
Database Description packet sent for this execution of the
database exchange process.
o A flag (the MS-bit) indicating whether the sending switch thinks
it is the master or the slave in the database exchange process.
If the flag is set, the switch thinks it is the master.
o A 4-octet sequence number for the packet.
While the switches are negotiating the master/slave relationship,
they exchange "empty" Database Description packets. That is, packets
that contain no link summary information. Instead, the flags and
sequence number constitute the information required for the
negotiation process.
See <a href="#section-10.6.2">Section 10.6.2</a> for a more detailed description of a Database
Description packet.
<span class="h4"><a class="selflink" id="section-7.2.2" href="#section-7.2.2">7.2.2</a> Negotiating the Master/Slave Relationship</span>
Before two switches can begin the actual exchange of database
information, they must decide between themselves who will be the
master in the exchange process and who will be the slave. They must
also agree on the starting sequence number for the Database
Description packets.
Once a switch has decided to form an adjacency with a neighboring
switch, it sets the neighbor state to ExStart and begins sending
empty Database Description packets to its neighbor. These packets
contain the starting sequence number the switch plans to use in the
exchange process. Also, the I-bit and M-bit flags are set, as well
as the MS-bit. Thus, each switch in the exchange begins by believing
it will be the master.
Empty Database Description packets are retransmitted every
RxmtInterval seconds until the neighbor responds.
<span class="grey">Kane Informational [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
When a switch receives an empty Database Description packet from its
neighbor, it determines which switch will be the master by comparing
the switch IDs. The switch with the highest switch ID becomes the
master of the exchange. Based on this determination, the switch
proceeds as follows:
o If the switch is to be the slave of the database exchange process,
it acknowledges that it is the slave by sending another empty
Database Description packet to the master. This packet contains
the master's sequence number and has the MS-bit and the I-bit
cleared.
o The switch then generates a neighbor event of Negotiation Done to
change its neighbor state to Exchange and waits for the first
non-empty Database Description packet from the master.
o If the switch is to be the master of the database exchange, it
waits to receive an acknowledgment from its neighbor -- that is,
an empty Database Description packet with the MS-bit and I-bit
cleared and containing the sequence number it (the master)
previously sent.
o When it receives the acknowledgment, it generates a neighbor event
of Negotiation Done to change its neighbor state to Exchange and
begin the actual exchange of Database Description packets.
Note that during the negotiation process, the receipt of an
inconsistent packet will result in a neighbor event of Seq Number
Mismatch, terminating the process. See <a href="#section-4.3">Section 4.3</a> for more
information.
<span class="h4"><a class="selflink" id="section-7.2.3" href="#section-7.2.3">7.2.3</a> Exchanging Database Description Packets</span>
Once the neighbor state changes to Exchange, the switches begin the
exchange of Database Description packets containing link state
summary data. The process proceeds as follows:
1. The master sends a packet containing a list of link state headers.
If the packet contains only a portion of the unexchanged database
-- that is, more Database Description packets are to follow -- the
packet has the M-bit set. The MS-bit is set and the I-bit is
clear.
If the slave does not acknowledge the packet within RxmtInterval
seconds, the master retransmits the packet.
<span class="grey">Kane Informational [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
2. When the slave receives a packet, it first checks the sequence
number to see if the packet is a duplicate. If so, it simply
acknowledges the packet by clearing the MS-bit and returning the
packet to the master. (Note that the slave acknowledges all
Database Description packets that it receives, even those that are
duplicates.)
Otherwise, the slave processes the packet by doing the following:
o For each link state header listed in the packet, the slave
searches its own link state database to determine whether it
has an instance of the advertisement.
o If the slave does not have an instance of the link state
advertisement, or if the instance it does have is older than
the instance listed in the packet, it creates an entry in its
link state request list in the neighbor data structure. See
<a href="#section-7.1.1">Section 7.1.1</a> for a description of how to determine which
instance of a link state advertisement is the newest.
o When the slave has examined all headers, it acknowledges the
packet by turning the MS-bit off and returning the packet to
the master.
3. When the master receives the first acknowledgment for a particular
Database Description packet, it processes the acknowledgment as
follows:
o For each link state header listed in the packet, the master
checks to see if the slave has indicated it has an instance of
the link state advertisement that is newer than the instance
the master has in its own database. If so, the master creates
an entry in its link state request list in the neighbor data
structure.
o The master then increments the sequence number and sends
another packet containing the next set of link state summary
information, if any.
Subsequent acknowledgments for the Database Description packet
(those with the same sequence number) are discarded.
When the master sends the last portion of its database summary
information, it clears the M-bit in the packet to indicate that no
more packets are to be sent.
<span class="grey">Kane Informational [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
4. When the slave receives a Database Description packet with the M-
bit clear, it processes the packet, as described above in step 2.
After it has completed processing and has acknowledged the packet
to the master, it generates an Exchange Done neighbor event and
its neighbor state changes to Loading.
The database exchange process is now complete for the slave, and
it begins the process of requesting those link state
advertisements for which the master has more current instances
(see <a href="#section-7.3">Section 7.3</a>).
5. When the master receives an acknowledgment for the final Database
Description packet, it processes the acknowledgment as described
above in step 3. Then it generates an Exchange Done neighbor
event and its neighbor state changes to Loading.
The database exchange process is now complete for the master, and
it begins the process of requesting those link state
advertisements for which the slave has more current instances (see
<a href="#section-7.3">Section 7.3</a>).
Note that during this exchange, the receipt of an inconsistent packet
will result in a neighbor event of Seq Number Mismatch, terminating
the process. See <a href="#section-4.3">Section 4.3</a> for more information.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a> Updating the Database</span>
When either switch completes the database exchange process and its
neighbor state changes to Loading, it has a list of link state
advertisements for which the neighboring switch has a more recent
instance. This list is stored in the neighbor data structure as the
link state request list.
To complete the synchronization of its database with that of its
neighbor, the switch must obtain the most current instances of those
link state advertisements.
The switch requests these advertisements by sending its neighbor a
Link State Request packet containing the description of one or more
link state advertisement, as defined by the advertisement's type,
link state ID, and advertising switch. (For a detailed description
of the Link State Request packet, see <a href="#section-10.6.3">Section 10.6.3</a>.) The switch
continues to retransmit this packet every RxmtInterval seconds until
it receives a reply from the neighbor.
<span class="grey">Kane Informational [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
When the neighbor switch receives the Link State Request packet, it
responds with a Link State Update packet containing its most current
instance of each of the requested advertisements. (Note that the
neighboring switch can be in any of the Exchange, Loading or Full
neighbor states when it responds to a Link State Request packet.)
If the neighbor cannot locate a particular link state advertisement
in its database, something has gone wrong with the synchronization
process. The switch generates a BadLSReq neighbor event and the
partially formed adjacency is torn down. See <a href="#section-4.3">Section 4.3</a> for more
information.
Depending on the size of the link state request list, it may take
more than one Link State Request packet to obtain all the necessary
advertisements. Note, however, that there must at most one Link
State Request packet outstanding at any one time.
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a> An Example</span>
Figure 3 shows an example of an adjacency being formed between two
switches -- S1 and S2 -- connected to a network link. S2 is the
designated switch for the link and has a higher switch ID than S1.
The neighbor state changes that each switch goes through are listed
on the sides of the figure.
<span class="grey">Kane Informational [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
+--------+ +--------+
| Switch | | Switch |
| S1 | | S2 |
+--------+ +--------+
Down Down
Hello (DS=0, seen=0)
------------------------------------->
Init
Hello (DS=S2, seen=...,S1)
<-------------------------------------
ExStart
DB Description (Seq=x, I, M, Master)
------------------------------------->
ExStart
DB Description (Seq=y, I, M, Master)
<-------------------------------------
xchange
DB Description (Seq=y, M, Slave)
------------------------------------->
Exchange
DB Description (Seq=y+1, M, Master)
<-------------------------------------
DB Description (Seq=y+1, M, Slave)
------------------------------------->
.
.
.
DB Description (Seq=y+n, Master)
<-------------------------------------
DB Description (Seq=y+n, Slave)
------------------------------------->
Loading Full
Link State Request
<-------------------------------------
Link State Update
------------------------------------->
.
.
.
Link State Request
<-------------------------------------
Link State Update
------------------------------------->
Full
Figure 3: An Example of Bringing Up an Adjacency
<span class="grey">Kane Informational [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
At the top of Figure 3, S1's interface to the link becomes
operational, and S1 begins sending Hello packets over the interface.
At this point, S1 does not yet know the identity of the designated
switch or of any other neighboring switches. S2 receives the Hello
packet from S1 and changes its neighbor state to Init. In its next
Hello packet, S2 indicates that it is itself the designated switch
and that it has received a Hello packet from S1. S1 receives the
Hello packet and changes its state to ExStart, starting the process
of bringing up the adjacency.
S1 begins by asserting itself as the master. When it sees that S2 is
indeed the master (because of S2's higher switch ID), S1 changes to
slave and adopts S2's sequence number. Database Description packets
are then exchanged, with polls coming from the master (S2) and
acknowledgments from the slave (S1). This sequence of Database
Description packets ends when both the poll and associated
acknowledgment have the M-bit off.
In this example, it is assumed that S2 has a completely up-to-date
database and immediately changes to the Full state. S1 will change to
the Full state after updating its database by sending Link State
Request packets and receiving Link State Update packets in response.
Note that in this example, S1 has waited until all Database
Description packets have been received from S2 before sending any
Link State Request packets. However, this need not be the case. S1
could interleave the sending of Link State Request packets with the
reception of Database Description packets.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Maintaining the Databases</span>
Each switch advertises its state (also known as its link state) by
originating switch link advertisements. In addition, the designated
switch on each network link advertises the state of the link by
originating network link advertisements.
As described in <a href="#section-7.1">Section 7.1</a>, link state advertisements are uniquely
identified by their type, link state ID, and advertising switch.
Link state advertisements are distributed throughout the switch
fabric using a reliable flooding algorithm that ensures that all
switches in the fabric are notified of any link state changes.
<span class="grey">Kane Informational [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a> Originating Link State Advertisements</span>
A new instance of each link state advertisement is originated any
time the state of the switch or link changes. When a new instance of
a link state advertisement is originated, its sequence number is
incremented, its age is set to zero, and its checksum is calculated.
The advertisement is then installed into the local link state
database and forwarded out all fully operational interfaces (that is,
those interfaces with a state greater than Waiting) for distribution
throughout the switch fabric. See <a href="#section-8.2.4">Section 8.2.4</a> for a description of
the installation of the advertisement into the link state database
and <a href="#section-8.2.5">Section 8.2.5</a> for a description of how advertisements are
forwarded.
A switch originates a new instance of a link state advertisement as a
result of the following events:
o The state of one of the switch's interfaces changes such that the
contents of the associated switch link advertisement changes.
o The designated switch on any of the switch's attached network
links changes. The switch originates a new switch link
advertisement. Also, if the switch itself is now the designated
switch, it originates a new network link advertisement for the
link.
o One of the switch's neighbor states changes to or from Full. If
this changes the contents of the associated switch link
advertisement, a new instance is generated. Also, if the switch
is the designated switch for the attached network link, it
originates a new network link advertisement for the link.
Two instances of the same link state advertisement must not be
originated within the time period MinLSInterval. Note that this may
require that the generation of the second instance to be delayed up
to MinLSInterval seconds.
<span class="h4"><a class="selflink" id="section-8.1.1" href="#section-8.1.1">8.1.1</a> Switch Link Advertisements</span>
A switch link advertisement describes the collected states of all
functioning links attached to the originating switch -- that is, all
attached links with an interface state greater than Down. A switch
originates an empty switch link advertisement when it first becomes
functional. It then generates a new instance of the advertisement
each time one of its interfaces reaches a fully functioning state
(Point-to-Point or better).
<span class="grey">Kane Informational [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Each link in the advertisement is assigned a type, based on the state
of interface, as shown in Table 4.
Interface state Link type Description
Point-to-Point 1 Point-to-point link
DS Other* 2 Multi-access link
Backup* 2 Multi-access link
DS** 2 Multi-access link
*If a full adjacency has been formed with the designated
switch.
**If a full adjacency has been formed with at least one
other switch on the link.
Table 4: Link Types in a Switch Link Advertisement
Each link in the advertisement is also assigned a link identifier
based on its link type. In general, this value identifies another
switch that also originates advertisements for the link, thereby
providing a key for accessing other link state advertisements for the
link. The relationship between link type and ID is shown in Table 5.
Type Description Link ID
1 Point-to-point link Switch ID of neighbor switch
2 Multi-access link Switch ID of designated switch
Table 5: Link IDs in a Switch Link Advertisement
In addition to a type and an identifier, the description of each link
specifies the interface ID of the associated network link.
Finally, each link description includes the cost of sending a packet
over the link. This output cost is expressed in the link state
metric and must be greater than zero.
To illustrate the format of a switch link advertisement, consider the
switch fabric shown in Figure 4.
In this example, switch SW1 has 5 neighboring switches (shown as
boxes) distributed over 3 network links (shown as lines). The base
MAC address of each switch is also shown adjacent to each box. On
switch SW1, ports 01 and 02 attach to point-to-point network links,
<span class="grey">Kane Informational [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
while port 03 attaches to a multi-access network link with three
attached switches. The interface state of each port is shown next to
the line representing the corresponding link.
00-00-1d-22-23-c5
+-------+
| SW2 |
+-------+
|
| Point-to-Point
|
| 01
+-------+ Loopback +-------+
| SW3 |----------------| SW1 | 00-00-1d-1f-05-81
+-------+ 02 +-------+
00-00-1d-17-35-a4 | 03
|
| DS Other
|
+--------------------+--------------------+
| | |
| DS Other | Backup | DS
| | |
+-------+ +-------+ +-------+
| SW4 | | SW5 | | SW6 |
+-------+ +-------+ +-------+
00-00-1d-4a-26-b3 00-00-1d-4a-27-1c 00-00-1d-7e-84-2e
Figure 4: Sample Switch Fabric
The switch link advertisement generated by switch SW1 would contain
the following data items:
; switch link advertisement for switch SW1
LS age = 0 ; always true on origination
Options = (T-bit|E-bit) ; options
LS type = 1 ; this is a switch link advert
<span class="grey">Kane Informational [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
; SW1's switch ID
Link State ID = 00-00-1d-1f-05-81-00-00-00-00
Advertising switch = 00-00-1d-1f-05-81-00-00-00-00
# links = 2
; link on interface port 1
Link ID = 00-00-1d-22-23-c5-00-00-00-00 ; switch ID
Link Data = 00-00-1d-1f-05-81-00-00-00-01 ; interface ID
Type = 1 ; pt-to-pt link
# other metrics = 0 ; TOS 0 only
TOS 0 metric = 1
; link on interface port 2 is not fully functional
; link on interface port 3
Link ID = 00-00-1d-7e-84-2e-00-00-00-00 ; switch ID of DS
Link Data = 00-00-1d-1f-05-81-00-00-00-03 ; interface ID
Type = 2 ; multi-access
# other metrics = 0 ; TOS 0 only
TOS 0 metric = 2
(See <a href="#section-11.2">Section 11.2</a> for a detailed description of the format of a
switch link advertisement.)
<span class="h4"><a class="selflink" id="section-8.1.2" href="#section-8.1.2">8.1.2</a> Network Link Advertisements</span>
Network link advertisements are used to describe the switches
attached to each multi-access network link.
Note: Network link advertisements are not generated for point-to-
point links.
A network link advertisement is originated by the designated switch
for the associated multi-access link once the switch has established
a full adjacency with at least one other switch on the link. Each
advertisement lists the switch IDs of those switches that are fully
adjacent to the designated switch. The designated switch includes
itself in this list.
To illustrate the format of a network link advertisement, consider
again the switch fabric shown in Figure 4. In this example, network
link advertisements will be generated only by switch SW6, the
designated switch of the multi-access network link between switches
SW1 and switches SW4, SW5, and SW6.
The network link advertisement generated by switch SW6 would contain
the following data items:
<span class="grey">Kane Informational [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
; network link advertisement for switch SW6
LS age = 0 ; always true on origination
Options = (T-bit|E-bit) ; options
LS type = 2 ; this is a network link advert
; SW6's switch ID
Link State ID = 00-00-1d-73-84-2e-00-00-00-00
Advertising switch = 00-00-1d-73-84-2e-00-00-00-00
Attached switch = 00-00-1d-7e-84-2e-00-00-00-00
Attached switch = 00-00-1d-4a-26-b3-00-00-00-00
Attached switch = 00-00-1d-1f-05-81-00-00-00-00
Attached switch = 00-00-1d-4a-27-1c-00-00-00-00
(See <a href="#section-11.3">Section 11.3</a> for a detailed description of the format of a
network link advertisement.)
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a> Distributing Link State Advertisements</span>
Link state advertisements are distributed throughout the switch
fabric encapsulated within Link State Update packets. A single Link
State Update packet may contain several distinct advertisements.
To make the distribution process reliable, each advertisement must be
explicitly acknowledged in a Link State Acknowledgment packet. Note,
however, that multiple acknowledgments can be grouped together into a
single Link State Acknowledgment packet. A sending switch retransmits
unacknowledged Link State Update packets at regular intervals until
they are acknowledged.
The remainder of this section is structured as follows:
o <a href="#section-8.2.1">Section 8.2.1</a> presents an overview of the distribution process.
o <a href="#section-8.2.2">Section 8.2.2</a> describes how an incoming Link State Update packet
is processed.
o <a href="#section-8.2.3">Section 8.2.3</a> describes how a Link State Packet is forwarded --
both by the originating switch and an intermediate receiving
switch.
o <a href="#section-8.2.4">Section 8.2.4</a> describes how advertisements are installed into the
local database.
o <a href="#section-8.2.5">Section 8.2.5</a> describes the retransmission of unacknowledged
advertisements.
<span class="grey">Kane Informational [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o <a href="#section-8.2.6">Section 8.2.6</a> describes how advertisements are acknowledged.
<span class="h4"><a class="selflink" id="section-8.2.1" href="#section-8.2.1">8.2.1</a> Overview</span>
The philosophy behind the distribution of link state advertisements
is based on the concept of adjacencies -- that is, each switch is
only required to remain synchronized with its adjacent neighbors.
When a switch originates a new instance of a link state
advertisement, it formats the advertisement into a Link State Update
packet and floods the packet out each fully operational interface --
that is, each interface with a state greater than Waiting. However,
only those neighbors that are adjacent to the sending switch need to
process the packet.
The sending switch indicates which of its neighbor switches should
process the advertisement by specifying a particular multicast
destination in the network layer address information (see <a href="#section-10.3">Section</a>
<a href="#section-10.3">10.3</a>). The sending switch sets the value of the network layer
destination switch ID field according to the state of the interface
over which the packet is sent:
o If the interface state is Point-to-Point, DS, or Backup, the
switch is adjacent to all other switches on the link and all
neighboring switches must process the packet. Therefore, the
destination field is set to the multicast switch ID
AllSPFSwitches.
o If the interface state is DS Other, the switch is only adjacent to
the designated switch and the backup designated switch and only
those two neighboring switches must process the packet.
Therefore, the destination field is set to the multicast switch ID
AllDSwitches.
A similar logic is used when a switch receives a Link State Update
packet containing a new instance of a link state advertisement.
After processing and acknowledging the packet, the receiving switch
forwards the Link State Update packet as
o On the interface over which the original Link State Update packet
was received:
<span class="grey">Kane Informational [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o If the receiving switch is the designated switch for the
attached network link, the packet is forwarded to all other
switches on the link. (The destination field is set to
AllSPFSwitches.) The originating switch will recognize that it
was the advertisement originator and discard the packet.
o If the receiving switch is not the designated switch for the
attached network link, the packet is not sent back out the
interface over which it was received.
o On all other interfaces:
o If the receiving switch is the designated switch for the
attached network link, the packet is forwarded to all switches
on the link. (The destination field is set to AllSPFSwitches.)
o If the receiving switch is neither the designated switch or the
backup designated switch for the attached network link, the
packet is forwarded only to the designated switch and the
backup designated switch. (The destination field is set to
AllDSwitches.)
Each Link State Update packet is forwarded and processed in this
fashion until all switches in the fabric have received notification
of the new instance of the link state advertisement.
<span class="h4"><a class="selflink" id="section-8.2.2" href="#section-8.2.2">8.2.2</a> Processing an Incoming Link State Update Packet</span>
When the a Link State Update packet is received, it is first
subjected to a number of consistency checks. In particular, the Link
State Update packet is associated with a specific neighbor. If the
state of that neighbor is less than Exchange, the entire Link State
Update packet is discarded.
Each link state advertisement contained in the packet is processed as
follows:
1. Validate the advertisement's link state checksum and type. If the
checksum is invalid or the type is unknown, discard the
advertisement without acknowledging it.
2. If the advertisement's age is equal to MaxAge and there is
currently no instance of the advertisement in the local link state
database, then do the following:
<span class="grey">Kane Informational [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
a) Acknowledge the advertisement by sending a Link State
Acknowledgment packet to the sending neighbor (see <a href="#section-8.2.6">Section</a>
<a href="#section-8.2.6">8.2.6</a>).
b) Purge all outstanding requests for equal or previous instances
of the advertisement from the sending neighbor's Link State
Request list.
c) If the neighbor is Exchange or Loading, install the
advertisement in the link state database (see <a href="#section-8.2.4">Section 8.2.4</a>).
Otherwise, discard the advertisement.
3. If the advertisement's age is equal to MaxAge and there is an
instance of the advertisement in the local link state database,
then do the following:
a) If the advertisement is listed in the link state retransmission
list of any neighbor, remove the advertisement from the
retransmission list(s) and delete the database copy of the
advertisement.
b) Discard the received (MaxAge) advertisement without
acknowledging it.
4. If the advertisement's age is less than MaxAge, attempt to locate
an instance of the advertisement in the local link state database.
If there is no database copy of this advertisement, or the
received advertisement is more recent than the database copy (see
<a href="#section-7.1.1">Section 7.1.1</a>), do the following:
a) If there is already a database copy, and if the database copy
was installed less than MinLSInterval seconds ago, discard the
new advertisement without acknowledging it.
b) Otherwise, forward the new advertisement out some subset of the
local interfaces (see <a href="#section-8.2.3">Section 8.2.3</a>). Note whether the
advertisement was sent back out the receiving interface for
later use by the acknowledgment process.
c) Remove the current database copy from the Link state
retransmission lists of all neighbors.
d) Install the new advertisement in the link state database,
replacing the current database copy. (Note that this may cause
the calculation of the set of best paths to be scheduled. See
<a href="#section-9">Section 9</a>.) Timestamp the new advertisement with the time that
it was received to prevent installation of another instance
within MinLSInterval seconds.
<span class="grey">Kane Informational [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
e) Acknowledge the advertisement, if necessary, by sending a Link
State Acknowledgment packet back out the receiving interface.
(See <a href="#section-8.2.6">Section 8.2.6</a>.)
f) If the link state advertisement was initially advertised by the
local switch itself, advance the advertisement sequence number
and issue a new instance of the advertisement. (Receipt of a
newer instance of an advertisement means that the local copy of
the advertisement is left over from before the last time the
switch was restarted.)
5. If the received advertisement is the same instance as the database
copy (as determined by the algorithm described in <a href="#section-7.1.1">Section 7.1.1</a>),
do the following:
a) If the advertisement is listed in the neighbor's link state
retransmission list, the local switch is expecting an
acknowledgment for this advertisement. Treat the received
advertisement as an implied acknowledgment, and remove the
advertisement from the link state retransmission list. Note
this implied acknowledgment for later use by the acknowledgment
process (<a href="#section-8.2.6">Section 8.2.6</a>).
b) Acknowledge the advertisement, if necessary, by sending a Link
State Acknowledgment packet back out the receiving interface.
(See <a href="#section-8.2.6">Section 8.2.6</a>.)
If the database copy of the advertisement is more recent than the
instance just received, do the following:
a) Determine whether the instance is listed in the neighbor link
state request list. If so, an error has occurred in the
database exchange process. Restart the database exchange
process by generating a neighbor BadLSReq event for the sending
neighbor and terminate processing of the Link State Update
packet.
b) Otherwise, generate an unusual event to network management and
discard the advertisement.
<span class="h4"><a class="selflink" id="section-8.2.3" href="#section-8.2.3">8.2.3</a> Forwarding Link State Advertisements</span>
When a new instance of an advertisement is originated or after an
incoming advertisement has been processed, the switch must decide
over which interfaces and to which neighbors the advertisement will
be forwarded. In some instances, the switch may decide not to
forward the advertisement over a particular interface because it is
able to determine that the neighbors on that attached link have or
<span class="grey">Kane Informational [Page 60]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-61" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
will receive the advertisement from another switch on the link.
The decision of whether to forward an advertisement over each of the
switch's interfaces is made as follows:
1. Each neighboring switch attached to the interface is examined to
determine whether it should receive and process the new
advertisement. For each neighbor, the following steps are
executed:
a) If the neighbor state is less than Exchange, the neighbor need
not receive or process the new advertisement.
b) If the neighbor state is Exchange or Loading, examine the link
state request list associated with the neighbor. If an
instance of the new advertisement is on the list, the
neighboring switch already has an instance of the
advertisement. Compare the new advertisement to the neighbor's
copy:
o If the new advertisement is less recent, the neighbor need
not receive or process the new advertisement.
o If the two copies are the same instance, delete the
advertisement from the link state request list. The
neighbor need not receive or process the new advertisement
[<a href="#ref-7">7</a>].
o Otherwise, the new advertisement is more recent. Delete the
advertisement from the link state request list. The
neighbor may need to receive and process the new
advertisement.
c) If the new advertisement was received from this neighbor, the
neighbor need not receive or process the advertisement.
d) Add the new advertisement to the link state retransmission list
for the neighbor.
2. The switch must now decide whether to forward the new
advertisement out the interface.
a) If the link state advertisement was not added to any of the
link state retransmission lists for neighbors attached to the
interface, there is no need to forward the advertisement out
the interface.
<span class="grey">Kane Informational [Page 61]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-62" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
b) If the new advertisement was received on this interface, and it
was received from either the designated switch or the backup
designated switch, there is no need to forward the
advertisement out the interface. Chances are all neighbors on
the attached network link have also received the advertisement
already.
c) If the new advertisement was received on this interface and the
state of the interface is Point-to-Point, there is no need to
forward the advertisement since the received advertisement was
originated by the neighbor switch.
d) If the new advertisement was received on this interface, and
the interface state is Backup -- that is, the switch itself is
the backup designated switch -- there is no need to forward the
advertisement out the interface. The designated switch will
distribute advertisements on the attached network link.
e) Otherwise, the advertisement must be forwarded out the
interface.
To forward a link state advertisement, the switch first increments
the advertisement's age by InfTransDelay seconds to account for
the transmission time over the link. The switch then copies the
advertisement into a Link State Update packet
Forwarded advertisements are sent to all adjacent switches
associated with the interface. If the interface state is Point-
to-Point, DS, or Backup, the destination switch ID field of the
network layer address information is set to the multicast switch
ID AllSPFSwitches. If the interface state is DS Other, the
destination switch ID field is set to the multicast switch ID
AllDSwitches.
<span class="h4"><a class="selflink" id="section-8.2.4" href="#section-8.2.4">8.2.4</a> Installing Link State Advertisements in the Database</span>
When a new link state advertisement is installed into the link state
database, as the result of either originating or receiving a new
instance of an advertisement, the switch must determine whether the
best paths need to be recalculated. To make this determination, do
the following:
1. Compare the contents of the new instance with the contents of the
old instance (assuming the older instance is available). Note that
this comparison does not include any data from the link state
header. Differences in fields within the header (such as the
sequence number and checksum, which are guaranteed to be different
in different instances of an advertisement) are of no consequence
<span class="grey">Kane Informational [Page 62]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-63" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
when deciding whether or not to recalculate the set of best paths.
2. If there are no differences in the contents of the two
advertisement instances, there is no need to recalculate the set
of best paths.
3. Otherwise, the set of best paths must be recalculated.
Note also that the older instance of the advertisement must be
removed from the link state database when the new advertisement is
installed. The older instance must also be removed from the link
state retransmission lists of all neighbors.
<span class="h4"><a class="selflink" id="section-8.2.5" href="#section-8.2.5">8.2.5</a> Retransmitting Link State Advertisements</span>
When a switch sends a link state advertisement to an adjacent
neighbor, it records the advertisement in the neighbor's link state
retransmission list. To ensure the reliability of the distribution
process, the switch continues to periodically retransmit the
advertisements specified in the list until they are acknowledged.
The interval timer used to trigger retransmission of the
advertisements is set to RxmtInterval seconds, as found in the
interface data structure. Note that if this value is too low,
needless retransmissions will ensue. If the value is too high, the
speed with which the databases synchronize across adjacencies may be
affected if there are lost packets.
When the interval timer expires, entries in the retransmission list
are formatted into one or more Link State Update packets. (Remember
that multiple advertisements can fit into a single Link State Update
packet.) The age field of each advertisement is incremented by
InfTransDelay, as found in the interface data structure, before the
advertisement is copied into the outgoing packet.
Link State Update packets containing retransmitted advertisements are
always sent directly to the adjacent switch. That is, the destination
field of the network layer addressing information is set to the
switch ID of the neighboring switch.
If the adjacent switch goes down, retransmissions will continue until
the switch failure is detected and the adjacency is torn down by the
VLSP discovery process. When the adjacency is torn down, the link
state retransmission list is cleared.
<span class="grey">Kane Informational [Page 63]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-64" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h4"><a class="selflink" id="section-8.2.6" href="#section-8.2.6">8.2.6</a> Acknowledging Link State Advertisements</span>
Each link state advertisement received by a switch must be
acknowledged. In most cases, this is done by sending a Link State
Acknowledgment packet. However, acknowledgments can also be done
implicitly by sending Link State Update packets (see step 4a of
<a href="#section-8.2.2">Section 8.2.2</a>).
Multiple acknowledgments can be grouped together into a single Link
State Acknowledgment packet.
Sending an acknowledgment
Link State Acknowledgment packets are sent back out the interface
over which the advertisement was received. The packet can be sent
immediately to the sending neighbor, or it can be delayed and sent
when an interval timer expires.
o Sending delayed acknowledgments facilitates the formatting of
multiple acknowledgments into a single packet. This enables a
single packet to send acknowledgments to several neighbors at
once by using a multicast switch ID in the destination field of
the network layer addressing information (see below). Delaying
acknowledgments also randomizes the acknowledgment packets sent
by the multiple switches attached to a multi-access network
link.
Note that the interval used to time delayed acknowledgments
must be short (less than RxmtInterval) or needless
retransmissions will ensue.
Delayed acknowledgments are sent to all adjacent switches
associated with the interface. If the interface state is
Point-to-Point, DS, or Backup, the destination field of the
network layer addressing information is set to the multicast
switch ID AllSPFSwitches. If the interface state is DS Other,
the destination field is set to the multicast switch ID
AllDSwitches.
o Immediate acknowledgments are sent directly to a specific
neighbor in response to the receipt of duplicate link state
advertisements. These acknowledgments are sent immediately
when the duplicate is received.
The method used to send a Link State Acknowledgment packet --
either delayed or immediate -- depends on the circumstances
surrounding the receipt of the advertisement, as shown in Table 6.
Note that switches with an interface state of Backup send
<span class="grey">Kane Informational [Page 64]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-65" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
acknowledgments differently than other switches because they play
a slightly different role in the distribution process (see <a href="#section-8.2.3">Section</a>
<a href="#section-8.2.3">8.2.3</a>).
Action taken in state
Circumstances Backup Other states
Advertisement was No ack sent No ack sent
forwarded back out
receiving interface
Advertisement is Delayed ack sent Delayed ack
more recent than if advertisement sent
database copy, but received from DS,
was not forwarded else do nothing
back out receiving
interface
Advertisement was a Delayed ack sent No ack sent
duplicate treated if advertisement
as an implied acknow- received from DS,
ledgment (step 4a of else do nothing
<a href="#section-8.2.2">Section 8.2.2</a>)
Advertisement was a Immediate ack Immediate ack
duplicate not treated sent sent
as an implied acknow-
ledgment
Advertisement age Immediate ack Immediate ack
equal to MaxAge and sent sent
no current instance
found in database
Table 6: Sending Link State Acknowledgments
Receiving an acknowledgment
When the a Link State Acknowledgment packet is received, it is
first subjected to a number of consistency checks. In particular,
the packet is associated with a specific neighbor. If the state of
that neighbor is less than Exchange, the entire Link State
Acknowledgment packet is discarded.
Each acknowledgment contained in the packet is processed as
follows:
<span class="grey">Kane Informational [Page 65]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-66" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o If the advertisement being acknowledged has an instance in the
link state retransmission list for the sending neighbor, do the
following:
o If the acknowledgment is for the same instance as that
specified in the list (as determined by the procedure
described in <a href="#section-7.1.1">Section 7.1.1</a>), remove the instance from the
retransmission list.
o Otherwise, log the acknowledgment as questionable.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a> Aging the Link State Database</span>
Each link state advertisement has an age field, containing the
advertisement's age, expressed in seconds. When the advertisement is
copied into a Link State Update packet for forwarding out a
particular interface, the age is incremented by InfTransDelay seconds
to account for the transmission time over the link. An
advertisement's age is never incremented past the value MaxAge.
Advertisements with an age of MaxAge are not used to calculate best
paths.
If a link state advertisement's age reaches MaxAge, the switch
flushes the advertisement from the switch fabric by doing the
following:
o Originate a new instance of the advertisement with the age field
set to MaxAge. The distribution process will eventually result in
the advertisement being removed from the retransmission lists of
all switches in the fabric.
o Once the advertisement is no longer contained in the link state
retransmission list of any neighbor and no neighbor is in a state
of Exchange or Loading, remove the advertisement from the local
link state database.
<span class="h4"><a class="selflink" id="section-8.3.1" href="#section-8.3.1">8.3.1</a> Premature Aging of Advertisements</span>
A link state advertisement can be prematurely flushed from the switch
fabric by forcing its age to MaxAge and redistributing the
advertisement.
A switch that was previously the designated switch for a multi-access
network link but has lost that status due to a failover to the backup
designated switch prematurely ages the network link advertisements it
originated for the link.
<span class="grey">Kane Informational [Page 66]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-67" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Premature aging also occurs when an advertisement's sequence number
must wrap -- that is, when the current advertisement instance has a
sequence number of 0x7fffffff. In this circumstance, the
advertisement is prematurely aged so that the next instance of the
advertisement can be originated with a sequence number of 0x80000001
and be recognized as the most recent instance.
A switch may only prematurely age those link state advertisements for
which it is the advertising switch.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Calculating the Best Paths</span>
Once an adjacency has been formed and the two switches have
synchronized their databases, each switch in the adjacency calculates
the best path(s) to all other switches in the fabric, using itself as
the root of each path. In this context, "best" path means that path
with the lowest total cost metric across all hops. If there are
multiple paths with the same (lowest) total cost metric, they are all
calculated. Best paths are stored in the area data structure.
Paths are calculated using the well-known Dijkstra algorithm. For a
detailed description of this algorithm, the reader is referred to
[<a href="#ref-Perlman" title="R.">Perlman</a>], or any of a number of standard textbooks dealing with
network routing.
Note that whenever there is a change in an adjacency relationship, or
any change that alters the topology of the switch fabric, the set of
best paths must be recalculated.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Protocol Packets</span>
This section describes VLS protocol packets and link state
advertisements.
<span class="grey">Kane Informational [Page 67]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-68" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
There are five distinct VLSP packet types, as listed in Table 7.
Type Packet Name Function Description
1 Hello Select DS/Backup DS <a href="#section-10.6.1">Section 10.6.1</a>
2 Database Summarize database
Description contents <a href="#section-10.6.2">Section 10.6.2</a>
3 LS Request Database download <a href="#section-10.6.3">Section 10.6.3</a>
4 LS Update Database update <a href="#section-10.6.4">Section 10.6.4</a>
5 LS Ack Flooding acknow-
ledgment <a href="#section-10.6.5">Section 10.6.5</a>
Table 7: VLSP Packet Types
All VLSP packets are encapsulated within a standard ISMP packet, with
the VLS packet carried in the ISMP message body. The ISMP packet is
described in <a href="#section-10.1">Section 10.1</a>.
Since it is important that the link state databases remain
synchronized throughout the switch fabric, processing of both
incoming and outgoing routing protocol packets should take priority
over ordinary data packets. <a href="#section-10.2">Section 10.2</a> describes packet
processing.
All VLSP packets begin with network layer addressing information,
described in <a href="#section-10.3">Section 10.3</a>, followed by a standard header, described
in <a href="#section-10.4">Section 10.4</a>.
With the exception of Hello packets, all VLSP packets deal with lists
of link state advertisements. The format of a link state
advertisement is described in <a href="#section-11">Section 11</a>.
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a> ISMP Packet Format</span>
All VLSP packets are encapsulated within a standard ISMP packet. ISMP
packets are of variable length and have the following general
structure:
o Frame header
o ISMP packet header
o ISMP message body
<span class="grey">Kane Informational [Page 68]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-69" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h4"><a class="selflink" id="section-10.1.1" href="#section-10.1.1">10.1.1</a> Frame Header</span>
ISMP packets are encapsulated within an IEEE 802-compliant frame
using a standard header as shown below:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
+ Destination address +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
04 | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Source address +
08 | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
12 | Type | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
16 | |
+ +
: :
Destination address
This 6-octet field contains the Media Access Control (MAC) address
of the multicast channel over which all switches in the fabric
receive ISMP packets. The destination address of all ISMP packets
contain a value of 01-00-1D-00-00-00.
Source address
This 6-octet field contains the physical (MAC) address of the
switch originating the ISMP packet.
Type
This 2-octet field identifies the type of data carried within the
frame. The type field of ISMP packets contains the value 0x81FD.
<span class="grey">Kane Informational [Page 69]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-70" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h4"><a class="selflink" id="section-10.1.2" href="#section-10.1.2">10.1.2</a> ISMP Packet Header</span>
The ISMP packet header consists of 6 octets, as shown below:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 |///////////////////////////////////////////////////////////////|
://////// Frame header /////////////////////////////////////////:
+//////// (14 octets) /////////+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
12 |///////////////////////////////| Version |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
16 | ISMP message type | Sequence number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
20 | |
+ +
: :
Frame header
This 14-octet field contains the frame header.
Version
This 2-octet field contains the version number of the InterSwitch
Message Protocol to which this ISMP packet adheres. This document
describes ISMP Version 2.0. ISMP message type
This 2-octet field contains a value indicating which type of ISMP
message is contained within the message body. Valid values are as
follows:
1 (reserved)
2 Interswitch Keepalive messages
3 Interswitch Link State messages
4 Interswitch Spanning Tree BPDU messages and
Interswitch Remote Blocking messages
5 Interswitch Resolve and New User messages
6 (reserved)
7 Tag-Based Flood messages
8 Interswitch Tap messages
All VLS protocol messages have an ISMP message type of 3.
<span class="grey">Kane Informational [Page 70]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-71" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Sequence number
This 2-octet field contains an internally generated sequence
number used by the various protocol handlers for internal
synchronization of messages.
<span class="h4"><a class="selflink" id="section-10.1.3" href="#section-10.1.3">10.1.3</a> ISMP Message Body</span>
The ISMP message body is a variable-length field containing the
actual data of the ISMP message. The length and content of this
field are determined by the value found in the message type field.
VLSP packets are contained in the ISMP message body.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a> VLSP Packet Processing</span>
Note that with the exception of Hello packets, VLSP packets are sent
only between adjacent neighbors. Therefore, all packets travel a
single hop.
VLSP does not support fragmentation and reassembly of packets.
Therefore, packets containing lists of link state advertisements or
advertisement headers must be formatted such that they contain only
as many advertisements or headers as will fit within the size
constraints of a standard ethernet frame.
When a protocol packet is received by a switch, it must first pass
the following criteria before being accepted for further processing:
o The checksum number must be correct.
o The destination switch ID (as found in the network layer address
information) must be the switch ID of the receiving switch, or one
of the multicast switch IDs AllSPFSwitches or AllDSwitches.
If the destination switch ID is the multicast switch ID
AllDSwitches, the state of the receiving interface must be Point-
to-Point, DS, or Backup.
o The source switch ID (as found in the network layer address
information) must not be that of the receiving switch. (That is,
locally originated packets should be discarded.)
At this point, if the packet is a Hello packet, it is accepted for
further processing.
<span class="grey">Kane Informational [Page 71]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-72" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Since all other packet types are only sent between adjacent
neighbors, the packet must have been sent by one of the switch's
active neighbors. If the source switch ID matches the switch ID of
one of the receiving switch's active neighbors (as stored in the
interface data structure associated with the inport interface), the
packet is accepted for further processing. Otherwise, the packet is
discarded.
<span class="h3"><a class="selflink" id="section-10.3" href="#section-10.3">10.3</a> Network Layer Address Information</span>
As mentioned in <a href="#section-2.2.1">Section 2.2.1</a>, portions of the VLS protocol (as
derived from OSPF) are dependent on certain network layer addresses
-- in particular, the AllSPFSwitches and AllDSwitches multicast
addresses that drive the distribution of link state advertisements
throughout the switch fabric. In order to facilitate the
implementation of the protocol at the physical MAC layer, network
layer address information is encapsulated in the VSLP packets. This
information immediately follows the ISMP frame and packet header and
immediately precedes the VLSP packet header, as shown below:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
: frame header / ISMP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Unused (20 octets) :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
20 | |
+ Source switch ID +
24 | |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
28 | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
32 | |
+ Destination switch ID +
36 | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
40 | |
: VLSP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
<span class="grey">Kane Informational [Page 72]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-73" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Source switch ID
This 10-octet field contains the switch ID of the sending switch.
Destination switch ID
This 10-octet field contains the switch ID of the packet
destination. The value here is set as follows:
o Hello packets are addressed to the multicast switch ID
AllSPFSwitches.
o The designated switch and the backup designated switch address
initial Link State Update packets and Link State Acknowledgment
packets to the multicast switch ID AllSPFSwitches.
o All other switches address initial Link State Update packets
and Link State Acknowledgment packets to the multicast switch
ID AllDSwitches.
o Retransmissions of Link State Update packets are always
addressed directly to the nonresponding switch.
o Database Description packets and Link State Request are always
addressed directly to the other switch participating in the
database exchange process.
VLSP header
This 30-octet field contains the VLSP standard header. See
<a href="#section-10.4">Section 10.4</a>.
<span class="h3"><a class="selflink" id="section-10.4" href="#section-10.4">10.4</a> VLSP Packet Header</span>
Every VLSP packet starts with a common 30-octet header. This header,
along with the data found in the network layer address information,
contains all the data necessary to determine whether the packet
should be accepted for further processing. (See <a href="#section-10.1">Section 10.1</a>.)
The format of the VLSP header is shown below. Note that the header
starts at offset 36 of the ISMP message body, following the network
layer address information.
<span class="grey">Kane Informational [Page 73]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-74" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
: frame header / ISMP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Network layer address information :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
40 | (unused) | Type | Packet length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
44 | |
+ Source switch ID +
48 | |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
52 | | Area ID . . . |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
56 | Area ID . . . | Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 | Autype | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Authentication +
64 | |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
68 | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type
This 1-octet field contains the packet type. Possible values are
as follows:
1 Hello
2 Database Description
3 Link State Request
4 Link State Update
5 Link State Acknowledgment
Packet length
This 2-octet field contains the length of the protocol packet, in
bytes, calculated from the start of the VLSP header, at offset 20
of the ISMP message body. If the packet length is not an integral
number of 16-bit words, the packet is padded with an octet of zero
(see the description of the checksum field, below).
<span class="grey">Kane Informational [Page 74]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-75" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Switch ID
This 10-octet field contains the switch ID of the sending switch.
Area ID
This 4-octet field contains the area identifier. Since VLSP does
not support multiple areas, the value here is always zero.
Checksum
This 2-octet field contains the packet checksum value. The
checksum is calculated as the 16-bit one's complement of the one's
complement sum of all the 16-bit words in the packet, beginning
with the VLSP header, excluding the authentication field. If the
packet length is not an integral number of 16-bit words, the
packet is padded with an octet of zero before calculating the
checksum.
AuType
This 2-octet field identifies the authentication scheme to be used
for the packet. Since authentication is not supported by this
version of VLSP, this field contains zero.
Authentication
This 8-octet field is reserved for use by the authentication
scheme. Since authentication is not supported by this version of
VLSP, this field contains zeroes.
<span class="h3"><a class="selflink" id="section-10.5" href="#section-10.5">10.5</a> Options Field</span>
Hello packets and Database Description packets, as well as link state
advertisements, contain a 1-octet options field. Using this field, a
switch can communicate its optional capabilities to other VLSP
switches. The receiving switch can then choose whether or not to
support those optional capabilities. Thus, switches of differing
capabilities potentially can be mixed within a single VLSP routing
domain.
Two optional capabilities are currently defined in the options field:
routing based on Type of Service (TOS) and support for external
routing beyond the local switch fabric. These two capabilities are
specified in the options field as shown below.
<span class="grey">Kane Informational [Page 75]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-76" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
+-+-+-+-+-+-+-+-+
|0|0|0|0|0|0|E|T|
+-+-+-+-+-+-+-+-+
The options field
T-bit
The T-bit specifies the switch's Type of Service (TOS) capability.
If the T-bit is set, the switch supports routing based on nonzero
types of service.
E-bit
The E-bit specifies the switch's external routing capability. If
the E-bit is set, the switch supports external routing.
Note: The current version of VLSP supports neither of these
capabilities. Therefore, both the T-bit and the E-bit are clear and
the options field contains a value of zero.
<span class="h3"><a class="selflink" id="section-10.6" href="#section-10.6">10.6</a> Packet Formats</span>
This section contains detailed descriptions of the five VLS protocol
packets.
<span class="h4"><a class="selflink" id="section-10.6.1" href="#section-10.6.1">10.6.1</a> Hello Packets</span>
Hello packets are sent periodically over multi-access switch
interfaces in order to discover and maintain neighbor relationships.
Note: Hello packets are not sent over point-to-point network links.
For point-to-point links, the VLS protocol relies on the VlanHello
protocol [<a href="#ref-IDhello" title=""Cabletron's VlanHello Protocol Specification"">IDhello</a>] to notify it of neighboring switches.
Since all switches connected to a common network link must agree on
certain interface parameters, these parameters are included in each
Hello packet. A switch receiving a Hello packet that contains
parameters inconsistent with its own view of the interface will not
establish a neighbor relationship with the sending switch.
The format of a Hello packet is shown below.
<span class="grey">Kane Informational [Page 76]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-77" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Network layer addressing / VLSP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
70 | (unused -- must be 0) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
74 | HelloInt | Options | Priority |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
78 | DeadInt |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
82 | |
+ Designated switch ID +
86 | |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
90 | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
94 | |
+ Backup designated switch ID +
98 | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
102 | |
+ +
: Neighbor list :
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Network layer addressing / VLSP header
This 70-octet field contains the network layer addressing
information and the standard VLS protocol packet header. The
packet header type field contains a value of 1.
HelloInt
This 2-octet field contains the interval, in seconds, at which
this switch sends Hello packets.
Options
This 1-octet field contains the optional capabilities supported by
the switch, as described in <a href="#section-10.5">Section 10.5</a>.
<span class="grey">Kane Informational [Page 77]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-78" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Priority
This 1-octet field contains the switch priority used in selecting
the designated switch and backup designated switch (see <a href="#section-6.3.1">Section</a>
<a href="#section-6.3.1">6.3.1</a>). If the value here is zero, the switch is ineligible to
become the designated switch or the backup designated switch.
DeadInt
This 4-octet field contains the length of time, in seconds, that
neighboring switches will wait before declaring the interface down
once they stop receiving Hello packets over the interface. The
value here is equal to the value of SwitchDeadInterval, as found
in the interface data structure.
Designated switch
This 10-octet field contains the switch ID of the designated
switch for this network link, as currently understood by the
sending switch. This value is set to zero if the designated
switch selection process has not yet begun.
Backup designated switch
This 10-octet field contains the switch ID of the backup
designated switch for the network link, as currently understood by
the sending switch. This value is set to zero if the backup
designated switch selection process has not yet begun.
Neighbor list
This variable-length field contains a list of switch IDs of each
switch from which the sending switch has received a valid Hello
packet within the last SwitchDeadInterval seconds.
<span class="h4"><a class="selflink" id="section-10.6.2" href="#section-10.6.2">10.6.2</a> Database Description Packets</span>
Database Description packets are exchanged while an adjacency is
being formed between two neighboring switches and are used to
describe the contents of the topological database. For a complete
description of the database exchange process, see <a href="#section-7.2">Section 7.2</a>.
The format of a Database Description packet is shown below.
<span class="grey">Kane Informational [Page 78]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-79" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Network layer addressing / VLSP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
70 | (unused -- must be 0) | Options | Flags |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
74 | Sequence number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
78 | |
+ +
: Link state advertisement headers :
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Network layer addressing / VLSP header
This 70-octet field contains the network layer addressing
information and the standard VLS protocol packet header. The
packet header type field contains a value of 2.
Options
This 1-octet field contains the optional capabilities supported by
the switch, as described in <a href="#section-10.5">Section 10.5</a>.
Flags
This 1-octet field contains a set of bit flags that are used to
coordinate the database exchange process. The format of this
octet is as follows:
+-+-+-+-+-+-+-+-+
|0|0|0|0|0|I|M|MS
+-+-+-+-+-+-+-+-+
I-bit (Init)
The I-bit is used to signal the start of the exchange. It is set
while the two switches negotiate the master/slave relationship and
the starting sequence number.
<span class="grey">Kane Informational [Page 79]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-80" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
M-bit (More)
The M-bit is set to indicate that more Database Description
packets to follow.
MS-bit (Master/Slave)
The MS-bit is used to indicate which switch is the master of the
exchange. If the bit is set, the sending switch is the master
during the database exchange process. If the bit is clear, the
switch is the slave.
Sequence number
This 4-octet field is used to sequence the Database Description
packets during the database exchange process. The two switches
involved in the exchange process agree on the initial value of the
sequence number during the master/slave negotiation. The number
is then incremented for each Database Description packet in the
exchange.
To acknowledge each Database Description packet sent by the
master, the slave sends a Database Description packet that echoes
the sequence number of the packet being acknowledged.
Link state advertisement headers
This variable-length field contains a list of link state headers
that describe a portion of the master's topological database.
Each header uniquely identifies a link state advertisement and its
current instance. (See <a href="#section-11.1">Section 11.1</a> for a detailed description of
a link state advertisement header.) The number of headers
included in the list is calculated implicitly from the length of
the packet, as stored in the VLSP packet header (see <a href="#section-10.4">Section</a>
<a href="#section-10.4">10.4</a>).
<span class="h4"><a class="selflink" id="section-10.6.3" href="#section-10.6.3">10.6.3</a> Link State Request Packets</span>
Link State Request packets are used to request those pieces of the
neighbor's database that the sending switch has discovered (during
the database exchange process) are more up-to-date than instances in
its own database. Link State Request packets are sent as the last
step in bringing up an adjacency. (See <a href="#section-7.3">Section 7.3</a>.)
The format of a Link State Request packet is shown below.
<span class="grey">Kane Informational [Page 80]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-81" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Network layer addressing / VLSP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
70 | Link state type |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
74 | |
+ Link state ID +
88 | |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
82 | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
86 | |
+ Advertising switch ID +
90 | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
94 | |
: . . . :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Network layer addressing / VLSP header
This 70-octet field contains the network layer addressing
information and the standard VLS protocol packet header. The
packet header type field contains a value of 3.
Link state type
This 4-octet field contains the link state type of the requested
link state advertisement, as stored in the advertisement header.
Link state ID
This 10-octet field contains the link state ID of the requested
link state advertisement, as stored in the advertisement header.
Advertising switch
This 10-octet field contains the switch ID of advertising switch
for the requested link state advertisement, as stored in the
advertisement header.
<span class="grey">Kane Informational [Page 81]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-82" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Note that the last three fields uniquely identify the
advertisement, but not its instance. The receiving switch will
respond with its most recent instance of the specified
advertisement.
Multiple link state advertisements can be requested in a single
Link State Request packet by repeating the link state type, ID,
and advertising switch for each requested advertisement. The
number of advertisements requested is calculated implicitly from
the length of the packet, as stored in the VLSP packet header.
<span class="h4"><a class="selflink" id="section-10.6.4" href="#section-10.6.4">10.6.4</a> Link State Update Packets</span>
Link State Update packets are used to respond to a Link State Request
packet or to advertise a new instance of one or more link state
advertisements. Link State Update packets are acknowledged with Link
State Acknowledgment packets. For more information on the use of
Link State Update packets, see <a href="#section-7">Section 7</a> and <a href="#section-8">Section 8</a>.
The format of a Link State Update packet is shown below.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Network layer addressing / VLSP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
70 | # advertisements |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
74 | |
+ +
: Link state advertisements :
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Network layer addressing / VLSP header
This 70-octet field contains the network layer addressing
information and the standard VLS protocol packet header. The
packet header type field contains a value of 4.
# advertisements
This 4-octet field contains the number of link state
advertisements included in the packet.
<span class="grey">Kane Informational [Page 82]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-83" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Link state advertisements
This variable-length field contains a list of link state
advertisements. For a detailed description of the different types
of link state advertisements, see <a href="#section-11">Section 11</a>.
<span class="h4"><a class="selflink" id="section-10.6.5" href="#section-10.6.5">10.6.5</a> Link State Acknowledgment Packets</span>
Link State Acknowledgment Packets are used to explicitly acknowledge
one or more Link State Update packets, thereby making the
distribution of link state advertisements reliable. (See <a href="#section-8.2.6">Section</a>
<a href="#section-8.2.6">8.2.6</a>.)
The format of a Link State Acknowledgment packet is shown below.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Network layer addressing / VLSP header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
70 | |
+ +
: Link state advertisement headers :
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Network layer addressing / VLSP header
This 70-octet field contains the network layer addressing
information and the standard VLS protocol packet header. The
packet header type field contains a value of 5.
Link state advertisement headers
This variable-length field contains a list of link state headers
that are being acknowledged by this packet. Each header uniquely
identifies a link state advertisement and its current instance.
(See <a href="#section-11.1">Section 11.1</a> for a detailed description of a link state
advertisement header.) The number of headers included in the list
is calculated implicitly from the length of the packet, as stored
in the VLSP packet header (see <a href="#section-10.4">Section 10.4</a>).
<span class="grey">Kane Informational [Page 83]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-84" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Link State Advertisement Formats</span>
Link state advertisements are used to describe various pieces of the
routing topology within the switch fabric. Each switch in the fabric
maintains a complete set of all link state advertisements generated
throughout the fabric. (<a href="#section-8.1">Section 8.1</a> describes the circumstances
under which a link state advertisement is originated. <a href="#section-8.2">Section 8.2</a>
describes how advertisements are distributed throughout the switch
fabric.) This collection of advertisements, known as the link state
(or topological) database, is used to calculate a set of best paths
to all other switches in the fabric.
There are two types of link state advertisement, as listed in Table
8.
Type Name Function Description
1 Switch link Lists all network <a href="#section-11.2">Section 11.2</a>
advertisement linksattached to
a switch
2 Network link Lists all adjacen- <a href="#section-11.3">Section 11.3</a>
advertisement cies on a network
link
Table 8: Link State Advertisement Types
Each link state advertisement begins with a standard header,
described in <a href="#section-11.1">Section 11.1</a>.
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a> Link State Advertisement Headers</span>
All link state advertisements begin with a common 32-octet header.
This header contains information that uniquely identifies the
advertisement -- its type, link state ID, and the switch ID of its
advertising switch. Also, since multiple instances of a link state
advertisement can exist concurrently in the switch fabric, the header
contains information that permits a switch to determine which
instance is the most recent -- the age, sequence number and checksum.
The format of the link state advertisement header is shown below.
<span class="grey">Kane Informational [Page 84]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-85" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | Age | Options | LS Type |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
04 | |
+ Link state ID +
08 | |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
12 | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
16 | |
+ Advertising switch ID +
20 | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
24 | Sequence number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
28 | Checksum | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Age
This 2-octet field contains the time, in seconds, since this
instance of the link state advertisement was originated.
Options
This 1-octet field contains the optional capabilities supported by
the advertising switch, as described in <a href="#section-10.5">Section 10.5</a>.
LS type
This 1-octet field contains the type of the link state
advertisement. Possible values are:
1 Switch link advertisement
2 Network link advertisement
Link state ID
This 10-octet field identifies the switch that originates
advertisements for the link. The content of this field depends on
the advertisement's type.
o For a switch link advertisement, this field contains the switch
ID of the originating switch
<span class="grey">Kane Informational [Page 85]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-86" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
o For a network link advertisement, this field contains the
switch ID of the designated switch for the link
Note: In VLSP, the link state ID of an advertisement is always the
same as the advertising switch. This level of redundancy results
from the fact that OSPF uses additional types of link state
advertisements for which the originating switch is not the
advertising switch.
Advertising switch
This 10-octet field contains the switch ID of the switch that
originated the link state advertisement.
Sequence number
This 4-octet field is used to sequence the instances of a
particular link state advertisement. The number is incremented
for each new instance.
Checksum
This 2-octet field contains the checksum of the complete contents
of the link state advertisement, excluding the age field. The
checksum used is commonly referred to as the Fletcher checksum and
is documented in [<a href="./rfc905" title=""ISO Transport Protocol specification ISO DP 8073"">RFC905</a>]. Note that since this checksum is
calculated for each separate advertisement, a protocol packet
containing lists of advertisements or advertisement headers will
contain multiple checksum values.
Length
This 2-octet field contains the total length, in octets, of the
link state advertisement, including the header.
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a> Switch Link Advertisements</span>
A switch link advertisement is used to describe all functioning
network links of a switch, including the cost of using each link.
Each functioning switch in the fabric originates one, and only one,
switch link advertisement -- all of the switch's links must be
described in a single advertisement. A switch originates its first
switch link advertisement (containing no links) when it first becomes
functional. It then originates a new instance of the advertisement
each time any of its neighbor states changes such that the contents
of the advertisement changes. See <a href="#section-8.1">Section 8.1</a> for details on
originating a switch link advertisement.
<span class="grey">Kane Informational [Page 86]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-87" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
The format of a switch link advertisement is shown below.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Link state header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
32 | (unused -- must be 0) | # links |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
36 | |
+ Link ID +
40 | |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
44 | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
48 | |
+ Link data +
52 | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
56 | Link type | # TOS | TOS 0 metric |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 | |
: . . . :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Link state header
This 32-octet field contains the standard link state advertisement
header. The type field contains a 1, and the link state ID field
contains the switch ID of the advertising switch.
# links
This 2-octet field contains the number of links described by this
advertisement. This value must be equal to the total number of
functioning network links attached to the switch.
<span class="grey">Kane Informational [Page 87]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-88" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
Link ID
This 10-octet field identifies the other switch that originates
link state advertisements for the link, providing a key for
accessing other link state advertisements for the link. The value
here is based on the link type, as follows:
o For point-to-point links, this field contains the switch ID of
the neighbor switch connected to the other end of the link.
o For multi-access links, this field contains the switch ID of
the designated switch for the link.
Link data
This 10-octet field contains additional data necessary to
calculate the set of best paths. Typically, this field contains
the interface ID of the link.
Link type
This 1-octet field contains the type of link being described.
Possible values are as follows:
1 Point-to-point link
2 Multi-access link
# TOS
This 1-octet field contains the number of nonzero type of service
metrics specified for the link. Since the current version of VLSP
does not support routing based on nonzero types of service, this
field contains a value of zero.
TOS 0 metric
This 2-octet field contains the cost of using this link for the
zero TOS. This value is expressed in the link state metric and
must be greater than zero.
Note that the last five fields are repeated for all functioning
network links attached to the advertising switch. If the interface
state of attached link changes, the switch must originate a new
instance of the switch link advertisement.
<span class="grey">Kane Informational [Page 88]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-89" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-11.3" href="#section-11.3">11.3</a> Network Link Advertisements</span>
A network link advertisement is originated by the designated switch
of each multi-access network link. The advertisement describes all
switches attached to the link that are currently fully adjacent to
the designated switch, including the designated switch itself. See
<a href="#section-8.1">Section 8.1</a> for details on originating a switch link advertisement.
Network link advertisements are not generated for point-to-point
network links.
The format of a network link advertisement is show below.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
00 | |
: Link state header :
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
32 | (unused) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
36 | |
+ +
: Switch list :
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Link state header
This 32-octet field contains the standard link state advertisement
header. The type field contains a 2, and the link state ID field
contains the switch ID of the designated switch.
Switch list
The switch IDs of all switches attached to the network link that
are currently fully adjacent to the designated switch. The
designated switch includes itself in this list.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Protocol Parameters</span>
This section contains a compendium of the parameters used in the VLS
protocol.
<span class="grey">Kane Informational [Page 89]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-90" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h3"><a class="selflink" id="section-12.1" href="#section-12.1">12.1</a> Architectural Constants</span>
Several VLS protocol parameters have fixed architectural values. The
name of each architectural constant follows, together with its value
and a short description of its function.
AllSPFSwitches
The multicast switch ID to which Hello packets and certain other
protocol packets are addressed, as specified in the destination
switch ID field of the network layer address information (see
<a href="#section-10.3">Section 10.3</a>). The value of AllSPFSwitches is E0-00-00-05-00-00-
00-00.
AllDSwitches
The multicast switch ID to which Link State Update packets and
Link State Acknowledgment packets are addressed, as specified in
the destination switch ID field of the network layer address
information (see <a href="#section-10.3">Section 10.3</a>), when they are destined for the
designated switch or the backup designated switch of a network
link. The value of AllDSwitches is E0-00-00-06-00-00-00-00.
LSRefreshTime
The interval at which the set of best paths recalculated if no
other state changes have forced a recalculation. The value of
LSRefreshTime is set to 1800 seconds (30 minutes).
MinLSInterval
The minimum time between distinct originations of any particular
link state advertisement. The value of MinLSInterval is set to 5
seconds.
MaxAge
The maximum age that a link state advertisement can attain. When
an advertisement's age reaches MaxAge, it is redistributed
throughout the switch fabric. When the originating switch
receives an acknowledgment for the advertisement, indicating that
the advertisement has been removed from all neighbor Link state
retransmission lists, the advertisement is removed from the
originating switch's database. Advertisements having age MaxAge
are not used to calculate the set of best paths. The value of
MaxAge must be greater than LSRefreshTime. The value of MaxAge is
set to 3600 seconds (1 hour).
<span class="grey">Kane Informational [Page 90]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-91" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
MaxAgeDiff
The maximum time disparity in ages that can occur for a single
link state instance as it is distributed throughout the switch
fabric. Most of this time is accounted for by the time the
advertisement sits on switch output queues (and therefore not
aging) during the distribution process. The value of MaxAgeDiff is
set to 900 seconds (15 minutes).
LSInfinity
The link state metric value indicating that the destination is
unreachable. It is defined to be a binary value of all ones.
<span class="h3"><a class="selflink" id="section-12.2" href="#section-12.2">12.2</a> Configurable Parameters</span>
Many of the switch interface parameters used by VLSP may be made
configurable if the implementer so desires. These parameters are
listed below. Sample default values are given for some of the
parameters.
Note that some of these parameters specify properties of the
individual interfaces and their attached network links. These
parameters must be consistent across all the switches attached to
that link.
Interface output cost(s)
The cost of sending a packet over the interface, expressed in the
link state metric. This is advertised as the link cost for this
interface in the switch's switch link advertisement. The interface
output cost must always be greater than zero.
RxmtInterval
The number of seconds between link state advertisement
retransmissions for adjacencies established on this interface.
This value is also used when retransmitting Database Description
packets and Link State Request packets. This value must be greater
than the expected round-trip delay between any two switches on the
attached link. However, the value should be conservative or
needless retransmissions will result. A typical value for a local
area network would be 5 seconds.
<span class="grey">Kane Informational [Page 91]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-92" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
InfTransDelay
The estimated number of seconds it takes to transmit a Link State
Update packet over this interface. Link state advertisements
contained in the Link State Update packet must have their age
incremented by this amount before transmission. This value must
take into account the transmission and propagation delays for the
interface and must be greater than zero. A typical value for a
local area network would be 1 second.
Switch priority
An 8-bit unsigned integer. When two switches attached to the same
network link contend for selection as the designated switch, the
switch with the highest priority takes precedence. If both
switches have the same priority, the switch with the highest base
MAC address becomes the designated switch. A switch whose switch
priority is set to zero is ineligible to become the designated
switch on the attached link.
HelloInterval
The length of time, in seconds, between the Hello packets that the
switch sends over the interface. This value is advertised in the
switch's Hello packets. It must be the same for all switches
attached to a common network link. The smaller this value is set,
the faster topological changes will be detected. However, a
smaller interval will also generate more routing traffic. A
typical value for a local area network would be 10 seconds.
SwitchDeadInterval
The length of time, in seconds, that neighboring switches will
wait before declaring the interface down once they stop receiving
Hello packets over the interface. This value is advertised in the
switch's Hello packets. It must be the same for all switches
attached to a common network link and should be some multiple of
the HelloInterval parameter. A typical value would be 4 times
HelloInterval.
<span class="grey">Kane Informational [Page 92]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-93" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. End Notes</span>
[<a id="ref-1">1</a>] During calculation of the set of best paths, a network link
advertisement must be located based solely on its link state ID.
Note, however, that the lookup in this case is still well defined,
since no two network advertisements can have the same link state ID.
[<a id="ref-2">2</a>] It is instructive to see what happens when the designated switch
for a network link fails. Call the designated switch for the link S1
and the backup designated switch S2. If switch S1 fails (or its
interface to the link goes down), the other switches on the link will
detect S1's absence within SwitchDeadInterval seconds. All switches
may not detect this condition at precisely the same time. The
switches that detect S1's absence before S2 does will temporarily
select S2 as both designated switch and backup designated switch.
When S2 detects that S1 is down, it will move itself to designated
switch. At this time, the remaining switch with the highest switch
priority will be selected as the backup designated switch.
[<a id="ref-3">3</a>] Note that it is possible for a switch to resynchronize any of its
fully established adjacencies by setting the neighbor state back to
ExStart. This causes the switch on the other end of the adjacency to
process a SeqNumberMismatch event and also revert to the ExStart
state.
[<a id="ref-4">4</a>] When two advertisements have different checksum values, they are
assumed to be separate instances. This can occur when a switch
restarts and loses track of its previous sequence number. In this
case, since the two advertisements have the same sequence number, it
is not possible to determine which advertisement is actually newer.
If the wrong advertisement is accepted as newer, the originating
switch will originate another instance.
[<a id="ref-5">5</a>] An instance of an advertisement is originated with an age of
MaxAge only when it is to be flushed from the database. This is done
either when the advertisement has naturally aged to MaxAge, or (more
typically) when the sequence number must wrap. Therefore, a received
instance with an age of MaxAge must be processed as the most recent
in order to flush it properly from the database.
[<a id="ref-6">6</a>] MaxAgeDiff is an architectural constant that defines the maximum
disparity in ages, in seconds, that can occur for a single link state
instance as it is distributed throughout the switch fabric. If two
advertisements differ by more than this amount, they are assumed to
be different instances of the same advertisement. This can occur when
a switch restarts and loses track of its previous sequence number.
<span class="grey">Kane Informational [Page 93]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-94" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
[<a id="ref-7">7</a>] This is how the link state request list is emptied, causing the
neighbor state to change to Full.
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. Security Considerations</span>
Security concerns are not addressed in this document.
<span class="h2"><a class="selflink" id="section-15" href="#section-15">15</a>. References</span>
[<a id="ref-Perlman">Perlman</a>] Perlman, R., Interconnections: Bridges and Routers.
Addison-Wesley Publishing Company. 1992.
[<a id="ref-RFC905">RFC905</a>] McKenzie, A., "ISO Transport Protocol specification ISO
DP 8073", <a href="./rfc905">RFC 905</a>, April 1984.
[<a id="ref-RFC2328">RFC2328</a>] Moy, J., "OSPF Version 2", STD 54, <a href="./rfc2328">RFC 2328</a>, April 1998.
[<a id="ref-RFC1700">RFC1700</a>] Reynolds, J. and J. Postel, "Assigned Numbers", STD 2,
<a href="./rfc1700">RFC 1700</a>, October 1994.
[<a id="ref-IDsfvlan">IDsfvlan</a>] Ruffen, D., Len, T. and J. Yanacek, "Cabletron's
SecureFast VLAN Operational Model", <a href="./rfc2643">RFC 2643</a>, August
1999.
[<a id="ref-IDhello">IDhello</a>] Hamilton, D. and D. Ruffen, "Cabletron's VlanHello
Protocol Specification", <a href="./rfc2641">RFC 2641</a>, August 1999.
<span class="h2"><a class="selflink" id="section-16" href="#section-16">16</a>. Author's Address</span>
Laura Kane
Cabletron Systems, Inc.
Post Office Box 5005
Rochester, NH 03866-5005
Phone:(603) 332-9400
EMail: lkane@ctron.com
<span class="grey">Kane Informational [Page 94]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-95" ></span>
<span class="grey"><a href="./rfc2642">RFC 2642</a> Cabletron's VLS Protocol Specification August 1999</span>
<span class="h2"><a class="selflink" id="section-17" href="#section-17">17</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (1999). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Kane Informational [Page 95]
</pre>
|