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
|
Network Working Group F. Le Faucheur, Editor
Request for Comments: 3270 L. Wu
Category: Standards Track B. Davie
Cisco Systems
S. Davari
PMC-Sierra Inc.
P. Vaananen
Nokia
R. Krishnan
Axiowave Networks
P. Cheval
Alcatel
J. Heinanen
Song Networks
May 2002
Multi-Protocol Label Switching (MPLS)
Support of Differentiated Services
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2002). All Rights Reserved.
Abstract
This document defines a flexible solution for support of
Differentiated Services (Diff-Serv) over Multi-Protocol Label
Switching (MPLS) networks.
This solution allows the MPLS network administrator to select how
Diff-Serv Behavior Aggregates (BAs) are mapped onto Label Switched
Paths (LSPs) so that he/she can best match the Diff-Serv, Traffic
Engineering and protection objectives within his/her particular
network. For instance, this solution allows the network
administrator to decide whether different sets of BAs are to be
mapped onto the same LSP or mapped onto separate LSPs.
Le Faucheur, et. al. Standards Track [Page 1]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.1 Terminology. . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.2 EXP-Inferred-PSC LSPs (E-LSP) . . . . . . . . . . . . . . . . . 6
1.3 Label-Only-Inferred-PSC LSPs (L-LSP). . . . . . . . . . . . . . 7
1.4 Overall Operations. . . . . . . . . . . . . . . . . . . . . . . 7
1.5 Relationship between Label and FEC. . . . . . . . . . . . . . . 8
1.6 Bandwidth Reservation for E-LSPs and L-LSPs . . . . . . . . . . 8
2. Label Forwarding Model for Diff-Serv LSRs and Tunneling Models . 9
2.1 Label Forwarding Model for Diff-Serv LSRs . . . . . . . . . . . 9
2.2 Incoming PHB Determination. . . . . . . . . . . . . . . . . . .10
2.3 Outgoing PHB Determination With Optional Traffic Conditioning .11
2.4 Label Forwarding. . . . . . . . . . . . . . . . . . . . . . . .11
2.5 Encoding Diff-Serv Information Into Encapsulation Layer . . . .13
2.6 Diff-Serv Tunneling Models over MPLS. . . . . . . . . . . . . .13
3. Detailed Operations of E-LSPs. . . . . . . . . . . . . . . . . .22
3.1 E-LSP Definition. . . . . . . . . . . . . . . . . . . . . . . .22
3.2 Populating the `Encaps-->PHB mapping' for an incoming E-LSP . .23
3.3 Incoming PHB Determination On Incoming E-LSP. . . . . . . . . .23
3.4 Populating the `Set of PHB-->Encaps mappings' for an outgoing
E-LSP . . . . . . . . . . . . . . . . . . . . . . . . . . . . .24
3.5 Encoding Diff-Serv information into Encapsulation Layer On
Outgoing E-LSP. . . . . . . . . . . . . . . . . . . . . . . . .26
3.6 E-LSP Merging . . . . . . . . . . . . . . . . . . . . . . . . .27
4. Detailed Operation of L-LSPs. . . . . . . . . . . . . . . . . .28
4.1 L-LSP Definition. . . . . . . . . . . . . . . . . . . . . . . .28
4.2 Populating the `Encaps-->PHB mapping' for an incoming L-LSP . .28
4.3 Incoming PHB Determination On Incoming L-LSP. . . . . . . . . .30
4.4 Populating the `Set of PHB-->Encaps mappings' for an outgoing
L-LSP . . . . . . . . . . . . . . . . . . . . . . . . . . . . .31
4.5 Encoding Diff-Serv Information into Encapsulation Layer on
Outgoing L-LSP. . . . . . . . . . . . . . . . . . . . . . . . .33
4.6 L-LSP Merging . . . . . . . . . . . . . . . . . . . . . . . . .34
5. RSVP Extension for Diff-Serv Support . . . . . . . . . . . . . .34
5.1 Diff-Serv related RSVP Messages Format. . . . . . . . . . . . .34
5.2 DIFFSERV Object . . . . . . . . . . . . . . . . . . . . . . . .35
5.3 Handling DIFFSERV Object. . . . . . . . . . . . . . . . . . . .37
5.4 Non-support of the DIFFSERV Object. . . . . . . . . . . . . . .40
5.5 Error Codes For Diff-Serv . . . . . . . . . . . . . . . . . . .40
5.6 Intserv Service Type. . . . . . . . . . . . . . . . . . . . . .41
6. LDP Extensions for Diff-Serv Support . . . . . . . . . . . . . .41
6.1 Diff-Serv TLV . . . . . . . . . . . . . . . . . . . . . . . . .42
6.2 Diff-Serv Status Code Values. . . . . . . . . . . . . . . . . .44
6.3 Diff-Serv Related LDP Messages. . . . . . . . . . . . . . . . .44
6.4 Handling of the Diff-Serv TLV . . . . . . . . . . . . . . . . .46
6.5 Non-Handling of the Diff-Serv TLV . . . . . . . . . . . . . . .49
6.6 Bandwidth Information . . . . . . . . . . . . . . . . . . . . .49
Le Faucheur, et. al. Standards Track [Page 2]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
7. MPLS Support of Diff-Serv over PPP, LAN, Non-LC-ATM and
Non-LC-FR Interfaces . . . . . . . . . . . . . . . . . . . . . .49
8. MPLS Support of Diff-Serv over LC-ATM Interfaces . . . . . . . .50
8.1 Use of ATM Traffic Classes and Traffic Management mechanisms. .50
8.2 LSR Implementation With LC-ATM Interfaces . . . . . . . . . . .50
9. MPLS Support of Diff-Serv over LC-FR Interfaces. . . . . . . . .51
9.1 Use of Frame Relay Traffic parameters and Traffic Management
mechanisms. . . . . . . . . . . . . . . . . . . . . . . . . . .51
9.2 LSR Implementation With LC-FR Interfaces. . . . . . . . . . . .51
10. IANA Considerations . . . . . . . . . . . . . . . . . . . . . .52
11. Security Considerations . . . . . . . . . . . . . . . . . . . .52
12. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . .52
APPENDIX A. Example Deployment Scenarios. . . . . . . . . . . . . .53
APPENDIX B. Example Bandwidth Reservation Scenarios . . . . . . . .58
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . .60
Authors' Addresses. . . . . . . . . . . . . . . . . . . . . . . . .62
Full Copyright Statement. . . . . . . . . . . . . . . . . . . . . .64
1. Introduction
In an MPLS domain [MPLS_ARCH], when a stream of data traverses a
common path, a Label Switched Path (LSP) can be established using
MPLS signaling protocols. At the ingress Label Switch Router (LSR),
each packet is assigned a label and is transmitted downstream. At
each LSR along the LSP, the label is used to forward the packet to
the next hop.
In a Differentiated Service (Diff-Serv) domain [DIFF_ARCH] all the IP
packets crossing a link and requiring the same Diff-Serv behavior are
said to constitute a Behavior Aggregate (BA). At the ingress node of
the Diff-Serv domain, the packets are classified and marked with a
Diff-Serv Code Point (DSCP) which corresponds to their Behavior
Aggregate. At each transit node, the DSCP is used to select the Per
Hop Behavior (PHB) that determines the scheduling treatment and, in
some cases, drop probability for each packet.
This document specifies a solution for supporting the Diff-Serv
Behavior Aggregates whose corresponding PHBs are currently defined
(in [DIFF_HEADER], [DIFF_AF], [DIFF_EF]) over an MPLS network. This
solution also offers flexibility for easy support of PHBs that may be
defined in the future.
This solution relies on the combined use of two types of LSPs:
- LSPs which can transport multiple Ordered Aggregates, so that the
EXP field of the MPLS Shim Header conveys to the LSR the PHB to be
applied to the packet (covering both information about the
packet's scheduling treatment and its drop precedence).
Le Faucheur, et. al. Standards Track [Page 3]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- LSPs which only transport a single Ordered Aggregate, so that the
packet's scheduling treatment is inferred by the LSR exclusively
from the packet's label value while the packet's drop precedence
is conveyed in the EXP field of the MPLS Shim Header or in the
encapsulating link layer specific selective drop mechanism (ATM,
Frame Relay, 802.1).
As mentioned in [DIFF_HEADER], "Service providers are not required to
use the same node mechanisms or configurations to enable service
differentiation within their networks, and are free to configure the
node parameters in whatever way that is appropriate for their service
offerings and traffic engineering objectives". Thus, the solution
defined in this document gives Service Providers flexibility in
selecting how Diff-Serv classes of service are Routed or Traffic
Engineered within their domain (e.g., separate classes of services
supported via separate LSPs and Routed separately, all classes of
service supported on the same LSP and Routed together).
Because MPLS is path-oriented it can potentially provide faster and
more predictable protection and restoration capabilities in the face
of topology changes than conventional hop by hop routed IP systems.
In this document we refer to such capabilities as "MPLS protection".
Although such capabilities and associated mechanisms are outside the
scope of this specification, we note that they may offer different
levels of protection to different LSPs. Since the solution presented
here allow Service Providers to choose how Diff-Serv classes of
services are mapped onto LSPs, the solution also gives Service
Providers flexibility in the level of protection provided to
different Diff-Serv classes of service (e.g., some classes of service
can be supported by LSPs which are protected while some other classes
of service are supported by LSPs which are not protected).
Furthermore, the solution specified in this document achieves label
space conservation and reduces the volume of label set-up/tear-down
signaling where possible by only resorting to multiple LSPs for a
given Forwarding Equivalent Class (FEC) [MPLS_ARCH] when useful or
required.
This specification allows support of Differentiated Services for both
IPv4 and IPv6 traffic transported over an MPLS network. This
document only describes operations for unicast. Multicast support is
for future study.
The solution described in this document does not preclude the
signaled or configured use of the EXP bits to support Explicit
Congestion Notification [ECN] simultaneously with Diff-Serv over
MPLS. However, techniques for supporting ECN in an MPLS environment
are outside the scope of this document.
Le Faucheur, et. al. Standards Track [Page 4]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
1.1 Terminology
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119.
The reader is assumed to be familiar with the terminology of
[MPLS_ARCH], [MPLS_ENCAPS], [MPLS_ATM], [MPLS_FR], including the
following:
FEC Forwarding Equivalency Class
FTN FEC-To-NHLFE Map
ILM Incoming Label Map
LC-ATM Label Switching Controlled-ATM (interface)
LC-FR Label Switching Controlled-Frame Relay (interface)
LSP Label Switched Path
LSR Label Switch Router
MPLS Multi-Protocol Label Switching
NHLFE Next Hop Label Forwarding Entry
The reader is assumed to be familiar with the terminology of
[DIFF_ARCH], [DIFF_HEADER], [DIFF_AF], [DIFF_EF], including the
following:
AF Assured Forwarding
BA Behavior Aggregate
CS Class Selector
DF Default Forwarding
DSCP Differentiated Services Code Point
EF Expedited Forwarding
PHB Per Hop Behavior
Le Faucheur, et. al. Standards Track [Page 5]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
The reader is assumed to be familiar with the terminology of
[DIFF_NEW], including the following:
OA Ordered Aggregate. The set of Behavior Aggregates which
share an ordering constraint.
PSC PHB Scheduling Class. The set of one or more PHB(s)
that are applied to the Behavior Aggregate(s) belonging
to a given OA. For example, AF1x is a PSC comprising
the AF11, AF12 and AF13 PHBs. EF is an example of PSC
comprising a single PHB, the EF PHB.
The following acronyms are also used:
CLP Cell Loss Priority
DE Discard Eligibility
SNMP Simple Network Management Protocol
Finally, the following acronyms are defined in this specification:
E-LSP EXP-Inferred-PSC LSP
L-LSP Label-Only-Inferred-PSC LSP
1.2 EXP-Inferred-PSC LSPs (E-LSP)
A single LSP can be used to support one or more OAs. Such LSPs can
support up to eight BAs of a given FEC, regardless of how many OAs
these BAs span. With such LSPs, the EXP field of the MPLS Shim
Header is used by the LSR to determine the PHB to be applied to the
packet. This includes both the PSC and the drop preference.
We refer to such LSPs as "EXP-inferred-PSC LSPs" (E-LSP), since the
PSC of a packet transported on this LSP depends on the EXP field
value for that packet.
The mapping from the EXP field to the PHB (i.e., to PSC and drop
precedence) for a given such LSP, is either explicitly signaled at
label set-up or relies on a pre-configured mapping.
Detailed operations of E-LSPs are specified in section 3 below.
Le Faucheur, et. al. Standards Track [Page 6]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
1.3 Label-Only-Inferred-PSC LSPs (L-LSP)
A separate LSP can be established for a single <FEC, OA> pair. With
such LSPs, the PSC is explicitly signaled at the time of label
establishment, so that after label establishment, the LSR can infer
exclusively from the label value the PSC to be applied to a labeled
packet. When the Shim Header is used, the Drop Precedence to be
applied by the LSR to the labeled packet, is conveyed inside the
labeled packet MPLS Shim Header using the EXP field. When the Shim
Header is not used (e.g., MPLS Over ATM), the Drop Precedence to be
applied by the LSR to the labeled packet is conveyed inside the link
layer header encapsulation using link layer specific drop precedence
fields (e.g., ATM CLP).
We refer to such LSPs as "Label-Only-Inferred-PSC LSPs" (L-LSP) since
the PSC can be fully inferred from the label without any other
information (e.g., regardless of the EXP field value). Detailed
operations of L-LSPs are specified in section 4 below.
1.4 Overall Operations
For a given FEC, and unless media specific restrictions apply as
identified in the sections 7, 8 and 9 below, this specification
allows any one of the following combinations within an MPLS Diff-Serv
domain:
- zero or any number of E-LSPs, and
- zero or any number of L-LSPs.
The network administrator selects the actual combination of LSPs from
the set of allowed combinations and selects how the Behavior
Aggregates are actually transported over this combination of LSPs, in
order to best match his/her environment and objectives in terms of
Diff-Serv support, Traffic Engineering and MPLS Protection. Criteria
for selecting such a combination are outside the scope of this
specification.
For a given FEC, there may be more than one LSP carrying the same OA,
for example for purposes of load balancing of the OA; However in
order to respect ordering constraints, all packets of a given
microflow, possibly spanning multiple BAs of a given Ordered
Aggregate, MUST be transported over the same LSP. Conversely, each
LSP MUST be capable of supporting all the (active) BAs of a given OA.
Examples of deployment scenarios are provided for information in
APPENDIX A.
Le Faucheur, et. al. Standards Track [Page 7]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
1.5 Relationship between Label and FEC
[MPLS_ARCH] states in section `2.1. Overview' that: `Some routers
analyze a packet's network layer header not merely to choose the
packet's next hop, but also to determine a packet's "precedence" or
"class of service". They may then apply different discard thresholds
or scheduling disciplines to different packets. MPLS allows (but
does not require) the precedence or class of service to be fully or
partially inferred from the label. In this case, one may say that
the label represents the combination of a FEC and a precedence or
class of service.'
In line with this, we observe that:
- With E-LSPs, the label represents the combination of a FEC and the
set of BAs transported over the E-LSP. Where all the supported
BAs are transported over an E-LSP, the label then represents the
complete FEC.
- With L-LSPs, the label represents the combination of a FEC and an
OA.
1.6 Bandwidth Reservation for E-LSPs and L-LSPs
Regardless of which label binding protocol is used, E-LSPs and L-LSPs
may be established with or without bandwidth reservation.
Establishing an E-LSP or L-LSP with bandwidth reservation means that
bandwidth requirements for the LSP are signaled at LSP establishment
time. Such signaled bandwidth requirements may be used by LSRs at
establishment time to perform admission control of the signaled LSP
over the Diff-Serv resources provisioned (e.g., via configuration,
SNMP or policy protocols) for the relevant PSC(s). Such signaled
bandwidth requirements may also be used by LSRs at establishment time
to perform adjustment to the Diff-Serv resources associated with the
relevant PSC(s) (e.g., adjust PSC scheduling weight).
Note that establishing an E-LSP or L-LSP with bandwidth reservation
does not mean that per-LSP scheduling is required. Since E-LSPs and
L-LSPs are specified in this document for support of Differentiated
Services, the required forwarding treatment (scheduling and drop
policy) is defined by the appropriate Diff-Serv PHB. This forwarding
treatment MUST be applied by the LSR at the granularity of the BA and
MUST be compliant with the relevant PHB specification.
Le Faucheur, et. al. Standards Track [Page 8]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
When bandwidth requirements are signaled at the establishment of an
L-LSP, the signaled bandwidth is obviously associated with the L-
LSP's PSC. Thus, LSRs which use the signaled bandwidth to perform
admission control may perform admission control over Diff-Serv
resources, which are dedicated to the PSC (e.g., over the bandwidth
guaranteed to the PSC through its scheduling weight).
When bandwidth requirements are signaled at the establishment of an
E-LSP, the signaled bandwidth is associated collectively with the
whole LSP and therefore with the set of transported PSCs. Thus, LSRs
which use the signaled bandwidth to perform admission control may
perform admission control over global resources, which are shared by
the set of PSCs (e.g., over the total bandwidth of the link).
Examples of scenarios where bandwidth reservation is not used and
scenarios where bandwidth reservation is used are provided for
information in APPENDIX B.
2. Label Forwarding Model for Diff-Serv LSRs and Tunneling Models
2.1 Label Forwarding Model for Diff-Serv LSRs
Since different Ordered Aggregates of a given FEC may be transported
over different LSPs, the label swapping decision of a Diff-Serv LSR
clearly depends on the forwarded packet's Behavior Aggregate. Also,
since the IP DS field of a forwarded packet may not be directly
visible to an LSR, the way to determine the PHB to be applied to a
received packet and to encode the PHB into a transmitted packet, is
different than a non-MPLS Diff-Serv Router.
Thus, in order to describe Label Forwarding by Diff-Serv LSRs, we
model the LSR Diff-Serv label switching behavior, comprised of four
stages:
- Incoming PHB Determination (A)
- Outgoing PHB Determination with Optional Traffic Conditioning(B)
- Label Forwarding (C)
- Encoding of Diff-Serv information into Encapsulation Layer (EXP,
CLP, DE, User_Priority) (D)
Each stage is described in more detail in the following sections.
Obviously, to enforce the Diff-Serv service differentiation the LSR
MUST also apply the forwarding treatment corresponding to the
Outgoing PHB.
Le Faucheur, et. al. Standards Track [Page 9]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
This model is illustrated below:
--Inc_label(s)(*)------------------------>I===I--Outg_label(s)(&)-->
\ I I \
\---->I===I I C I \-->I===I--Encaps->
I A I I===I--Outg_PHB->I===I I D I (&)
-Encaps->I===I--Inc_PHB->I B I \ /->I===I
(*) I===I \--------+
\----Forwarding-->
Treatment
(PHB)
"Encaps" designates the Diff-Serv related information encoded in the
MPLS Encapsulation layer (e.g., EXP field, ATM CLP, Frame Relay DE,
802.1 User_Priority)
(*) when the LSR behaves as an MPLS ingress node, the incoming packet
may be received unlabelled.
(&) when the LSR behaves as an MPLS egress node, the outgoing packet
may be transmitted unlabelled.
This model is presented here to describe the functional operations of
Diff-Serv LSRs and does not constrain actual implementation.
2.2 Incoming PHB Determination
This stage determines which Behavior Aggregate the received packet
belongs to.
2.2.1 Incoming PHB Determination Considering a Label Stack Entry
Sections 3.3 and 4.3 provide the details on how to perform incoming
PHB Determination considering a given received label stack entry
and/or received incoming MPLS encapsulation information depending on
the incoming LSP type and depending on the incoming MPLS
encapsulation.
Section 2.6 provides the details of which label stack entry to
consider for the Incoming PHB Determination depending on the
supported Diff-Serv tunneling mode.
2.2.2 Incoming PHB Determination Considering IP Header
Section 2.6 provides the details of when the IP Header is to be
considered for incoming PHB determination, depending on the supported
Diff-Serv tunneling model. In those cases where the IP header is to
Le Faucheur, et. al. Standards Track [Page 10]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
be used, this stage operates exactly as with a non-MPLS IP Diff-Serv
Router and uses the DS field to determine the incoming PHB.
2.3 Outgoing PHB Determination With Optional Traffic Conditioning
The traffic conditioning stage is optional and may be used on an LSR
to perform traffic conditioning including Behavior Aggregate demotion
or promotion. It is outside the scope of this specification. For
the purpose of specifying Diff-Serv over MPLS forwarding, we simply
note that the PHB to be actually enforced and conveyed to downstream
LSRs by an LSR (referred to as "outgoing PHB"), may be different to
the PHB which had been associated with the packet by the previous LSR
(referred to as "incoming PHB").
When the traffic conditioning stage is not present, the "outgoing
PHB" is simply identical to the "incoming PHB".
2.4 Label Forwarding
[MPLS_ARCH] describes how label swapping is performed by LSRs on
incoming labeled packets using an Incoming Label Map (ILM), where
each incoming label is mapped to one or multiple NHLFEs. [MPLS_ARCH]
also describes how label imposition is performed by LSRs on incoming
unlabelled packets using a FEC-to-NHLFEs Map (FTN), where each
incoming FEC is mapped to one or multiple NHLFEs.
A Diff-Serv Context for a label is comprised of:
- `LSP type (i.e., E-LSP or L-LSP)'
- `supported PHBs'
- `Encaps-->PHB mapping' for an incoming label
- `Set of PHB-->Encaps mappings' for an outgoing label
The present specification defines that a Diff-Serv Context is stored
in the ILM for each incoming label.
[MPLS_ARCH] states that the `NHLFE may also contain any other
information needed in order to properly dispose of the packet'. In
accordance with this, the present specification defines that a Diff-
Serv Context is stored in the NHLFE for each outgoing label that is
swapped or pushed.
This Diff-Serv Context information is populated into the ILM and the
FTN at label establishment time.
Le Faucheur, et. al. Standards Track [Page 11]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
If the label corresponds to an E-LSP for which no `EXP<-->PHB
mapping' has been explicitly signaled at LSP setup, the `supported
PHBs' is populated with the set of PHBs of the preconfigured
`EXP<-->PHB mapping', which is discussed below in section 3.2.1.
If the label corresponds to an E-LSP for which an `EXP<-->PHB
mapping' has been explicitly signaled at LSP setup, the `supported
PHBs' is populated with the set of PHBs of the signaled `EXP<-->PHB
mapping'.
If the label corresponds to an L-LSP, the `supported PHBs' is
populated with the set of PHBs forming the PSC that is signaled at
LSP set-up.
The details of how the `Encaps-->PHB mapping' or `Set of PHB-->Encaps
mappings' are populated are defined below in sections 3 and 4.
[MPLS_ARCH] also states that:
"If the ILM [respectively, FTN] maps a particular label to a set of
NHLFEs that contain more than one element, exactly one element of the
set must be chosen before the packet is forwarded. The procedures
for choosing an element from the set are beyond the scope of this
document. Having the ILM [respectively, FTN] map a label
[respectively, a FEC] to a set containing more than one NHLFE may be
useful if, e.g., it is desired to do load balancing over multiple
equal-cost paths."
In accordance with this, the present specification allows that an
incoming label [respectively FEC] may be mapped, for Diff-Serv
purposes, to multiple NHLFEs (for instance where different NHLFEs
correspond to egress labels supporting different sets of PHBs). When
a label [respectively FEC] maps to multiple NHLFEs, the Diff-Serv LSR
MUST choose one of the NHLFEs whose Diff-Serv Context indicates that
it supports the Outgoing PHB of the forwarded packet.
When a label [respectively FEC] maps to multiple NHLFEs which support
the Outgoing PHB, the procedure for choosing one among those is
outside the scope of this document. This situation may be
encountered where it is desired to do load balancing of a Behavior
Aggregate over multiple LSPs. In such situations, in order to
respect ordering constraints, all packets of a given microflow MUST
be transported over the same LSP.
Le Faucheur, et. al. Standards Track [Page 12]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
2.5 Encoding Diff-Serv Information Into Encapsulation Layer
This stage determines how to encode the fields which convey Diff-Serv
information in the transmitted packet (e.g., MPLS Shim EXP, ATM CLP,
Frame Relay DE, 802.1 User_Priority).
2.5.1 Encoding Diff-Serv Information Into Transmitted Label Entry
Sections 3.5 and 4.5 provide the details on how to perform Diff-Serv
information encoding into a given transmitted label stack entry
and/or transmitted MPLS encapsulation information depending on the
corresponding outgoing LSP type and depending on the MPLS
encapsulation.
Section 2.6 provides the details in which label stack entry to
perform Diff-Serv information encoding into depending on the
supported Diff-Serv tunneling mode.
2.5.2 Encoding Diff-Serv Information Into Transmitted IP Header
To perform Diff-Serv Information Encoding into the transmitted packet
IP header, this stage operates exactly as with a non-MPLS IP Diff-
Serv Router and encodes the DSCP of the Outgoing PHB into the DS
field.
Section 2.6 provides the details of when Diff-Serv Information
Encoding is to be performed into transmitted IP header depending on
the supported Diff-Serv tunneling mode.
2.6 Diff-Serv Tunneling Models over MPLS
2.6.1 Diff-Serv Tunneling Models
[DIFF_TUNNEL] considers the interaction of Differentiated Services
with IP tunnels of various forms. MPLS LSPs are not a form of "IP
tunnels" since the MPLS encapsulating header does not contain an IP
header and thus MPLS LSPs are not considered in [DIFF_TUNNEL].
However, although not a form of "IP tunnel", MPLS LSPs are a form of
"tunnel".
From the Diff-Serv standpoint, LSPs share a number of common
characteristics with IP Tunnels:
- Intermediate nodes (i.e., Nodes somewhere along the LSP span) only
see and operate on the "outer" Diff-Serv information.
- LSPs are unidirectional.
Le Faucheur, et. al. Standards Track [Page 13]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- The "outer" Diff-Serv information can be modified at any of the
intermediate nodes.
However, from the Diff-Serv standpoint, LSPs also have a distinctive
property compared to IP Tunnels:
- There is generally no behavior analogous to Penultimate Hop
Popping (PHP) used with IP Tunnels. Furthermore, PHP results in
the "outer" Diff-Serv information associated with the LSP not
being visible to the LSP egress. In situations where this
information is not meaningful at the LSP Egress, this is obviously
not an issue at all. In situations where this information is
meaningful at the LSP Egress, then it must somehow be carried in
some other means.
The two conceptual models for Diff-Serv tunneling over IP Tunnels
defined in [DIFF_TUNNEL] are applicable and useful to Diff-Serv over
MPLS but their respective detailed operations is somewhat different
over MPLS. These two models are the Pipe Model and the Uniform
Model. Their operations over MPLS are specified in the following
sections. Discussion and definition of alternative tunneling models
are outside the scope of this specification.
2.6.2 Pipe Model
With the Pipe Model, MPLS tunnels (aka LSPs) are used to hide the
intermediate MPLS nodes between LSP Ingress and Egress from the
Diff-Serv perspective.
In this model, tunneled packets must convey two meaningful pieces of
Diff-Serv information:
- the Diff-Serv information which is meaningful to intermediate
nodes along the LSP span including the LSP Egress (which we refer
to as the "LSP Diff-Serv Information"). This LSP Diff-Serv
Information is not meaningful beyond the LSP Egress: Whether
Traffic Conditioning at intermediate nodes on the LSP span affects
the LSP Diff-Serv information or not, this updated Diff-Serv
information is not considered meaningful beyond the LSP Egress and
is ignored.
- the Diff-Serv information which is meaningful beyond the LSP
Egress (which we refer to as the "Tunneled Diff-Serv
Information"). This information is to be conveyed by the LSP
Ingress to the LSP Egress. This Diff-Serv information is not
meaningful to the intermediate nodes on the LSP span.
Le Faucheur, et. al. Standards Track [Page 14]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Operation of the Pipe Model without PHP is illustrated below:
========== LSP =============================>
---Swap--(M)--...--Swap--(M)--Swap----
/ (outer header) \
(M) (M)
/ \
>--(m)-Push.................(m).....................Pop--(m)-->
I (inner header) E (M*)
(M) represents the "LSP Diff-Serv information"
(m) represents the "Tunneled Diff-Serv information"
(*) The LSP Egress considers the LSP Diff-Serv information received
in the outer header (i.e., before the pop) in order to apply its
Diff-Serv forwarding treatment (i.e., actual PHB)
I represents the LSP ingress node
E represents the LSP egress node
With the Pipe Model, the "LSP Diff-Serv Information" needs to be
conveyed to the LSP Egress so that it applies its forwarding
treatment based on it. The "Tunneled Diff-Serv information" also
needs to be conveyed to the LSP Egress so it can be conveyed further
downstream.
Since both require that Diff-Serv information be conveyed to the LSP
Egress, the Pipe Model operates only without PHP.
The Pipe Model is particularly appropriate for environments in which:
- the cloud upstream of the incoming interface of the LSP Ingress
and the cloud downstream of the outgoing interface of the LSP
Egress are in Diff-Serv domains which use a common set of Diff-
Serv service provisioning policies and PHB definitions, while the
LSP spans one (or more) Diff-Serv domain(s) which use(s) a
different set of Diff-Serv service provisioning policies and PHB
definitions
- the outgoing interface of the LSP Egress is in the (last) Diff-
Serv domain spanned by the LSP.
As an example, consider the case where a service provider is offering
an MPLS VPN service (see [MPLS_VPN] for an example of MPLS VPN
architecture) including Diff-Serv differentiation. Say that a
collection of sites is interconnected via such an MPLS VPN service.
Now say that this collection of sites is managed under a common
administration and is also supporting Diff-Serv service
differentiation. If the VPN site administration and the Service
Le Faucheur, et. al. Standards Track [Page 15]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Provider are not sharing the exact same Diff-Serv policy (for
instance not supporting the same number of PHBs), then operation of
Diff-Serv in the Pipe Model over the MPLS VPN service would allow the
VPN Sites Diff-Serv policy to operate consistently throughout the
ingress VPN Site and Egress VPN Site and transparently over the
Service Provider Diff-Serv domain. It may be useful to view such
LSPs as linking the Diff-Serv domains at their endpoints into a
single Diff-Serv region by making these endpoints virtually
contiguous even though they may be physically separated by
intermediate network nodes.
The Pipe Model MUST be supported.
For support of the Pipe Model over a given LSP without PHP, an LSR
performs the Incoming PHB Determination and the Diff-Serv information
Encoding in the following manner:
- when receiving an unlabelled packet, the LSR performs Incoming PHB
Determination considering the received IP Header.
- when receiving a labeled packet, the LSR performs Incoming PHB
Determination considering the outer label entry in the received
label stack. In particular, when a pop operation is to be
performed for the considered LSP, the LSR performs Incoming PHB
Determination BEFORE the pop.
- when performing a push operation for the considered LSP, the LSR:
o encodes Diff-Serv Information corresponding to the OUTGOING PHB
in the transmitted label entry corresponding to the pushed
label.
o encodes Diff-Serv Information corresponding to the INCOMING PHB
in the encapsulated header (swapped label entry or IP header).
- when performing a swap-only operation for the considered LSP, the
LSR encodes Diff-Serv Information in the transmitted label entry
that contains the swapped label
- when performing a pop operation for the considered LSP, the LSR
does not perform Encoding of Diff-Serv Information into the header
exposed by the pop operation (i.e., the LSR leaves the exposed
header "as is").
2.6.2.1 Short Pipe Model
The Short Pipe Model is an optional variation of the Pipe Model
described above. The only difference is that, with the Short Pipe
Le Faucheur, et. al. Standards Track [Page 16]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Model, the Diff-Serv forwarding treatment at the LSP Egress is
applied based on the "Tunneled Diff-Serv Information" (i.e., Diff-
Serv information conveyed in the encapsulated header) rather than on
the "LSP Diff-Serv information" (i.e., Diff-Serv information conveyed
in the encapsulating header).
Operation of the Short Pipe Model without PHP is illustrated below:
========== LSP =============================>
---Swap--(M)--...--Swap--(M)--Swap----
/ (outer header) \
(M) (M)
/ \
>--(m)-Push.................(m).....................Pop--(m)-->
I (inner header) E
(M) represents the "LSP Diff-Serv information"
(m) represents the "Tunneled Diff-Serv information"
I represents the LSP ingress node
E represents the LSP egress node
Since the LSP Egress applies its forwarding treatment based on the
"Tunneled Diff-Serv Information", the "LSP Diff-Serv information"
does not need to be conveyed by the penultimate node to the LSP
Egress. Thus the Short Pipe Model can also operate with PHP.
Operation of the Short Pipe Model with PHP is illustrated below:
=========== LSP ============================>
---Swap--(M)--...--Swap------
/ (outer header) \
(M) (M)
/ \
>--(m)-Push.................(m).............Pop-(m)--E--(m)-->
I (inner header) P (M*)
(M) represents the "LSP Diff-Serv information"
(m) represents the "Tunneled Diff-Serv information"
(*) The Penultimate LSR considers the LSP Diff-Serv information
received in the outer header (i.e., before the pop) in order to
apply its Diff-Serv forwarding treatment (i.e., actual PHB)
I represents the LSP ingress node
P represents the LSP penultimate node
E represents the LSP egress node
Le Faucheur, et. al. Standards Track [Page 17]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
The Short Pipe Model is particularly appropriate for environments in
which:
- the cloud upstream of the incoming interface of the LSP Ingress
and the cloud downstream of the outgoing interface of the LSP
Egress are in Diff-Serv domains which use a common set of Diff-
Serv service provisioning policies and PHB definitions, while the
LSP spans one (or more) Diff-Serv domain(s) which use(s) a
different set of Diff-Serv service provisioning policies and PHB
definitions
- the outgoing interface of the LSP Egress is in the same Diff-Serv
domain as the cloud downstream of it.
Since each outgoing interface of the LSP Egress is in the same Diff-
Serv domain as the cloud downstream of it, each outgoing interface
may potentially be in a different Diff-Serv domain, and the LSP
Egress needs to be configured with awareness of every corresponding
Diff-Serv policy. This operational overhead is justified in some
situations where the respective downstream Diff-Serv policies are
better suited to offering service differentiation over each egress
interface than the common Diff-Serv policy used on the LSP span. An
example of such a situation is where a Service Provider offers an
MPLS VPN service and where some VPN users request that their own VPN
Diff-Serv policy be applied to control service differentiation on the
dedicated link from the LSP Egress to the destination VPN site,
rather than the Service Provider's Diff-Serv policy.
The Short Pipe Model MAY be supported.
For support of the Short Pipe Model over a given LSP without PHP, an
LSR performs the Incoming PHB Determination and the Diff-Serv
information Encoding in the same manner as with the Pipe Model with
the following exception:
- when receiving a labeled packet, the LSR performs Incoming PHB
Determination considering the header (label entry or IP header)
which is used to do the actual forwarding. In particular, when a
pop operation is to be performed for the considered LSP, the LSR
performs Incoming PHB Determination AFTER the pop.
For support of the Short Pipe Model over a given LSP with PHP, an LSR
performs Incoming PHB Determination and Diff-Serv information
Encoding in the same manner as without PHP with the following
exceptions:
Le Faucheur, et. al. Standards Track [Page 18]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- the Penultimate LSR performs Incoming PHB Determination
considering the outer label entry in the received label stack. In
other words, when a pop operation is to be performed for the
considered LSP, the Penultimate LSR performs Incoming PHB
Determination BEFORE the pop.
Note that the behavior of the Penultimate LSR in the Short Pipe Mode
with PHP, is identical to the behavior of the LSP Egress in the Pipe
Mode (necessarily without PHP).
2.6.3 Uniform Model
With the Uniform Model, MPLS tunnels (aka LSPs) are viewed as
artifacts of the end-to-end path from the Diff-Serv standpoint. MPLS
Tunnels may be used for forwarding purposes but have no significant
impact on Diff-Serv. In this model, any packet contains exactly one
piece of Diff-Serv information which is meaningful and is always
encoded in the outer most label entry (or in the IP DSCP where the IP
packet is transmitted unlabelled for instance at the egress of the
LSP). Any Diff-Serv information encoded somewhere else (e.g., in
deeper label entries) is of no significance to intermediate nodes or
to the tunnel egress and is ignored. If Traffic Conditioning at
intermediate nodes on the LSP span affects the "outer" Diff-Serv
information, the updated Diff-Serv information is the one considered
meaningful at the egress of the LSP.
Operation of the Uniform Model without PHP is illustrated below:
========== LSP =============================>
---Swap--(M)--...-Swap--(M)--Swap----
/ (outer header) \
(M) (M)
/ \
>--(M)--Push...............(x).......................Pop--(M)->
I (inner header) E
(M) represents the Meaningful Diff-Serv information encoded in the
corresponding header.
(x) represents non-meaningful Diff-Serv information.
I represents the LSP ingress node
E represents the LSP egress node
Le Faucheur, et. al. Standards Track [Page 19]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Operation of the Uniform Model with PHP is illustrated below:
========== LSP =========================>
---Swap-(M)-...-Swap------
/ (outer header) \
(M) (M)
/ \
>--(M)--Push..............(x)............Pop-(M)--E--(M)->
I (inner header) P
(M) represents the Meaningful Diff-Serv information encoded in the
corresponding header.
(x) represents non-meaningful Diff-Serv information.
I represents the LSP ingress node
P represents the LSP penultimate node
E represents the LSP egress node
The Uniform Model for Diff-Serv over MPLS is such that, from the
Diff-Serv perspective, operations are exactly identical to the
operations if MPLS was not used. In other words, MPLS is entirely
transparent to the Diff-Serv operations.
Use of the Uniform Model allows LSPs to span Diff-Serv domain
boundaries without any other measure in place than an inter-domain
Traffic Conditioning Agreement at the physical boundary between the
Diff-Serv domains and operating exclusively on the "outer" header,
since the meaningful Diff-Serv information is always visible and
modifiable in the outmost label entry.
The Uniform Model MAY be supported.
For support of the Uniform Model over a given LSP, an LSR performs
Incoming PHB Determination and Diff-Serv information Encoding in the
following manner:
- when receiving an unlabelled packet, the LSR performs Incoming PHB
Determination considering the received IP Header.
- when receiving a labeled packet, the LSR performs Incoming PHB
Determination considering the outer label entry in the received
label stack. In particular, when a pop operation is to be
performed for the considered LSP, the LSR performs Incoming PHB
Determination BEFORE the pop.
Le Faucheur, et. al. Standards Track [Page 20]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- when performing a push operation for the considered LSP, the LSR
encodes Diff-Serv Information in the transmitted label entry
corresponding to the pushed label. The Diff-Serv Information
encoded in the encapsulated header (swapped label entry or IP
Header) is of no importance.
- when performing a swap-only operation for the considered LSP, the
LSR encodes Diff-Serv Information in the transmitted label entry
that contains the swapped label.
- when PHP is used, the Penultimate LSR needs to be aware of the
"Set of PHB-->Encaps mappings" for the label corresponding to the
exposed header (or the `PHB-->DSCP mapping') in order to perform
Diff-Serv Information Encoding. Methods for providing this
mapping awareness are outside the scope of this specification. As
an example, the "PHB-->DSCP mapping" may be locally configured.
As another example, in some environments, it may be appropriate
for the Penultimate LSR to assume that the "Set of PHB-->Encaps
mappings" to be used for the outgoing label in the exposed header
is the "Set of PHB-->Encaps mappings" that would be used by the
LSR if the LSR was not doing PHP. Note also that this
specification assumes that the Penultimate LSR does not perform
label swapping over the label entry exposed by the pop operation
(and in fact that it does not even look at the exposed label).
Consequently, restrictions may apply to the Diff-Serv Information
Encoding that can be performed by the Penultimate LSR. For
example, this specification does not allow situations where the
Penultimate LSR pops a label corresponding to an E-LSP supporting
two PSCs, while the header exposed by the pop contains label
values for two L-LSPs each supporting one PSC, since the Diff-Serv
Information Encoding would require selecting one label or the
other.
Note that LSR behaviors for the Pipe, the Short Pipe and the Uniform
Model only differ when doing a push or a pop. Thus, Intermediate
LSRs which perform swap only operations for an LSP, behave in exactly
the same way, regardless of whether they are behaving in the Pipe,
Short Pipe or the Uniform model. With a Diff-Serv implementation
supporting multiple Tunneling Models, only LSRs behaving as LSP
Ingress, Penultimate LSR or LSP Egress need to be configured to
operate in a particular Model. Signaling to associate a Diff-Serv
tunneling model on a per-LSP basis is not within the scope of this
specification.
Le Faucheur, et. al. Standards Track [Page 21]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
2.6.4 Hierarchy
Through the label stack mechanism, MPLS allows LSP tunneling to nest
to any depth. We observe that with such nesting, the push of level
N+1 takes place on a subsequent (or the same) LSR to the LSR doing
the push for level N, while the pop of level N+1 takes place on a
previous (or the same) LSR to the LSR doing the pop of level N. For
a given level N LSP, the Ingress LSR doing the push and the LSR doing
the pop (Penultimate LSR or LSP Egress) must operate in the same
Tunneling Model (i.e., Pipe, Short Pipe or Uniform). However, there
is no requirement for consistent tunneling models across levels so
that LSPs at different levels may be operating in different Tunneling
Models.
Hierarchical operations are illustrated below in the case of two
levels of tunnels:
+--------Swap--...---+
/ (outmost header) \
/ \
Push(2).................(2)Pop
/ (outer header) \
/ \
>>---Push(1)........................(1)Pop-->>
(inner header)
(1) Tunneling Model 1
(2) Tunneling Model 2
Tunneling Model 2 may be the same as or may be different from
Tunneling Model 1.
For a given LSP of level N, the LSR must perform the Incoming PHB
Determination and the Diff-Serv information Encoding as specified in
section 2.6.2, 2.6.2.1 and 2.6.3 according to the Tunneling Model of
this level N LSP and independently of the Tunneling Model of other
level LSPs.
3. Detailed Operations of E-LSPs
3.1 E-LSP Definition
E-LSPs are defined in section 1.2.
Within a given MPLS Diff-Serv domain, all the E-LSPs relying on the
pre-configured mapping are capable of transporting the same common
set of 8, or fewer, BAs. Each of those E-LSPs may actually transport
this full set of BAs or any arbitrary subset of it.
Le Faucheur, et. al. Standards Track [Page 22]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
For a given FEC, two given E-LSPs using a signaled `EXP<-->PHB
mapping' can support the same or different sets of Ordered
Aggregates.
3.2 Populating the `Encaps-->PHB mapping' for an incoming E-LSP
This section defines how the `Encaps-->PHB mapping' of the Diff-Serv
Context is populated for an incoming E-LSP in order to allow Incoming
PHB determination.
The `Encaps-->PHB mapping' for an E-LSP is always of the form
`EXP-->PHB mapping'.
If the label corresponds to an E-LSP for which no `EXP<-->PHB
mapping' has been explicitly signaled at LSP setup, the `EXP-->PHB
mapping' is populated based on the Preconfigured `EXP<-->PHB mapping'
which is discussed below in section 3.2.1.
If the label corresponds to an E-LSP for which an `EXP<-->PHB
mapping' has been explicitly signaled at LSP setup, the `EXP-->PHB
mapping' is populated as per the signaled `EXP<-->PHB mapping'.
3.2.1 Preconfigured `EXP<-->PHB mapping'
LSRs supporting E-LSPs which use the preconfigured `EXP<-->PHB
mapping' must allow local configuration of this `EXP<-->PHB mapping'.
This mapping applies to all the E-LSPs established on this LSR
without a mapping explicitly signaled at set-up time.
The preconfigured `EXP<-->PHB mapping' must either be consistent at
every E-LSP hop throughout the MPLS Diff-Serv domain spanned by the
LSP or appropriate remarking of the EXP field must be performed by
the LSR whenever a different preconfigured mapping is used on the
ingress and egress interfaces.
In case, the preconfigured `EXP<-->PHB mapping' has not actually been
configured by the Network Administrator, the LSR should use a default
preconfigured `EXP<-->PHB mapping' which maps all EXP values to the
Default PHB.
3.3 Incoming PHB Determination On Incoming E-LSP
This section defines how Incoming PHB Determination is carried out
when the considered label entry in the received label stack
corresponds to an E-LSP. This requires that the `Encaps-->PHB
mapping' is populated as defined in section 3.2.
Le Faucheur, et. al. Standards Track [Page 23]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
When considering a label entry corresponding to an incoming E-LSP for
Incoming PHB Determination, the LSR:
- determines the `EXP-->PHB mapping' by looking up the `Encaps-->PHB
mapping' of the Diff-Serv Context associated in the ILM with the
considered incoming E-LSP label.
- determines the incoming PHB by looking up the EXP field of the
considered label entry in the `EXP-->PHB mapping' table.
3.4 Populating the `Set of PHB-->Encaps mappings' for an outgoing E-LSP
This section defines how the `Set of PHB-->Encaps mappings' of the
Diff-Serv Context is populated at label setup for an outgoing E-LSP
in order to allow Encoding of Diff-Serv information in the
Encapsulation Layer.
3.4.1 `PHB-->EXP mapping'
An outgoing E-LSP must always have a `PHB-->EXP mapping' as part of
the `Set of PHB-->Encaps mappings' of its Diff-Serv Context.
If the label corresponds to an E-LSP for which no `EXP<-->PHB
mapping' has been explicitly signaled at LSP setup, this `PHB-->EXP
mapping' is populated based on the Preconfigured `EXP<-->PHB mapping'
which is discussed above in section 3.2.1.
If the label corresponds to an E-LSP for which an `EXP<-->PHB
mapping' has been explicitly signaled at LSP setup, the `PHB-->EXP
mapping' is populated as per the signaled `EXP<-->PHB mapping'.
3.4.2 `PHB-->CLP mapping'
If the LSP is egressing over an ATM interface which is not label
switching controlled, then one `PHB-->CLP mapping' is added to the
`Set of PHB-->Encaps mappings' for this outgoing LSP. This
`PHB-->CLP mapping' is populated in the following way:
- it is a function of the PHBs supported on this LSP, and may use
the relevant mapping entries for these PHBs from the Default
`PHB-->CLP mapping' defined in section 3.4.2.1. Mappings other
than the one defined in section 3.4.2.1 may be used. In
particular, if a mapping from PHBs to CLP is standardized in the
future for operations of Diff-Serv over ATM, such a standardized
mapping may then be used.
Le Faucheur, et. al. Standards Track [Page 24]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
For example if the outgoing label corresponds to an LSP supporting
the AF1 PSC, then the `PHB-->CLP mapping' may be populated with:
PHB CLP Field
AF11 ----> 0
AF12 ----> 1
AF13 ----> 1
EF ----> 0
Notice that in this case the `Set of PHB-->Encaps mappings' contains
both a `PHB-->EXP mapping' and a `PHB-->CLP mapping'.
3.4.2.1 Default `PHB-->CLP mapping'
PHB CLP Bit
DF ----> 0
CSn ----> 0
AFn1 ----> 0
AFn2 ----> 1
AFn3 ----> 1
EF ----> 0
3.4.3 `PHB-->DE mapping'
If the LSP is egressing over a Frame Relay interface which is not
label switching controlled, one `PHB-->DE mapping' is added to the
`Set of PHB-->Encaps mappings' for this outgoing LSP and is populated
in the following way:
- it is a function of the PHBs supported on this LSP, and may use
the relevant mapping entries for these PHBs from the Default
`PHB-->DE mapping' defined in section 3.4.3.1. Mappings other
than the one defined in section 3.4.3.1 may be used. In
particular, if a mapping from PHBs to DE is standardized in the
future for operations of Diff-Serv over Frame Relay, such a
standardized mapping may then be used.
Notice that in this case the `Set of PHB-->Encaps mappings' contains
both a `PHB-->EXP mapping' and a `PHB-->DE mapping'.
Le Faucheur, et. al. Standards Track [Page 25]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
3.4.3.1 `Default PHB-->DE mapping'
PHB DE Bit
DF ----> 0
CSn ----> 0
AFn1 ----> 0
AFn2 ----> 1
AFn3 ----> 1
EF ----> 0
3.4.4 `PHB-->802.1 mapping'
If the LSP is egressing over a LAN interface on which multiple 802.1
Traffic Classes are supported as per [IEEE_802.1], then one
`PHB-->802.1 mapping' is added to the `Set of PHB-->Encaps mappings'
for this outgoing LSP. This `PHB-->802.1 mapping' is populated in
the following way:
- it is a function of the PHBs supported on this LSP, and uses the
relevant mapping entries for these PHBs from the Preconfigured
`PHB-->802.1 mapping' defined in section 3.4.4.1.
Notice that the `Set of PHB-->Encaps mappings' then contains both a
`PHB-->EXP mapping' and a `PHB-->802.1 mapping'.
3.4.4.1 Preconfigured `PHB-->802.1 Mapping'
At the time of producing this specification, there are no
standardized mapping from PHBs to 802.1 Traffic Classes.
Consequently, an LSR supporting multiple 802.1 Traffic Classes over
LAN interfaces must allow local configuration of a `PHB-->802.1
mapping'. This mapping applies to all the outgoing LSPs established
by the LSR on such LAN interfaces.
3.5 Encoding Diff-Serv information into Encapsulation Layer On Outgoing
E-LSP
This section defines how to encode Diff-Serv information into the
MPLS encapsulation Layer for a given transmitted label entry
corresponding to an outgoing E-LSP. This requires that the `Set of
PHB-->Encaps mappings' be populated as defined in section 3.4.
The LSR first determines the `Set of PHB-->Encaps mappings' of the
Diff-Serv Context associated with the corresponding label in the
NHLFE.
Le Faucheur, et. al. Standards Track [Page 26]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
3.5.1 `PHB-->EXP mapping'
If the `Set of PHB-->Encaps mappings' contains a mapping of the form
`PHB-->EXP mapping', then the LSR:
- determines the value to be written in the EXP field of the
corresponding level label entry by looking up the "outgoing PHB"
in this `PHB-->EXP mapping' table.
3.5.2 `PHB-->CLP mapping'
If the `Set of PHB-->Encaps mappings' contains a mapping of the form
`PHB-->CLP mapping', then the LSR:
- determines the value to be written in the CLP field of the ATM
encapsulation header, by looking up the "outgoing PHB" in this
`PHB-->CLP mapping' table.
3.5.3 `PHB-->DE mapping'
If the `Set of PHB-->Encaps mappings' contains a mapping of the form
`PHB-->DE mapping', then the LSR:
- determines the value to be written in the DE field of the Frame
Relay encapsulation header, by looking up the "outgoing PHB" in
this `PHB-->DE mapping' table.
3.5.4 `PHB-->802.1 mapping'
If the `Set of PHB-->Encaps mappings' contains a mapping of the form
`PHB-->802.1 mapping', then the LSR:
- determines the value to be written in the User_Priority field of
the Tag Control Information of the 802.1 encapsulation header
[IEEE_802.1], by looking up the "outgoing PHB" in this 'PHB--
>802.1 mapping' table.
3.6 E-LSP Merging
In an MPLS domain, two or more LSPs can be merged into one LSP at one
LSR. E-LSPs are compatible with LSP Merging under the following
condition:
E-LSPs can only be merged into one LSP if they support the exact
same set of BAs.
Le Faucheur, et. al. Standards Track [Page 27]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
For E-LSPs using a signaled `EXP<-->PHB mapping', the above merge
condition MUST be enforced by LSRs through explicit checking at label
setup that the exact same set of PHBs is supported on the merged
LSPs.
For E-LSPs using the preconfigured `EXP<-->PHB mapping', since the
PHBs supported over an E-LSP is not signaled at establishment time,
an LSR can not rely on signaling information to enforce the above
merge. However all E-LSPs using the preconfigured `EXP<-->PHB
mapping' are required to support the same set of Behavior Aggregates
within a given MPLS Diff-Serv domain. Thus, merging of E-LSPs using
the preconfigured `EXP<-->PHB mapping' is allowed within a given MPLS
Diff-Serv domain.
4. Detailed Operation of L-LSPs
4.1 L-LSP Definition
L-LSPs are defined in section 1.3.
4.2 Populating the `Encaps-->PHB mapping' for an incoming L-LSP
This section defines how the `Encaps-->PHB mapping' of the Diff-Serv
Context is populated at label setup for an incoming L-LSP in order to
allow Incoming PHB determination.
4.2.1 `EXP-->PHB mapping'
If the LSR terminates the MPLS Shim Layer over this incoming L-LSP
and the L-LSP ingresses on an interface which is not ATM nor Frame
Relay, then the `Encaps-->PHB mapping' is populated in the following
way:
- it is actually a `EXP-->PHB mapping'
- this mapping is a function of the PSC which is carried on this
LSP, and must use the relevant mapping entries for this PSC from
the Mandatory `EXP/PSC-->PHB mapping' defined in Section 4.2.1.1.
For example if the incoming label corresponds to an L-LSP supporting
the AF1 PSC, then the `Encaps-->PHB mapping' will be populated with:
EXP Field PHB
001 ----> AF11
010 ----> AF12
011 ----> AF13
Le Faucheur, et. al. Standards Track [Page 28]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
An LSR, supporting L-LSPs over PPP interfaces and LAN interfaces, is
an example of an LSR terminating the Shim layer over ingress
interfaces which are not ATM nor Frame Relay.
If the LSR terminates the MPLS Shim Layer over this incoming L-LSP
and the L-LSP ingresses on an ATM or Frame Relay interface, then the
`Encaps-->PHB mapping' is populated in the following way:
- it should actually be a `EXP-->PHB mapping'. Alternative optional
ways of populating the `Encaps-->PHB mapping' might be defined in
the future (e.g., using a 'CLP/EXP--> PHB mapping' or a
'DE/EXP-->PHB mapping') but are outside the scope of this
document.
- when the `Encaps-->PHB mapping' is an `EXP-->PHB mapping', this
`EXP-->PHB mapping' mapping is a function of the PSC which is
carried on the L-LSP, and must use the relevant mapping entries
for this PSC from the Mandatory `EXP/PSC-->PHB mapping' defined in
Section 4.2.1.1.
An Edge-LSR of an ATM-MPLS domain or of a FR-MPLS domain is an
example of an LSR terminating the shim layer over an ingress ATM/FR
interface.
4.2.1.1 Mandatory `EXP/PSC --> PHB mapping'
EXP Field PSC PHB
000 DF ----> DF
000 CSn ----> CSn
001 AFn ----> AFn1
010 AFn ----> AFn2
011 AFn ----> AFn3
000 EF ----> EF
4.2.2 `CLP-->PHB mapping'
If the LSR does not terminate an MPLS Shim Layer over this incoming
label and uses ATM encapsulation (i.e., it is an ATM-LSR), then the
`Encaps-->PHB mapping' for this incoming L-LSP is populated in the
following way:
- it is actually a `CLP-->PHB mapping'
- the mapping is a function of the PSC, which is carried on this
LSP, and should use the relevant mapping entries for this PSC from
the Default `CLP/PSC-->PHB mapping' defined in Section 4.2.2.1.
Le Faucheur, et. al. Standards Track [Page 29]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
For example if the incoming label corresponds to an L-LSP supporting
the AF1 PSC, then the `Encaps-->PHB mapping' should be populated
with:
CLP Field PHB
0 ----> AF11
1 ----> AF12
4.2.2.1 Default `CLP/PSC --> PHB mapping'
CLP Bit PSC PHB
0 DF ----> DF
0 CSn ----> CSn
0 AFn ----> AFn1
1 AFn ----> AFn2
0 EF ----> EF
4.2.3 `DE-->PHB mapping'
If the LSR does not terminate an MPLS Shim Layer over this incoming
label and uses Frame Relay encapsulation (i.e., it is a FR-LSR), then
the `Encaps-->PHB mapping' for this incoming L-LSP is populated in
the following way:
- it is actually a `DE-->PHB mapping'
- the mapping is a function of the PSC which is carried on this LSP,
and should use the relevant mapping entries for this PSC from the
Default `DE/PSC-->PHB mapping' defined in Section 4.2.3.1.
4.2.3.1 Default `DE/PSC --> PHB mapping'
DE Bit PSC PHB
0 DF ----> DF
0 CSn ----> CSn
0 AFn ----> AFn1
1 AFn ----> AFn2
0 EF ----> EF
4.3 Incoming PHB Determination On Incoming L-LSP
This section defines how Incoming PHB determination is carried out
when the considered label entry in the received label stack
corresponds to an L-LSP. This requires that the `Encaps-->PHB
mapping' is populated as defined in section 4.2.
Le Faucheur, et. al. Standards Track [Page 30]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
When considering a label entry corresponding to an incoming L-LSP
for Incoming PHB Determination, the LSR first determines the
`Encaps-->PHB mapping' associated with the corresponding label.
4.3.1 `EXP-->PHB mapping'
If the `Encaps-->PHB mapping' is of the form `EXP-->PHB mapping',
then the LSR:
- determines the incoming PHB by looking at the EXP field of the
considered label entry and using the `EXP-->PHB mapping'.
4.3.2 `CLP-->PHB mapping'
If the `Encaps-->PHB mapping' is of the form `CLP-->PHB mapping',
then the LSR:
- determines the incoming PHB by looking at the CLP field of the
ATM Layer encapsulation and using the `CLP-->PHB mapping'.
4.3.3 `DE-->PHB mapping'
If the `Encaps-->PHB mapping' is of the form `DE-->PHB mapping',
then the LSR:
- determines the incoming PHB by looking at the DE field of the
Frame Relay encapsulation and by using the `DE-->PHB mapping'.
4.4 Populating the `Set of PHB-->Encaps mappings' for an outgoing L-LSP
This section defines how the `Set of PHB-->Encaps mappings' of the
Diff-Serv Context is populated at label setup for an outgoing L-LSP
in order to allow Encoding of Diff-Serv Information.
4.4.1 `PHB-->EXP mapping'
If the LSR uses an MPLS Shim Layer over this outgoing L-LSP, then
one `PHB-->EXP mapping' is added to the `Set of
PHB-->Encaps mappings' for this outgoing
L-LSP. This `PHB-->EXP mapping' is populated in the following way:
- it is a function of the PSC supported on this LSP, and must use
the mapping entries relevant for this PSC from the Mandatory
`PHB-->EXP mapping' defined in section 4.4.1.1.
For example, if the outgoing label corresponds to an L-LSP supporting
the AF1 PSC, then the following `PHB-->EXP mapping' is added into
the `Set of PHB-->Encaps mappings':
Le Faucheur, et. al. Standards Track [Page 31]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
PHB EXP Field
AF11 ----> 001
AF12 ----> 010
AF13 ----> 011
4.4.1.1 Mandatory `PHB-->EXP mapping'
PHB EXP Field
DF ----> 000
CSn ----> 000
AFn1 ----> 001
AFn2 ----> 010
AFn3 ----> 011
EF ----> 000
4.4.2 `PHB-->CLP mapping'
If the L-LSP is egressing on an ATM interface (i.e., it is an ATM-LSR
or it is a frame-based LSR sending packets on an LC-ATM interface or
on an ATM interface which is not label switching controlled), then
one `PHB-->CLP mapping' is added to the `Set of PHB-->Encaps
mappings' for this outgoing L-LSP.
If the L-LSP is egressing over an ATM interface which is not label-
controlled, the `PHB-->CLP mapping' is populated as per section
3.4.2.
If the L-LSP is egressing over an LC-ATM interface, the `PHB-->CLP
mapping' is populated in the following way:
- it is a function of the PSC supported on this LSP, and should use
the relevant mapping entries for this PSC from the Default
`PHB-->CLP mapping' defined in section 3.4.2.1.
Notice that if the LSR is a frame-based LSR supporting an L-LSP
egressing over an ATM interface, then the `Set of PHB-->Encaps
mappings' contains both a `PHB-->EXP mapping' and a `PHB-->CLP
mapping'. If the LSR is an ATM-LSR supporting an L-LSP, then the
`Set of PHB-->Encaps mappings' only contains a `PHB-->CLP mapping'.
Le Faucheur, et. al. Standards Track [Page 32]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
4.4.3 `PHB-->DE mapping'
If the L-LSP is egressing over a Frame Relay interface (i.e., it is
an LSR sending packets on an LC-FR interface or on a Frame Relay
interface which is not label switching controlled), one `PHB-->DE
mapping' is added to the `Set of PHB-->Encaps mappings' for this
outgoing L-LSP.
If the L-LSP is egressing over a FR interface which is not label
switching controlled, the `PHB-->DE mapping' is populated as per
section 3.4.3.
If the L-LSP is egressing over an LC-FR interface, the `PHB-->DE
mapping' is populated in the following way:
- it is a function of the PSC supported on this LSP, and should use
the relevant mapping entries for this PSC from the Default
`PHB-->DE mapping' defined in section 3.4.3.1.
Notice that if the LSR is an Edge-LSR supporting an L-LSP egressing
over a LC-FR interface, then the `Set of PHB-->Encaps mappings'
contains both a `PHB-->EXP mapping' and a `PHB-->DE mapping'. If the
LSR is a FR-LSR supporting an L-LSP, then the `Set of PHB-->Encaps
mappings' only contains a `PHB-->DE mapping'.
4.4.4 `PHB-->802.1 mapping'
If the LSP is egressing over a LAN interface on which multiple 802.1
Traffic Classes are supported, as defined in [IEEE_802.1], then one
`PHB-->802.1 mapping' is added as per section 3.4.4.
4.5 Encoding Diff-Serv Information into Encapsulation Layer on Outgoing
L-LSP
This section defines how to encode Diff-Serv information into the
MPLS encapsulation Layer for a transmitted label entry corresponding
to an outgoing L-LSP. This requires that the `Set of PHB-->Encaps
mappings' is populated as defined in section 4.4.
The LSR first determines the `Set of PHB-->Encaps mappings' of the
Diff-Serv Context associated with the corresponding label in the
NHLFE and then performs corresponding encoding as specified in
sections 3.5.1, 3.5.2, 3.5.3 and 3.5.4.
Le Faucheur, et. al. Standards Track [Page 33]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
4.6 L-LSP Merging
In an MPLS domain, two or more LSPs can be merged into one LSP at one
LSR. L-LSPs are compatible with LSP Merging under the following
condition:
L-LSPs can only be merged into one L-LSP if they support the same
PSC.
The above merge condition MUST be enforced by LSRs, through explicit
checking at label setup, that the same PSC is supported on the merged
LSPs.
Note that when L-LSPs merge, the bandwidth that is available for the
PSC downstream of the merge point must be sufficient to carry the sum
of the merged traffic. This is particularly important in the case of
EF traffic. This can be ensured in multiple ways (for instance via
provisioning, or via bandwidth signaling and explicit admission
control).
5. RSVP Extension for Diff-Serv Support
The MPLS architecture does not assume a single label distribution
protocol. [RSVP_MPLS_TE] defines the extension to RSVP for
establishing LSPs in MPLS networks. This section specifies the
extensions to RSVP, beyond those defined in [RSVP_MPLS_TE], to
establish LSPs supporting Differentiated Services in MPLS networks.
5.1 Diff-Serv related RSVP Messages Format
One new RSVP Object is defined in this document: the DIFFSERV Object.
Detailed description of this Object is provided below. This new
Object is applicable to Path messages. This specification only
defines the use of the DIFFSERV Object in Path messages used to
establish LSP Tunnels in accordance with [RSVP_MPLS_TE] and thus
containing a Session Object with a C-Type equal to LSP_TUNNEL_IPv4
and containing a LABEL_REQUEST object.
Restrictions defined in [RSVP_MPLS_TE] for support of the
establishment of LSP Tunnels via RSVP are also applicable to the
establishment of LSP Tunnels supporting Diff-Serv: for instance, only
unicast LSPs are supported and Multicast LSPs are for further study.
This new DIFFSERV object is optional with respect to RSVP so that
general RSVP implementations not concerned with MPLS LSP set up do
not have to support this object.
Le Faucheur, et. al. Standards Track [Page 34]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
The DIFFSERV Object is optional for support of LSP Tunnels as defined
in [RSVP_MPLS_TE]. A Diff-Serv capable LSR supporting E-LSPs using
the preconfigured `EXP<-->PHB mapping' in compliance with this
specification MAY support the DIFFSERV Object. A Diff-Serv capable
LSR supporting E-LSPs using a signaled `EXP<-->PHB mapping' in
compliance with this specification MUST support the DIFFSERV Object.
A Diff-Serv capable LSR supporting L-LSPs in compliance with this
specification MUST support the DIFFSERV Object.
5.1.1 Path Message Format
The format of the Path message is as follows:
<Path Message> ::= <Common Header> [ <INTEGRITY> ]
<SESSION> <RSVP_HOP>
<TIME_VALUES>
[ <EXPLICIT_ROUTE> ]
<LABEL_REQUEST>
[ <SESSION_ATTRIBUTE> ]
[ <DIFFSERV> ]
[ <POLICY_DATA> ... ]
[ <sender descriptor> ]
<sender descriptor> ::= <SENDER_TEMPLATE> <SENDER_TSPEC>
[ <ADSPEC> ]
[ <RECORD_ROUTE> ]
5.2 DIFFSERV Object
The DIFFSERV object formats are shown below. Currently there are two
possible C_Types. Type 1 is a DIFFSERV object for an E-LSP. Type 2
is a DIFFSERV object for an L-LSP.
Le Faucheur, et. al. Standards Track [Page 35]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
5.2.1. DIFFSERV object for an E-LSP:
class = 65, C_Type = 1
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved | MAPnb |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MAP (1) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
// ... //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MAP (MAPnb) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Reserved : 28 bits
This field is reserved. It must be set to zero on transmission
and must be ignored on receipt.
MAPnb : 4 bits
Indicates the number of MAP entries included in the DIFFSERV
Object. This can be set to any value from 0 to 8.
MAP : 32 bits
Each MAP entry defines the mapping between one EXP field value
and one PHB. The MAP entry has the following format:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved | EXP | PHBID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Reserved : 13 bits
This field is reserved. It must be set to zero on transmission
and must be ignored on receipt.
EXP : 3 bits
This field contains the value of the EXP field for the
`EXP<-->PHB mapping' defined in this MAP entry.
PHBID : 16 bits
This field contains the PHBID of the PHB for the `EXP<-->PHB
mapping' defined in this MAP entry. The PHBID is encoded as
specified in [PHBID].
Le Faucheur, et. al. Standards Track [Page 36]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
5.2.2 DIFFSERV object for an L-LSP:
class = 65, C_Type = 2
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved | PSC |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Reserved : 16 bits
This field is reserved. It must be set to zero on transmission
and must be ignored on receipt.
PSC : 16 bits
The PSC indicates a PHB Scheduling Class to be supported by the
LSP. The PSC is encoded as specified in [PHBID].
5.3 Handling DIFFSERV Object
To establish an LSP tunnel with RSVP, the sender creates a Path
message with a session type of LSP_Tunnel_IPv4 and with a
LABEL_REQUEST object as per [RSVP_MPLS_TE].
To establish an E-LSP tunnel with RSVP, which uses the Preconfigured
`EXP<-->PHB mapping', the sender creates a Path message:
- with a session type of LSP_Tunnel_IPv4,
- with the LABEL_REQUEST object, and
- without the DIFFSERV object.
To establish an E-LSP tunnel with RSVP, which uses the Preconfigured
`EXP<-->PHB mapping', the sender MAY alternatively create a Path
message:
- with a session type of LSP_Tunnel_IPv4,
- with the LABEL_REQUEST object, and
- with the DIFFSERV object for an E-LSP containing no MAP entries.
To establish an E-LSP tunnel with RSVP, which uses a signaled
`EXP<-->PHB mapping', the sender creates a Path message:
- with a session type of LSP_Tunnel_IPv4,
Le Faucheur, et. al. Standards Track [Page 37]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- with the LABEL_REQUEST object,
- with the DIFFSERV object for an E-LSP containing one MAP entry for
each EXP value to be supported on this E-LSP.
To establish with RSVP an L-LSP tunnel, the sender creates a Path
message:
- with a session type of LSP_Tunnel_IPv4,
- with the LABEL_REQUEST object,
- with the DIFFSERV object for an L-LSP containing the PHB
Scheduling Class (PSC) supported on this L-LSP.
If a path message contains multiple DIFFSERV objects, only the first
one is meaningful; subsequent DIFFSERV object(s) must be ignored and
not forwarded.
Each LSR along the path records the DIFFSERV object, when present, in
its path state block.
If a DIFFSERV object is not present in the Path message, the LSR
SHOULD interpret this as a request for an E-LSP using the
Preconfigured `EXP<-->PHB mapping'. However, for backward
compatibility purposes, with other non-Diff-Serv Quality of Service
options allowed by [RSVP_MPLS_TE] such as Integrated Services
Controlled Load or Guaranteed Services, the LSR MAY support a
configurable "override option". When this "override option" is
configured, the LSR interprets a path message without a Diff-Serv
object as a request for an LSP with such non-Diff-Serv Quality of
Service.
If a DIFFSERV object for an E-LSP containing no MAP entry is present
in the Path message, the LSR MUST interpret this as a request for an
E-LSP using the Preconfigured `EXP<-->PHB mapping'. In particular,
this allows an LSR with the "override option" configured to support
E-LSPs with Preconfigured `EXP<-->PHB mapping', simultaneously with
LSPs with non-Diff-Serv Quality of Service.
If a DIFFSERV object for an E-LSP containing at least one MAP entry
is present in the Path message, the LSR MUST interpret this as a
request for an E-LSP with signaled `EXP<-->PHB mapping'.
If a DIFFSERV object for an L-LSP is present in the Path message, the
LSR MUST interpret this as a request for an L-LSP.
Le Faucheur, et. al. Standards Track [Page 38]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
The destination LSR of an E-LSP or L-LSP responds to the Path message
containing the LABEL_REQUEST object by sending a Resv message:
- with the LABEL object
- without a DIFFSERV object.
Assuming the label request is accepted and a label is allocated, the
Diff-Serv LSRs (sender, destination, intermediate nodes) must:
- update the Diff-Serv Context associated with the established LSPs
in their ILM/FTN as specified in previous sections (incoming and
outgoing label),
- install the required Diff-Serv forwarding treatment (scheduling
and dropping behavior) for this NHLFE (outgoing label).
An LSR that recognizes the DIFFSERV object and that receives a path
message which contains the DIFFSERV object but which does not contain
a LABEL_REQUEST object or which does not have a session type of
LSP_Tunnel_IPv4, sends a PathErr towards the sender with the error
code `Diff-Serv Error' and an error value of `Unexpected DIFFSERV
object'. Those are defined below in section 5.5.
An LSR receiving a Path message with the DIFFSERV object for E-LSP,
which recognizes the DIFFSERV object but does not support the
particular PHB encoded in one, or more, of the MAP entries, sends a
PathErr towards the sender with the error code `Diff-Serv Error' and
an error value of `Unsupported PHB'. Those are defined below in
section 5.5.
An LSR receiving a Path message with the DIFFSERV object for E-LSP,
which recognizes the DIFFSERV object but determines that the signaled
`EXP<-->PHB mapping' is invalid, sends a PathErr towards the sender
with the error code `Diff-Serv Error' and an error value of Invalid
`EXP<-->PHB mapping'. Those are defined below in section 5.5. `The
EXP<-->PHB mapping' signaled in the DIFFSERV Object for an E-LSP is
invalid when:
- the MAPnb field is not within the range 0 to 8 or
- a given EXP value appears in more than one MAP entry, or
- the PHBID encoding is invalid.
Le Faucheur, et. al. Standards Track [Page 39]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
An LSR receiving a Path message with the DIFFSERV object for L-LSP,
which recognizes the DIFFSERV object but does not support the
particular PSC encoded in the PSC field, sends a PathErr towards the
sender with the error code `Diff-Serv Error' and an error value of
`Unsupported PSC'. Those are defined below in section 5.5.
An LSR receiving a Path message with the DIFFSERV object, which
recognizes the DIFFSERV object but that is unable to allocate the
required per-LSP Diff-Serv context sends a PathErr with the error
code "Diff-Serv Error" and the error value "Per-LSP context
allocation failure". Those are defined below in section 5.5.
A Diff-Serv LSR MUST handle the situations where the label request
can not be accepted for reasons other than those already discussed in
this section, in accordance with [RSVP_MPLS_TE] (e.g., reservation
rejected by admission control, a label can not be associated).
5.4 Non-support of the DIFFSERV Object
An LSR that does not recognize the DIFFSERV object Class-Num MUST
behave in accordance with the procedures specified in [RSVP] for an
unknown Class-Num whose format is 0bbbbbbb i.e., it must send a
PathErr with the error code `Unknown object class' toward the sender.
An LSR that recognize the DIFFSERV object Class-Num but does not
recognize the DIFFSERV object C-Type, must behave in accordance with
the procedures specified in [RSVP] for an unknown C-type i.e., it
must send a PathErr with the error code `Unknown object C-Type'
toward the sender.
In both situations, this causes the path set-up to fail. The sender
should notify management that a L-LSP cannot be established and
should possibly take action to retry LSP establishment without the
DIFFSERV object (e.g., attempt to use E-LSPs with Preconfigured
`EXP<-->PHB mapping' as a fall-back strategy).
5.5 Error Codes For Diff-Serv
In the procedures described above, certain errors must be reported as
a `Diff-Serv Error'. The value of the `Diff-Serv Error' error code
is 27.
Le Faucheur, et. al. Standards Track [Page 40]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
The following defines error values for the Diff-Serv Error:
Value Error
1 Unexpected DIFFSERV object
2 Unsupported PHB
3 Invalid `EXP<-->PHB mapping'
4 Unsupported PSC
5 Per-LSP context allocation failure
5.6 Intserv Service Type
Both E-LSPs and L-LSPs can be established with or without bandwidth
reservation.
As specified in [RSVP_MPLS_TE], to establish an E-LSP or an L-LSP
with bandwidth reservation, Int-Serv's Controlled Load service (or
possibly Guaranteed Service) is used and the bandwidth is signaled in
the SENDER_TSPEC (respectively FLOWSPEC) of the path (respectively
Resv) message.
As specified in [RSVP_MPLS_TE],to establish an E-LSP or an L-LSP
without bandwidth reservation, the Null Service specified in [NULL]
is used.
Note that this specification defines usage of E-LSPs and L-LSPs for
support of the Diff-Serv service only. Regardless of the Intserv
service (Controlled Load, Null Service, Guaranteed Service,...) and
regardless of whether the reservation is with or without bandwidth
reservation, E-LSPs and L-LSPs are defined here for support of Diff-
Serv services. Support of Int-Serv services over an MPLS Diff-Serv
backbone is outside the scope of this specification.
Note also that this specification does not concern itself with the
DCLASS object defined in [DCLASS], since this object conveys
information on DSCP values, which are not relevant inside the MPLS
network.
6. LDP Extensions for Diff-Serv Support
The MPLS architecture does not assume a single label distribution
protocol. [LDP] defines the Label Distribution Protocol and its
usage for establishment of label switched paths (LSPs) in MPLS
networks. This section specifies the extensions to LDP to establish
LSPs supporting Differentiated Services in MPLS networks.
Le Faucheur, et. al. Standards Track [Page 41]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
One new LDP TLV is defined in this document:
- the Diff-Serv TLV
Detailed description of this TLV is provided below.
The new Diff-Serv TLV is optional with respect to LDP. A Diff-Serv
capable LSR supporting E-LSPs which uses the Preconfigured `EXP<--
>PHB mapping' in compliance with this specification MAY support the
Diff-Serv TLV. A Diff-Serv capable LSR supporting E-LSPs which uses
the signaled `EXP<-->PHB mapping' in compliance with this
specification MUST support the Diff-Serv TLV. A Diff-Serv capable
LSR supporting L-LSPs in compliance with this specification MUST
support the Diff-Serv TLV.
6.1 Diff-Serv TLV
The Diff-Serv TLV has the following formats:
Diff-Serv TLV for an E-LSP:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|U|F| Diff-Serv (0x0901) | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|T| Reserved | MAPnb |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MAP (1) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MAP (MAPnb) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
T:1 bit
LSP Type. This is set to 0 for an E-LSP
Reserved : 27 bits
This field is reserved. It must be set to zero on transmission
and must be ignored on receipt.
MAPnb : 4 bits
Indicates the number of MAP entries included in the DIFFSERV
Object. This can be set to any value from 1 to 8.
Le Faucheur, et. al. Standards Track [Page 42]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
MAP : 32 bits
Each MAP entry defines the mapping between one EXP field value
and one PHB. The MAP entry has the following format:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved | EXP | PHBID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Reserved : 13 bits
This field is reserved. It must be set to zero on transmission
and must be ignored on receipt.
EXP : 3 bits
This field contains the value of the EXP field for the
`EXP<-->PHB mapping' defined in this MAP entry.
PHBID : 16 bits
This field contains the PHBID of the PHB for the `EXP<-->PHB
mapping' defined in this MAP entry. The PHBID is encoded as
specified in [PHBID].
Diff-Serv TLV for an L-LSP:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|U|F| Type = PSC (0x0901) | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|T| Reserved | PSC |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
T:1 bit
LSP Type. This is set to 1 for an L-LSP
Reserved : 15 bits
This field is reserved. It must be set to zero on transmission
and must be ignored on receipt.
PSC : 16 bits
The PSC indicates a PHB Scheduling Class to be supported by the
LSP. The PSC is encoded as specified in [PHBID].
Le Faucheur, et. al. Standards Track [Page 43]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
6.2 Diff-Serv Status Code Values
The following values are defined for the Status Code field of the
Status TLV:
Status Code E Status Data
Unexpected Diff-Serv TLV 0 0x01000001
Unsupported PHB 0 0x01000002
Invalid `EXP<-->PHB mapping' 0 0x01000003
Unsupported PSC 0 0x01000004
Per-LSP context allocation failure 0 0x01000005
6.3 Diff-Serv Related LDP Messages
6.3.1 Label Request Message
The format of the Label Request message is extended as follows, to
optionally include the Diff-Serv TLV:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0| Label Request (0x0401) | Message Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Message ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| FEC TLV |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Diff-Serv TLV (optional) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Le Faucheur, et. al. Standards Track [Page 44]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
6.3.2 Label Mapping Message
The format of the Label Mapping message is extended as follows, to
optionally include the Diff-Serv TLV:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0| Label Mapping (0x0400) | Message Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Message ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| FEC TLV |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Label TLV |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Diff-Serv TLV (optional) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
6.3.3 Label Release Message
The format of the Label Release message is extended as follows, to
optionally include the Status TLV:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0| Label Release (0x0403) | Message Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Message ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| FEC TLV |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Label TLV (optional) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Status TLV (optional) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Le Faucheur, et. al. Standards Track [Page 45]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
6.3.4 Notification Message
The format of the Notification message is extended as follows, to
optionally include the Diff-Serv TLV:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0| Notification (0x0001) | Message Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Message ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Status TLV |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Optional Parameters |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Diff-Serv TLV (optional) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
6.4 Handling of the Diff-Serv TLV
6.4.1 Handling of the Diff-Serv TLV in Downstream Unsolicited Mode
This section describes operations when the Downstream Unsolicited
Mode is used.
When allocating a label for an E-LSP which is to use the
preconfigured `EXP<-->PHB mapping', a downstream Diff-Serv LSR issues
a Label Mapping message without the Diff-Serv TLV.
When allocating a label for an E-LSP which is to use a signaled
`EXP<-->PHB mapping', a downstream Diff-Serv LSR issues a Label
Mapping message with the Diff-Serv TLV for an E-LSP which contains
one MAP entry for each EXP value to be supported on this E-LSP.
When allocating a label for an L-LSP, a downstream Diff-Serv LSR
issues a Label Mapping message with the Diff-Serv TLV for an L-LSP
which contains the PHB Scheduling Class (PSC) to be supported on this
L-LSP.
Assuming the label set-up is successful, the downstream and upstream
LSRs must:
- update the Diff-Serv Context associated with the established LSPs
in their ILM/FTN as specified in previous sections (incoming and
outgoing label),
Le Faucheur, et. al. Standards Track [Page 46]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- install the required Diff-Serv forwarding treatment (scheduling
and dropping behavior) for this NHLFE (outgoing label).
An upstream Diff-Serv LSR receiving a Label Mapping message with
multiple Diff-Serv TLVs only considers the first one as meaningful.
The LSR must ignore and not forward the subsequent Diff-Serv TLV(s).
An upstream Diff-Serv LSR which receives a Label Mapping message,
with the Diff-Serv TLV for an E-LSP and does not support the
particular PHB encoded in one or more of the MAP entries, must reject
the mapping by sending a Label Release message which includes the
Label TLV and the Status TLV with a Status Code of `Unsupported PHB'.
An upstream Diff-Serv LSR receiving a Label Mapping message with the
Diff-Serv TLV for an E-LSP and determining that the signaled
`EXP<-->PHB mapping' is invalid, must reject the mapping by sending a
Label Release message which includes the Label TLV and the Status TLV
with a Status Code of Invalid `EXP<-->PHB mapping'. The
`EXP<-->PHB mapping' signaled in the DIFFSERV Object for an E-LSP is
invalid when:
- the MAPnb field is not within the range 1 to 8, or
- a given EXP value appears in more than one MAP entry, or
- the PHBID encoding is invalid
An upstream Diff-Serv LSR receiving a Label Mapping message with the
Diff-Serv TLV for an L-LSP containing a PSC value which is not
supported, must reject the mapping by sending a Label Release message
which includes the Label TLV and the Status TLV with a Status Code of
`Unsupported PSC'.
6.4.2 Handling of the Diff-Serv TLV in Downstream on Demand Mode
This section describes operations when the Downstream on Demand Mode
is used.
When requesting a label for an E-LSP which is to use the
preconfigured `EXP<-->PHB mapping', an upstream Diff-Serv LSR sends a
Label Request message without the Diff-Serv TLV.
When requesting a label for an E-LSP which is to use a signaled
`EXP<-->PHB mapping', an upstream Diff-Serv LSR sends a Label Request
message with the Diff-Serv TLV for an E-LSP which contains one MAP
entry for each EXP value to be supported on this E-LSP.
Le Faucheur, et. al. Standards Track [Page 47]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
When requesting a label for an L-LSP, an upstream Diff-Serv LSR sends
a Label Request message with the Diff-Serv TLV for an L-LSP which
contains the PSC to be supported on this L-LSP.
A downstream Diff-Serv LSR sending a Label Mapping message in
response to a Label Request message for an E-LSP or an L-LSP must not
include a Diff-Serv TLV in this Label Mapping message. Assuming the
label set-up is successful, the downstream and upstream LSRs must:
- update the Diff-Serv Context associated with the established LSPs
in their ILM/FTN as specified in previous sections (incoming and
outgoing label),
- install the required Diff-Serv forwarding treatment (scheduling
and dropping behavior) for this NHLFE (outgoing label).
An upstream Diff-Serv LSR receiving a Label Mapping message
containing a Diff-Serv TLV in response to its Label Request message,
must reject the label mapping by sending a Label Release message
which includes the Label TLV and the Status TLV with a Status Code of
`Unexpected Diff-Serv TLV'.
A downstream Diff-Serv LSR receiving a Label Request message with
multiple Diff-Serv TLVs only considers the first one as meaningful.
The LSR must ignore and not forward the subsequent Diff-Serv TLV(s).
A downstream Diff-Serv LSR which receives a Label Request message
with the Diff-Serv TLV for an E-LSP and does not support the
particular PHB encoded in one (or more) of the MAP entries, must
reject the request by sending a Notification message which includes
the Status TLV with a Status Code of `Unsupported PHB'.
A downstream Diff-Serv LSR receiving a Label Request message with the
Diff-Serv TLV for an E-LSP and determining that the signaled
`EXP<-->PHB mapping' is invalid, must reject the request by sending a
Notification message which includes the Status TLV with a Status Code
of Invalid `EXP<-->PHB mapping'. The `EXP<-->PHB mapping' signaled
in the DIFFSERV TLV for an E-LSP is invalid when:
- the MAPnb field is not within the range 1 to 8, or
- a given EXP value appears in more than one MAP entry, or
- the PHBID encoding is invalid
Le Faucheur, et. al. Standards Track [Page 48]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
A downstream Diff-Serv LSR receiving a Label Request message with the
Diff-Serv TLV for an L-LSP containing a PSC value which is not
supported, must reject the request by sending a Notification message
which includes the Status TLV with a Status Code of `Unsupported
PSC'.
A downstream Diff-Serv LSR that recognizes the Diff-Serv TLV Type in
a Label Request message but is unable to allocate the required per-
LSP context information, must reject the request sending a
Notification message which includes the Status TLV with a Status Code
of `Per-LSP context allocation failure'.
A downstream Diff-Serv LSR that recognizes the Diff-Serv TLV Type in
a Label Request message and supports the requested PSC but is not
able to satisfy the label request for other reasons (e.g., no label
available), must send a Notification message in accordance with
existing LDP procedures [LDP] (e.g., with a `No Label Resource'
Status Code). This Notification message must include the requested
Diff-Serv TLV.
6.5 Non-Handling of the Diff-Serv TLV
An LSR that does not recognize the Diff-Serv TLV Type, on receipt of
a Label Request message or a Label Mapping message containing the
Diff-Serv TLV, must behave in accordance with the procedures
specified in [LDP] for an unknown TLV whose U Bit and F Bit are set
to 0 i.e., it must ignore the message, return a Notification message
with `Unknown TLV' Status.
6.6 Bandwidth Information
Bandwidth information may also be signaled at the establishment time
of E-LSP and L-LSP, for instance for the purpose of Traffic
Engineering, using the Traffic Parameters TLV as described in [MPLS
CR LDP].
7. MPLS Support of Diff-Serv over PPP, LAN, Non-LC-ATM and Non-LC-FR
Interfaces
The general operations for MPLS support of Diff-Serv, including label
forwarding and LSP setup operations are specified in the previous
sections. This section describes the specific operations required
for MPLS support of Diff-Serv over PPP interfaces, LAN interfaces,
ATM Interfaces which are not label controlled and Frame Relay
interfaces which are not label controlled.
On these interfaces, this specification allows any of the following
LSP combinations per FEC:
Le Faucheur, et. al. Standards Track [Page 49]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- Zero or any number of E-LSP, and
- Zero or any number of L-LSPs.
A Diff-Serv capable LSR MUST support E-LSPs which use preconfigured
`EXP<-->PHB mapping' over these interfaces.
A Diff-Serv capable LSR MAY support E-LSPs which use signaled
`EXP<-->PHB mapping' and L-LSPs over these interfaces.
8. MPLS Support of Diff-Serv over LC-ATM Interfaces
This section describes the specific operations required for MPLS
support of Diff-Serv over label switching controlled ATM (LC-ATM)
interfaces.
This document allows any number of L-LSPs per FEC within an MPLS ATM
Diff-Serv domain. E-LSPs are not supported over LC-ATM interfaces.
8.1 Use of ATM Traffic Classes and Traffic Management mechanisms
The use of the "ATM service categories" specified by the ATM Forum,
of the "ATM Transfer Capabilities" specified by the ITU-T or of
vendor specific ATM traffic classes is outside of the scope of this
specification. The only requirement for compliant implementation is
that the forwarding behavior experienced by a Behavior Aggregate
forwarded over an L-LSP by the ATM LSR MUST be compliant with the
corresponding Diff-Serv PHB specifications.
Since there is only one bit (CLP) for encoding the PHB drop
precedence value over ATM links, only two different drop precedence
levels are supported in ATM LSRs. Sections 4.2.2 and 4.4.2 define
how the three drop precedence levels of the AFn Ordered Aggregates
are mapped to these two ATM drop precedence levels. This mapping is
in accordance with the requirements specified in [DIFF_AF] for the
case when only two drop precedence levels are supported.
To avoid discarding parts of the packets, frame discard mechanisms,
such as Early Packet Discard (EPD) (see [ATMF_TM]) SHOULD be enabled
in the ATM-LSRs for all PHBs described in this document.
8.2 LSR Implementation With LC-ATM Interfaces
A Diff-Serv capable LSR MUST support L-LSPs over LC-ATM interfaces.
This specification assumes that Edge-LSRs of the ATM-LSR domain use
the "shim header" encapsulation method defined in [MPLS_ATM].
Operations without the "shim header" encapsulation are outside the
scope of this specification.
Le Faucheur, et. al. Standards Track [Page 50]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
9. MPLS Support of Diff-Serv over LC-FR Interfaces
This section describes the specific operations required for MPLS
support of Diff-Serv over label switching controlled Frame Relay
(LC-FR) interfaces.
This document allows any number of L-LSPs per FEC within an MPLS
Frame Relay Diff-Serv domain. E-LSPs are not supported over LC-FR
interfaces.
9.1 Use of Frame Relay Traffic parameters and Traffic Management
mechanisms
The use of the Frame Relay traffic parameters as specified by ITU-T
and Frame Relay-Forum or of vendor specific Frame Relay traffic
management mechanisms is outside of the scope of this specification.
The only requirement for compliant implementation is that the
forwarding behavior experienced by a Behavior Aggregate forwarded
over an L-LSP by the Frame Relay LSR MUST be compliant with the
corresponding Diff-Serv PHB specifications.
Since there is only one bit (DE) for encoding the PHB drop precedence
value over Frame Relay links, only two different drop precedence
levels are supported in Frame Relay LSRs. Sections 4.2.3 and 4.4.3
define how the three drop precedence levels of the AFn Ordered
Aggregates are mapped to these two Frame Relay drop precedence
levels. This mapping is in accordance with the requirements
specified in [DIFF_AF] for the case when only two drop precedence
levels are supported.
9.2 LSR Implementation With LC-FR Interfaces
A Diff-Serv capable LSR MUST support L-LSPs over LC-Frame Relay
interfaces.
This specification assumes that Edge-LSRs of the FR-LSR domain use
the "generic encapsulation" method as recommended in [MPLS_FR].
Operations without the "generic encapsulation" are outside the scope
of this specification.
Le Faucheur, et. al. Standards Track [Page 51]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
10. IANA Considerations
This document defines a number of objects with implications for IANA.
This document defines in section 5.2 a new RSVP object, the DIFFSERV
object. This object required a number from the space defined in
[RSVP] for those objects which, if not understood, cause the entire
RSVP message to be rejected with an error code of "Unknown Object
Class". Such objects are identified by a zero in the most
significant bit of the class number. Within that space, this object
required a number from the "IETF Consensus" space. "65" has been
allocated by IANA for the DIFFSERV object.
This document defines in section 5.5 a new RSVP error code, "Diffserv
Error". Error code "27" has been assigned by IANA to the "Diffserv
Error". This document defines values 1 through 5 of the value field
to be used within the ERROR_SPEC object for this error code. Future
allocations of values in this space should be handled by IANA using
the First Come First Served policy defined in [IANA].
This document defines in section 6.1 a new LDP TLV, the Diffserv TLV.
The number for this TLV has been assigned by working group consensus
according to the policies defined in [LDP].
This document defines in section 6.2 five new LDP Status Code values
for Diffserv-related error conditions. The values for the Status
Code have been assigned by working group consensus according to the
policies defined in [LDP].
11. Security Considerations
This document does not introduce any new security issues beyond those
inherent in Diff-Serv, MPLS and RSVP, and may use the same mechanisms
proposed for those technologies.
12. Acknowledgments
This document has benefited from discussions with Eric Rosen, Angela
Chiu and Carol Iturralde. It has also borrowed from the work done by
D. Black regarding Diff-Serv and IP Tunnels interaction.
Le Faucheur, et. al. Standards Track [Page 52]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
APPENDIX A. Example Deployment Scenarios
This section does not provide additional specification and is only
here to provide examples of how this flexible approach for Diff-Serv
support over MPLS may be deployed. Pros and cons of various
deployment options for particular environments are beyond the scope
of this document.
A.1 Scenario 1: 8 (or fewer) BAs, no Traffic Engineering, no MPLS
Protection
A Service Provider running 8 (or fewer) BAs over MPLS, not performing
Traffic engineering, not using MPLS protection and using MPLS Shim
Header encapsulation in his/her network, may elect to run Diff-Serv
over MPLS using a single E-LSP per FEC established via LDP.
Furthermore the Service Provider may elect to use the preconfigured
`EXP<-->PHB mapping'.
Operations can be summarized as follows:
- the Service Provider configures at every LSR, the bi-directional
mapping between each PHB and a value of the EXP field
(e.g., 000<-->AF11, 001<-->AF12, 010<-->AF13)
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC (e.g., bandwidth
allocated to AF1) and the dropping behavior for each PHB (e.g.,
drop profile for AF11, AF12, AF13)
- LSRs signal establishment of a single E-LSP per FEC using LDP in
accordance with the specification above (i.e., no Diff-Serv TLV in
LDP Label Request/Label Mapping messages to implicitly indicate
that the LSP is an E-LSP and that it uses the preconfigured
mapping)
A.2 Scenario 2: More than 8 BAs, no Traffic Engineering, no MPLS
Protection
A Service Provider running more than 8 BAs over MPLS, not performing
Traffic Engineering, not using MPLS protection and using MPLS Shim
encapsulation in his/her network may elect to run Diff-Serv over MPLS
using for each FEC:
- one E-LSP established via LDP and using the preconfigured mapping
to support a set of 8 (or less) BAs, AND
- one L-LSP per <FEC,OA> established via LDP for support of the
other BAs.
Le Faucheur, et. al. Standards Track [Page 53]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Operations can be summarized as follows:
- the Service Provider configures at every LSR the bi-directional
mapping between each PHB and a value of the EXP field for the BAs
transported over the E-LSP
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC supported over the
E-LSP and the dropping behavior for each corresponding PHB
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC supported over the
L-LSPs and the dropping behavior for each corresponding PHB
- LSRs signal establishment of a single E-LSP per FEC for the set of
E-LSP transported BAs using LDP as specified above (i.e., no
Diff-Serv TLV in LDP Label Request/Label Mapping messages to
implicitly indicate that the LSP is an E-LSP and that it uses the
preconfigured mapping)
- LSRs signal establishment of one L-LSP per <FEC,OA> for the other
BAs using LDP as specified above (i.e., Diff-Serv TLV in LDP Label
Request/Label Mapping messages to indicate the L-LSP's PSC).
A.3 Scenario 3: 8 (or fewer) BAs, Aggregate Traffic Engineering,
Aggregate MPLS Protection
A Service Provider running 8 (or fewer) BAs over MPLS, performing
aggregate Traffic Engineering (i.e., performing a single common path
selection for all BAs), using aggregate MPLS protection (i.e.,
restoring service to all PSCs jointly) and using MPLS Shim Header
encapsulation in his/her network, may elect to run Diff-Serv over
MPLS using a single E-LSP per FEC established via RSVP [RSVP_MPLS_TE]
or CR-LDP [CR-LDP_MPLS_TE] and using the preconfigured mapping.
Operations can be summarized as follows:
- the Service Provider configures at every LSR the bi-directional
mapping between each PHB and a value of the EXP field
(e.g., 000<-->AF11, 001<-->AF12, 010<-->AF13)
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC (e.g., bandwidth
allocated to AF1) and the dropping behavior for each PHB (eg drop
profile for AF11, AF12, AF13)
- LSRs signal establishment of a single E-LSP per FEC which will use
the preconfigured mapping:
Le Faucheur, et. al. Standards Track [Page 54]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
* using the RSVP protocol as specified above (i.e., no DIFFSERV
RSVP Object in the PATH message containing the LABEL_REQUEST
Object), OR
* using the CR-LDP protocol as specified above (i.e., no Diff-
Serv TLV in LDP Label Request/Label Mapping messages).
- protection is activated on all the E-LSPs in order to achieve MPLS
protection via mechanisms outside the scope of this document.
A.4 Scenario 4: per-OA Traffic Engineering/MPLS Protection
A Service Provider running any number of BAs over MPLS, performing
per-OA Traffic Engineering (i.e., performing a separate path
selection for each OA) and performing per-OA MPLS protection (i.e.,
performing protection with potentially different levels of protection
for the different OAs) in his/her network, may elect to run Diff-Serv
over MPLS using one L-LSP per <FEC,OA> pair established via RSVP or
CR-LDP.
Operations can be summarized as follows:
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC (e.g., bandwidth
allocated to AF1) and the dropping behavior for each PHB (e.g.,
drop profile for AF11, AF12, AF13)
- LSRs signal establishment of one L-LSP per <FEC,OA>:
* using the RSVP as specified above to signal the L-LSP's PSC
(i.e., DIFFSERV RSVP Object in the PATH message containing the
LABEL_REQUEST), OR
* using the CR-LDP protocol as specified above to signal the L-
LSP PSC (i.e., Diff-Serv TLV in LDP Label Request/Label Mapping
messages).
- the appropriate level of protection is activated on the different
L-LSPs (potentially with a different level of protection for each
PSC) via mechanisms outside the scope of this document.
Le Faucheur, et. al. Standards Track [Page 55]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
A.5 Scenario 5: 8 (or fewer) BAs, per-OA Traffic Engineering/MPLS
Protection
A Service Provider running 8 (or fewer) BAs over MPLS, performing
per-OA Traffic Engineering (i.e., performing a separate path
selection for each OA) and performing per-OA MPLS protection (i.e.,
performing protection with potentially different levels of protection
for the different OAs) in his/her network, may elect to run Diff-Serv
over MPLS using one E-LSP per <FEC,OA> pair established via RSVP or
CR-LDP. Furthermore, the Service Provider may elect to use the
preconfigured mapping on all the E-LSPs.
Operations can be summarized as follows:
- the Service Provider configures at every LSR the bi-directional
mapping between each PHB and a value of the EXP field
(e.g., 000<-->AF11, 001<-->AF12, 010<-->AF13)
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC (e.g., bandwidth
allocated to AF1) and the dropping behavior for each PHB (eg drop
profile for AF11, AF12, AF13)
- LSRs signal establishment of one E-LSP per <FEC,OA>:
* using the RSVP protocol as specified above to signal that the
LSP is an E-LSP which uses the preconfigured mapping (i.e., no
DIFFSERV RSVP Object in the PATH message containing the
LABEL_REQUEST), OR
* using the CR-LDP protocol as specified above to signal that the
LSP is an E-LSP which uses the preconfigured mapping (i.e., no
Diff-Serv TLV in LDP Label Request/Label Mapping messages)
- the Service Provider configures, for each E-LSP, at the head-end
of that E-LSP, a filtering/forwarding criteria so that only the
packets belonging to a given OA are forwarded on the E-LSP
established for the corresponding FEC and corresponding OA.
- the appropriate level of protection is activated on the different
E-LSPs (potentially with a different level of protection depending
on the PSC actually transported over each E-LSP) via mechanisms
outside the scope of this document.
Le Faucheur, et. al. Standards Track [Page 56]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
A.6 Scenario 6: no Traffic Engineering/MPLS Protection on 8 BAs, per-OA
Traffic Engineering/MPLS Protection on other BAs.
A Service Provider not performing Traffic Engineering/MPLS Protection
on 8 (or fewer) BAs, performing per-OA Traffic Engineering/MPLS
Protection on the other BAs (i.e., performing a separate path
selection for each OA corresponding to the other BAs and performing
MPLS Protection with a potentially different policy for each of these
OA) and using the MPLS Shim encapsulation in his/her network may
elect to run Diff-Serv over MPLS, using for each FEC:
- one E-LSP using the preconfigured mapping established via LDP to
support the set of 8 (or fewer) non-traffic-engineered/non-
protected BAs, AND
- one L-LSP per <FEC,OA> pair established via RSVP or CR-LDP for
support of the other BAs.
Operations can be summarized as follows:
- the Service Provider configures at every LSR the bi-directional
mapping between each PHB and a value of the EXP field for the BAs
supported over the E-LSP
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC supported over the
E-LSP and the dropping behavior for each corresponding PHB
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC supported over the
L-LSPs and the dropping behavior for each corresponding PHB
- LSRs signal establishment of a single E-LSP per FEC for the non-
traffic engineered BAs using LDP as specified above (i.e., no
Diff-Serv TLV in LDP Label Request/Label Mapping messages)
- LSRs signal establishment of one L-LSP per <FEC,OA> for the other
BAs:
* using the RSVP protocol as specified above to signal the L-LSP
PSC (i.e., DIFFSERV RSVP Object in the PATH message containing
the LABEL_REQUEST Object), OR
* using the CR-LDP protocol as specified above to signal the L-
LSP PSC (i.e., Diff-Serv TLV in LDP Label Request/Label Mapping
messages).
Le Faucheur, et. al. Standards Track [Page 57]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
- protection is not activated on the E-LSPs.
- the appropriate level of protection is activated on the different
L-LSPs (potentially with a different level of protection depending
on the L-LSP's PSC) via mechanisms outside the scope of this
document.
A.7 Scenario 7: More than 8 BAs, no Traffic Engineering, no MPLS
Protection
A Service Provider running more than 8 BAs over MPLS, not performing
Traffic engineering, not performing MPLS protection and using MPLS
Shim Header encapsulation in his/her network, may elect to run Diff-
Serv over MPLS using two E-LSPs per FEC established via LDP and using
signaled `EXP<-->PHB mapping'.
Operations can be summarized as follows:
- the Service Provider configures at every LSR, and for every
interface, the scheduling behavior for each PSC (e.g., bandwidth
allocated to AF1) and the dropping behavior for each PHB (e.g.,
drop profile for AF11, AF12, AF13)
- LSRs signal establishment of two E-LSPs per FEC using LDP in
accordance with the specification above (i.e., Diff-Serv TLV in
LDP Label Request/Label Mapping messages to explicitly indicate
that the LSP is an E-LSP and its `EXP<-->PHB mapping'). The
signaled mapping will indicate the subset of 8 (or less) BAs to be
transported on each E-LSP and what EXP values are mapped to each
BA on each E-LSP.
APPENDIX B. Example Bandwidth Reservation Scenarios
B.1 Scenario 1: No Bandwidth Reservation
Consider the case where a network administrator elects to:
- have Diff-Serv resources entirely provisioned off-line (e.g., via
Command Line Interface, via SNMP, via COPS,...)
- have Shortest Path Routing used for all the Diff-Serv traffic.
This is the closest model to provisioned Diff-Serv over non-MPLS IP.
In that case, E-LSPs and/or L-LSPs would be established without
signaled bandwidth.
Le Faucheur, et. al. Standards Track [Page 58]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
B.2 Scenario 2: Bandwidth Reservation for per-PSC Admission Control
Consider the case where a network administrator elects to:
- have Diff-Serv resources entirely provisioned off-line (e.g., via
Command Line Interface, via SNMP, via COPS,...)
- use L-LSPs
- have Constraint Based Routing performed separately for each PSC,
where one of the constraints is availability of bandwidth from the
bandwidth allocated to the relevant PSC.
In that case, L-LSPs would be established with signaled bandwidth.
The bandwidth signaled at L-LSP establishment would be used by LSRs
to perform admission control at every hop to ensure that the
constraint on availability of bandwidth for the relevant PSC is met.
B.3 Scenario 3: Bandwidth Reservation for per-PSC Admission Control and
per-PSC Resource Adjustment
Consider the case where a network administrator elects to:
- use L-LSPs
- have Constraint Based Routing performed separately for each PSC,
where one of the constraints is availability of bandwidth from the
bandwidth allocated to the relevant PSC.
- have Diff-Serv resources dynamically adjusted
In that case, L-LSPs would be established with signaled bandwidth.
The bandwidth signaled at L-LSP establishment would be used by LSRs
to attempt to adjust the resources allocated to the relevant PSC
(e.g., scheduling weight) and then perform admission control to
ensure that the constraint on availability of bandwidth for the
relevant PSC is met after the adjustment.
Le Faucheur, et. al. Standards Track [Page 59]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
References
[ANSI/IEEE] ANSI/IEEE Std 802.1D, 1993 Edition, incorporating
IEEE supplements P802.1p, 802.1j-1996, 802.6k-1992,
802.11c-1998, and P802.12e).
[ATMF_TM] ATM Forum, "Traffic Management Specification Version
4.1", March 1999.
[CR-LDP_MPLS_TE] Jamoussi, B., Editor, Andersson, L., Callon, R. and
R. Dantu, "Constraint-Based LSP Setup using LDP",
RFC 3212, January 2002.
[DCLASS] Bernet, Y., "Format of the RSVP DCLASS Object", RFC
2996, November 2000.
[DIFF_AF] Heinanen, J., Baker, F., Weiss, W. and J.
Wroclawski, "Assured Forwarding PHB Group", RFC
2597, June 1999.
[DIFF_ARCH] Blake, S., Black, D., Carlson, M., Davies, E., Wang,
Z. and W. Weiss, "An Architecture for Differentiated
Services", RFC 2475, December 1998.
[DIFF_EF] Davie, B., Charny, A., Baker, F., Bennet, J.,
Benson, K., Boudec, J., Chiu, A., Courtney, W.,
Davari, S., Firoiu, V., Kalmanek, C., Ramakrishnam,
K. and D. Stiliadis, "An Expedited Forwarding PHB
(Per-Hop Behavior)", RFC 3246, March 2002.
[DIFF_HEADER] Nichols, K., Blake, S., Baker, F. and D. Black,
"Definition of the Differentiated Services Field (DS
Field) in the IPv4 and IPv6 Headers", RFC 2474,
December 1998.
[DIFF_NEW] Grossman, D., "New Terminology and Clarifications
for Diffserv", RFC 3260, April 2002.
[DIFF_TUNNEL] Black, D., "Differentiated Services and Tunnels",
RFC 2983, October 2000.
[ECN] Ramakrishnan, K., Floyd, S. and D. Black, "The
Addition of Explicit Congestion Notification (ECN)
to IP", RFC 3168, September 2001.
[IANA] Narten, T. and H. Alvestrand, "Guidelines for
Writing an IANA Considerations Section in RFCs", BCP
26, RFC 2434, October 1998.
Le Faucheur, et. al. Standards Track [Page 60]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
[IEEE_802.1] ISO/IEC 15802-3: 1998 ANSI/IEEE Std 802.1D, 1998
Edition (Revision and redesignation of ISO/IEC
10038:98.
[LDP] Andersson, L., Doolan, D., Feldman, N., Fredette, A.
and B. Thomas, "LDP Specification", RFC 3036,
January 2001.
[MPLS_ARCH] Rosen, E., Viswanathan, A. and R. Callon,
"Multiprotocol Label Switching Architecture", RFC
3031, January 2001.
[MPLS_ATM] Davie, B., Lawrence, J., McCloghrie, K., Rosen, E.,
Swallow, G., Rekhter, Y. and P. Doolan, "MPLS using
LDP and ATM VC Switching", RFC 3035, January 2001.
[MPLS_ENCAPS] Rosen, E., Tappan, D., Fedorkow, G., Rekhter, Y.,
Farinacci, D., Li, T. and A. Conta, "MPLS Label
Stack Encoding", RFC 3032, January 2001.
[MPLS_FR] Conta, A., Doolan, P. and A. Malis, "Use of Label
Switching on Frame Relay Networks Specification",
RFC 3034, January 2001.
[MPLS_VPN] Rosen, E., "BGP/MPLS VPNs", Work in Progress.
[NULL] Bernet, Y., Smith, A. and B. Davie, "Specification
of the Null Service Type", RFC 2997, November 2000.
[PHBID] Black, D., Brim, S., Carpenter, B. and F. Le
Faucheur, "Per Hop Behavior Identification Codes"
RFC 3140, June 2001.
[RSVP] Braden, R., Zhang, L., Berson, S., Herzog, S. and S.
Jamin, "Resource ReSerVation Protocol (RSVP) -
Version 1 Functional Specification", RFC 2205,
September 1997.
[RSVP_MPLS_TE] Awduche, D., Berger, L., Gan, D., Li, T.,
Srinivasan, V. and G. Swallow, "Extensions to RSVP
for LSP Tunnels", RFC 3209, December 2001.
Le Faucheur, et. al. Standards Track [Page 61]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Authors' Addresses
Francois Le Faucheur
Cisco Systems
Village d'Entreprise Green Side - Batiment T3
400, Avenue de Roumanille
06410 Biot-Sophia Antipolis
France
Phone: +33 4 97 23 26 19
EMail: flefauch@cisco.com
Liwen Wu
Cisco Systems
3550 Cisco Way
San Jose, CA 95134
USA
Phone: +1 (408) 853-4065
EMail: liwwu@cisco.com
Bruce Davie
Cisco Systems
250 Apollo Drive, Chelmsford, MA 01824
USA
Phone: +1 (978) 244-8000
EMail: bsd@cisco.com
Shahram Davari
PMC-Sierra Inc.
411 Legget Drive
Kanata, Ontario K2K 3C9
Canada
Phone: +1 (613) 271-4018
EMail: davari@ieee.org
Le Faucheur, et. al. Standards Track [Page 62]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Pasi Vaananen
Nokia
3 Burlington Woods Drive, Suit 250
Burlington, MA 01803
USA
Phone +1 (781) 993-4900
EMail: pasi.vaananen@nokia.com
Ram Krishnan
Axiowave Networks
200 Nickerson Road
Marlboro, MA 01752
EMail: ram@axiowave.com
Pierrick Cheval
Alcatel
5 rue Noel-Pons
92737 Nanterre Cedex
France
EMail: pierrick.cheval@space.alcatel.fr
Juha Heinanen
Song Networks, Inc.
Hallituskatu 16
33200 Tampere, Finland
EMail: jh@song.fi
Le Faucheur, et. al. Standards Track [Page 63]
^L
RFC 3270 MPLS Support of Differentiated Services May 2002
Full Copyright Statement
Copyright (C) The Internet Society (2002). 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.
Le Faucheur, et. al. Standards Track [Page 64]
^L
|