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
|
Internet Engineering Task Force (IETF) W. Sun, Ed.
Request for Comments: 5814 SJTU
Category: Standards Track G. Zhang, Ed.
ISSN: 2070-1721 CATR
March 2010
Label Switched Path (LSP) Dynamic Provisioning Performance Metrics
in Generalized MPLS Networks
Abstract
Generalized Multi-Protocol Label Switching (GMPLS) is one of the most
promising candidate technologies for a future data transmission
network. GMPLS has been developed to control and operate different
kinds of network elements, such as conventional routers, switches,
Dense Wavelength Division Multiplexing (DWDM) systems, Add-Drop
Multiplexers (ADMs), photonic cross-connects (PXCs), optical cross-
connects (OXCs), etc. These physically diverse devices differ
drastically from one another in dynamic provisioning ability. At the
same time, the need for dynamically provisioned connections is
increasing because optical networks are being deployed in metro
areas. As different applications have varied requirements in the
provisioning performance of optical networks, it is imperative to
define standardized metrics and procedures such that the performance
of networks and application needs can be mapped to each other.
This document provides a series of performance metrics to evaluate
the dynamic Label Switched Path (LSP) provisioning performance in
GMPLS networks, specifically the dynamic LSP setup/release
performance. These metrics can be used to characterize the features
of GMPLS networks in LSP dynamic provisioning.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in Section 2 of RFC 5741.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc5814.
Sun & Zhang Standards Track [Page 1]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
Copyright Notice
Copyright (c) 2010 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
Sun & Zhang Standards Track [Page 2]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
Table of Contents
1. Introduction ....................................................6
2. Conventions Used in This Document ...............................6
3. Overview of Performance Metrics .................................6
4. A Singleton Definition for Single Unidirectional LSP
Setup Delay .....................................................7
4.1. Motivation .................................................7
4.2. Metric Name ................................................7
4.3. Metric Parameters ..........................................8
4.4. Metric Units ...............................................8
4.5. Definition .................................................8
4.6. Discussion .................................................8
4.7. Methodologies ..............................................9
4.8. Metric Reporting ...........................................9
5. A Singleton Definition for Multiple Unidirectional LSPs
Setup Delay ....................................................10
5.1. Motivation ................................................10
5.2. Metric Name ...............................................10
5.3. Metric Parameters .........................................10
5.4. Metric Units ..............................................10
5.5. Definition ................................................11
5.6. Discussion ................................................11
5.7. Methodologies .............................................12
5.8. Metric Reporting ..........................................13
6. A Singleton Definition for Single Bidirectional LSP
Setup Delay ....................................................13
6.1. Motivation ................................................13
6.2. Metric Name ...............................................14
6.3. Metric Parameters .........................................14
6.4. Metric Units ..............................................14
6.5. Definition ................................................14
6.6. Discussion ................................................15
6.7. Methodologies .............................................15
6.8. Metric Reporting ..........................................16
7. A Singleton Definition for Multiple Bidirectional LSPs
Setup Delay ....................................................16
7.1. Motivation ................................................16
7.2. Metric Name ...............................................16
7.3. Metric Parameters .........................................17
7.4. Metric Units ..............................................17
7.5. Definition ................................................17
7.6. Discussion ................................................18
7.7. Methodologies .............................................19
7.8. Metric Reporting ..........................................19
8. A Singleton Definition for LSP Graceful Release Delay ..........20
8.1. Motivation ................................................20
8.2. Metric Name ...............................................20
Sun & Zhang Standards Track [Page 3]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
8.3. Metric Parameters .........................................20
8.4. Metric Units ..............................................20
8.5. Definition ................................................20
8.6. Discussion ................................................22
8.7. Methodologies .............................................22
8.8. Metric Reporting ..........................................23
9. A Definition for Samples of Single Unidirectional LSP
Setup Delay ....................................................24
9.1. Metric Name ...............................................24
9.2. Metric Parameters .........................................24
9.3. Metric Units ..............................................24
9.4. Definition ................................................24
9.5. Discussion ................................................25
9.6. Methodologies .............................................25
9.7. Typical Testing Cases .....................................26
9.7.1. With No LSP in the Network .........................26
9.7.2. With a Number of LSPs in the Network ...............26
9.8. Metric Reporting ..........................................26
10. A Definition for Samples of Multiple Unidirectional
LSPs Setup Delay ..............................................26
10.1. Metric Name ..............................................27
10.2. Metric Parameters ........................................27
10.3. Metric Units .............................................27
10.4. Definition ...............................................27
10.5. Discussion ...............................................28
10.6. Methodologies ............................................28
10.7. Typical Testing Cases ....................................29
10.7.1. With No LSP in the Network ........................29
10.7.2. With a Number of LSPs in the Network ..............29
10.8. Metric Reporting .........................................29
11. A Definition for Samples of Single Bidirectional LSP
Setup Delay ...................................................30
11.1. Metric Name ..............................................30
11.2. Metric Parameters ........................................30
11.3. Metric Units .............................................30
11.4. Definition ...............................................30
11.5. Discussion ...............................................31
11.6. Methodologies ............................................31
11.7. Typical Testing Cases ....................................32
11.7.1. With No LSP in the Network ........................32
11.7.2. With a Number of LSPs in the Network ..............32
11.8. Metric Reporting .........................................32
12. A Definition for Samples of Multiple Bidirectional
LSPs Setup Delay ..............................................32
12.1. Metric Name ..............................................33
12.2. Metric Parameters ........................................33
12.3. Metric Units .............................................33
12.4. Definition ...............................................33
Sun & Zhang Standards Track [Page 4]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
12.5. Discussion ...............................................34
12.6. Methodologies ............................................34
12.7. Typical Testing Cases ....................................35
12.7.1. With No LSP in the Network ........................35
12.7.2. With a Number of LSPs in the Network ..............35
12.8. Metric Reporting .........................................35
13. A Definition for Samples of LSP Graceful Release Delay ........35
13.1. Metric Name ..............................................36
13.2. Metric Parameters ........................................36
13.3. Metric Units .............................................36
13.4. Definition ...............................................36
13.5. Discussion ...............................................36
13.6. Methodologies ............................................37
13.7. Metric Reporting .........................................37
14. Some Statistics Definitions for Metrics to Report .............37
14.1. The Minimum of Metric ....................................37
14.2. The Median of Metric .....................................37
14.3. The Maximum of Metric ....................................38
14.4. The Percentile of Metric .................................38
14.5. Failure Statistics of Metric .............................38
14.5.1. Failure Count .....................................39
14.5.2. Failure Ratio .....................................39
15. Discussion ....................................................39
16. Security Considerations .......................................40
17. Acknowledgments ...............................................41
18. References ....................................................41
18.1. Normative References .....................................41
18.2. Informative References ...................................42
Appendix A. Authors' Addresses ...................................43
Sun & Zhang Standards Track [Page 5]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
1. Introduction
Generalized Multi-Protocol Label Switching (GMPLS) is one of the most
promising control plane solutions for future transport and service
network. GMPLS has been developed to control and operate different
kinds of network elements, such as conventional routers, switches,
Dense Wavelength Division Multiplexing (DWDM) systems, Add-Drop
Multiplexors (ADMs), photonic cross-connects (PXCs), optical cross-
connects (OXCs), etc. These physically diverse devices differ
drastically from one another in dynamic provisioning ability.
The introduction of a control plane into optical circuit switching
networks provides the basis for automating the provisioning of
connections and drastically reduces connection provision delay. As
more and more services and applications are seeking to use GMPLS-
controlled networks as their underlying transport network, and
increasingly in a dynamic way, the need is growing for measuring and
characterizing the performance of LSP provisioning in GMPLS networks,
such that requirement from applications and the provisioning
capability of the network can be mapped to each other.
This document defines performance metrics and methodologies that can
be used to characterize the dynamic LSP provisioning performance of
GMPLS networks, more specifically, performance of the signaling
protocol. The metrics defined in this document can be used to
characterize the average performance of GMPLS implementations.
2. Conventions Used in This Document
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 [RFC2119].
3. Overview of Performance Metrics
In this memo, to characterize the dynamic LSP provisioning
performance of a GMPLS network, we define three performance metrics:
unidirectional LSP setup delay, bidirectional LSP setup delay, and
LSP graceful release delay. The latency of the LSP setup/release
signal is conceptually similar to the Round-trip Delay in IP
networks. This enables us to refer to the structures and notions
introduced and discussed in the IP Performance Metrics (IPPM)
Framework documents, [RFC2330] [RFC2679] [RFC2681]. The reader is
assumed to be familiar with the notions in those documents.
Sun & Zhang Standards Track [Page 6]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
Note that data-path-related metrics, for example, the time between
the reception of a Resv message by the ingress node and when the
forward data path becomes operational, are defined in another
document [CCAMP-DPM]. It is desirable that both measurements are
performed to complement each other.
4. A Singleton Definition for Single Unidirectional LSP Setup Delay
This section defines a metric for single unidirectional Label
Switched Path setup delay across a GMPLS network.
4.1. Motivation
Single unidirectional Label Switched Path setup delay is useful for
several reasons:
o Single LSP setup delay is an important metric that characterizes
the provisioning performance of a GMPLS network. Longer LSP setup
delay will most likely incur higher overhead for the requesting
application, especially when the LSP duration itself is comparable
to the LSP setup delay.
o The minimum value of this metric provides an indication of the
delay that will likely be experienced when the LSP traverses the
shortest route at the lightest load in the control plane. As the
delay itself consists of several components, such as link
propagation delay and nodal processing delay, this metric also
reflects the status of the control plane. For example, for LSPs
traversing the same route, longer setup delays may suggest
congestion in the control channel or high control element load.
For this reason, this metric is useful for testing and diagnostic
purposes.
o The observed variance in a sample of LSP setup delay metric values
variance may serve as an early indicator on the feasibility of
support of applications that have stringent setup delay
requirements.
The measurement of single unidirectional LSP setup delay instead of
bidirectional LSP setup delay is motivated by the following factors:
o Some applications may use only unidirectional LSPs rather than
bidirectional ones. For example, content delivery services with
multicasting may use only unidirectional LSPs.
4.2. Metric Name
Single unidirectional LSP setup delay
Sun & Zhang Standards Track [Page 7]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
4.3. Metric Parameters
o ID0, the ingress Label Switching Router (LSR) ID
o ID1, the egress LSR ID
o T, a time when the setup is attempted
4.4. Metric Units
The value of single unidirectional LSP setup delay is either a real
number of milliseconds or undefined.
4.5. Definition
The single unidirectional LSP setup delay from ingress node ID0 to
egress node ID1 [RFC3945] at T is dT means that ingress node ID0
sends the first bit of a Path message packet to egress node ID1 at
wire-time T, and that ingress node ID0 received the last bit of
responding Resv message packet from egress node ID1 at wire-time
T+dT.
The single unidirectional LSP setup delay from ingress node ID0 to
egress node ID1 at T is undefined means that ingress node ID0 sends
the first bit of Path message packet to egress node ID1 at wire-time
T and that ingress node ID0 does not receive the corresponding Resv
message within a reasonable period of time.
The undefined value of this metric indicates an event of Single
Unidirectional LSP Setup Failure and would be used to report a count
or a percentage of Single Unidirectional LSP Setup failures. See
Section 14.5 for definitions of LSP setup/release failures.
4.6. Discussion
The following issues are likely to come up in practice:
o The accuracy of unidirectional LSP setup delay at time T depends
on the clock resolution in the ingress node; but synchronization
between the ingress node and egress node is not required since
unidirectional LSP setup uses two-way signaling.
o A given methodology will have to include a way to determine
whether a latency value is infinite or whether it is merely very
large. Simple upper bounds MAY be used, but GMPLS networks may
accommodate many kinds of devices. For example, some photonic
cross-connects (PXCs) have to move micro mirrors. This physical
motion may take several milliseconds, but the common electronic
Sun & Zhang Standards Track [Page 8]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
switches can finish the nodal processing within several
microseconds. So the unidirectional LSP setup delay varies
drastically from one network to another. In practice, the upper
bound SHOULD be chosen carefully.
o If the ingress node sends out the Path message to set up an LSP,
but never receives the corresponding Resv message, the
unidirectional LSP setup delay MUST be set to undefined.
o If the ingress node sends out the Path message to set up an LSP
but receives a PathErr message, the unidirectional LSP setup delay
MUST be set to undefined. There are many possible reasons for
this case; for example, the Path message has invalid parameters or
the network does not have enough resources to set up the requested
LSP, etc.
4.7. Methodologies
Generally, the methodology would proceed as follows:
o Make sure that the network has enough resources to set up the
requested LSP.
o At the ingress node, form the Path message according to the LSP
requirements. A timestamp (T1) may be stored locally on the
ingress node when the Path message packet is sent towards the
egress node.
o If the corresponding Resv message arrives within a reasonable
period of time, take the timestamp (T2) as soon as possible upon
receipt of the message. By subtracting the two timestamps, an
estimate of unidirectional LSP setup delay (T2-T1) can be
computed.
o If the corresponding Resv message fails to arrive within a
reasonable period of time, the unidirectional LSP setup delay is
deemed to be undefined. Note that the "reasonable" threshold is a
parameter of the methodology.
o If the corresponding response is a PathErr message, the
unidirectional LSP setup delay is deemed to be undefined.
4.8. Metric Reporting
The metric result (either a real number or undefined) MUST be
reported together with the selected upper bound. The route that the
LSP traverses MUST also be reported. The route MAY be collected via
Sun & Zhang Standards Track [Page 9]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
use of the record route object, see [RFC3209], or via the management
plane. The collection of routes via the management plane is out of
scope of this document.
5. A Singleton Definition for Multiple Unidirectional LSPs Setup Delay
This section defines a metric for multiple unidirectional Label
Switched Paths setup delay across a GMPLS network.
5.1. Motivation
Multiple unidirectional Label Switched Paths setup delay is useful
for several reasons:
o Carriers may require that a large number of LSPs be set up during
a short time period. This request may arise, e.g., as a
consequence to interruptions on established LSPs or other network
failures.
o The time needed to set up a large number of LSPs during a short
time period cannot be deduced from single LSP setup delay.
5.2. Metric Name
Multiple unidirectional LSPs setup delay
5.3. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o Lambda_m, a rate in reciprocal milliseconds
o X, the number of LSPs to set up
o T, a time when the first setup is attempted
5.4. Metric Units
The value of multiple unidirectional LSPs setup delay is either a
real number of milliseconds or undefined
Sun & Zhang Standards Track [Page 10]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
5.5. Definition
Given Lambda_m and X, the multiple unidirectional LSPs setup delay
from the ingress node to the egress node [RFC3945] at T is dT means:
o ingress node ID0 sends the first bit of the first Path message
packet to egress node ID1 at wire-time T;
o all subsequent (X-1) Path messages are sent according to the
specified Poisson process with arrival rate Lambda_m;
o ingress node ID0 receives all corresponding Resv message packets
from egress node ID1; and
o ingress node ID0 receives the last Resv message packet at wire-
time T+dT.
If the multiple unidirectional LSPs setup delay at T is "undefined",
this means that:
o ingress node ID0 sends all the Path messages toward egress node
ID1,
o the first bit of the first Path message packet is sent at wire-
time T, and
o ingress node ID0 does not receive one or more of the corresponding
Resv messages within a reasonable period of time.
The undefined value of this metric indicates an event of Multiple
Unidirectional LSP Setup Failure and would be used to report a count
or a percentage of Multiple Unidirectional LSP Setup failures. See
Section 14.5 for definitions of LSP setup/release failures.
5.6. Discussion
The following issues are likely to come up in practice:
o The accuracy of multiple unidirectional LSPs setup delay at time T
depends on the clock resolution in the ingress node; but
synchronization between the ingress node and egress node is not
required since unidirectional LSP setup uses two-way signaling.
o A given methodology will have to include a way to determine
whether a latency value is infinite or whether it is merely very
large. Simple upper bounds MAY be used, but GMPLS networks may
accommodate many kinds of devices. For example, some photonic
cross-connects (PXCs) have to move micro mirrors. This physical
Sun & Zhang Standards Track [Page 11]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
motion may take several milliseconds, but electronic switches can
finish the nodal processing within several microseconds. So the
multiple unidirectional LSP setup delay varies drastically from
one network to another. In practice, the upper bound SHOULD be
chosen carefully.
o If the ingress node sends out the multiple Path messages to set up
the LSPs, but never receives one or more of the corresponding Resv
messages, multiple unidirectional LSP setup delay MUST be set to
undefined.
o If the ingress node sends out the Path messages to set up the LSPs
but receives one or more PathErr messages, multiple unidirectional
LSPs setup delay MUST be set to undefined. There are many
possible reasons for this case. For example, one of the Path
messages has invalid parameters or the network does not have
enough resources to set up the requested LSPs, etc.
o The arrival rate of the Poisson process Lambda_m SHOULD be chosen
carefully such that on the one hand, the control plane is not
overburdened. On the other hand, the arrival rate is large enough
to meet the requirements of applications or services.
o It is important that all the LSPs MUST traverse the same route.
If there are multiple routes between the ingress node ID0 and
egress node ID1, Explicit Route Objects (EROs), or an alternate
method, e.g., static configuration, MUST be used to ensure that
all LSPs traverse the same route.
5.7. Methodologies
Generally, the methodology would proceed as follows:
o Make sure that the network has enough resources to set up the
requested LSPs.
o At the ingress node, form the Path messages according to the LSPs'
requirements.
o At the ingress node, select the time for each of the Path messages
according to the specified Poisson process.
o At the ingress node, send out the Path messages according to the
selected time.
o Store a timestamp (T1) locally on the ingress node when the first
Path message packet is sent towards the egress node.
Sun & Zhang Standards Track [Page 12]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
o If all of the corresponding Resv messages arrive within a
reasonable period of time, take the final timestamp (T2) as soon
as possible upon the receipt of all the messages. By subtracting
the two timestamps, an estimate of multiple unidirectional LSPs
setup delay (T2-T1) can be computed.
o If one or more of the corresponding Resv messages fail to arrive
within a reasonable period of time, the multiple unidirectional
LSPs setup delay is deemed to be undefined. Note that the
"reasonable" threshold is a parameter of the methodology.
o If one or more of the corresponding responses are PathErr
messages, the multiple unidirectional LSPs setup delay is deemed
to be undefined.
5.8. Metric Reporting
The metric result (either a real number or undefined) MUST be
reported together with the selected upper bound. The route that the
LSPs traverse MUST also be reported. The route MAY be collected via
use of the record route object, see [RFC3209], or via the management
plane. The collection of routes via the management plane is out of
scope of this document.
6. A Singleton Definition for Single Bidirectional LSP Setup Delay
GMPLS allows establishment of bidirectional symmetric LSPs (not of
asymmetric LSPs). This section defines a metric for single
bidirectional LSP setup delay across a GMPLS network.
6.1. Motivation
Single bidirectional Label Switched Path setup delay is useful for
several reasons:
o LSP setup delay is an important metric that characterizes the
provisioning performance of a GMPLS network. Longer LSP setup
delay will incur higher overhead for the requesting application,
especially when the LSP duration is comparable to the LSP setup
delay. Thus, measuring the setup delay is important for
application scheduling.
o The minimum value of this metric provides an indication of the
delay that will likely be experienced when the LSP traverses the
shortest route at the lightest load in the control plane. As the
delay itself consists of several components, such as link
propagation delay and nodal processing delay, this metric also
reflects the status of the control plane. For example, for LSPs
Sun & Zhang Standards Track [Page 13]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
traversing the same route, longer setup delays may suggest
congestion in the control channel or high control element load.
For this reason, this metric is useful for testing and diagnostic
purposes.
o LSP setup delay variance has a different impact on applications.
Erratic variation in LSP setup delay makes it difficult to support
applications that have stringent setup delay requirement.
The measurement of single bidirectional LSP setup delay instead of
unidirectional LSP setup delay is motivated by the following factors:
o Bidirectional LSPs are seen as a requirement for many GMPLS
networks. Its provisioning performance is important to
applications that generate bidirectional traffic.
6.2. Metric Name
Single bidirectional LSP setup delay
6.3. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o T, a time when the setup is attempted
6.4. Metric Units
The value of single bidirectional LSP setup delay is either a real
number of milliseconds or undefined
6.5. Definition
For a real number dT, the single bidirectional LSP setup delay from
ingress node ID0 to egress node ID1 at T is dT means that ingress
node ID0 sends out the first bit of a Path message including an
Upstream Label [RFC3473] heading for egress node ID1 at wire-time T,
egress node ID1 receives that packet, then immediately sends a Resv
message packet back to ingress node ID0, and that ingress node ID0
receives the last bit of the Resv message packet at wire-time T+dT.
If the single bidirectional LSP setup delay from ingress node ID0 to
egress node ID1 at T is "undefined", this means that ingress node ID0
sends the first bit of a Path message to egress node ID1 at wire-time
T and that ingress node ID0 does not receive that response packet
within a reasonable period of time.
Sun & Zhang Standards Track [Page 14]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
The undefined value of this metric indicates an event of Single
Bidirectional LSP Setup Failure and would be used to report a count
or a percentage of Single Bidirectional LSP Setup failures. See
Section 14.5 for definitions of LSP setup/release failures.
6.6. Discussion
The following issues are likely to come up in practice:
o The accuracy of single bidirectional LSP setup delay depends on
the clock resolution in the ingress node; but synchronization
between the ingress node and egress node is not required since
single bidirectional LSP setup uses two-way signaling.
o A given methodology will have to include a way to determine
whether a latency value is infinite or whether it is merely very
large. Simple upper bounds MAY be used, but GMPLS networks may
accommodate many kinds of devices. For example, some photonic
cross-connects (PXCs) have to move micro mirrors. This physical
motion may take several milliseconds, but electronic switches can
finish the nodal processing within several microseconds. So the
bidirectional LSP setup delay varies drastically from one network
to another. In the process of bidirectional LSP setup, if the
downstream node overrides the label suggested by the upstream
node, the setup delay may also increase. Thus, in practice, the
upper bound SHOULD be chosen carefully.
o If the ingress node sends out the Path message to set up the LSP,
but never receives the corresponding Resv message, single
bidirectional LSP setup delay MUST be set to undefined.
o If the ingress node sends out the Path message to set up the LSP,
but receives a PathErr message, single bidirectional LSP setup
delay MUST be set to undefined. There are many possible reasons
for this case. For example, the Path message has invalid
parameters or the network does not have enough resources to set up
the requested LSP.
6.7. Methodologies
Generally, the methodology would proceed as follows:
o Make sure that the network has enough resources to set up the
requested LSP.
Sun & Zhang Standards Track [Page 15]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
o At the ingress node, form the Path message (including the Upstream
Label or suggested label) according to the LSP requirements. A
timestamp (T1) may be stored locally on the ingress node when the
Path message packet is sent towards the egress node.
o If the corresponding Resv message arrives within a reasonable
period of time, take the final timestamp (T2) as soon as possible
upon the receipt of the message. By subtracting the two
timestamps, an estimate of bidirectional LSP setup delay (T2-T1)
can be computed.
o If the corresponding Resv message fails to arrive within a
reasonable period of time, the single bidirectional LSP setup
delay is deemed to be undefined. Note that the "reasonable"
threshold is a parameter of the methodology.
o If the corresponding response is a PathErr message, the single
bidirectional LSP setup delay is deemed to be undefined.
6.8. Metric Reporting
The metric result (either a real number or undefined) MUST be
reported together with the selected upper bound. The route that the
LSP traverses MUST also be reported. The route MAY be collected via
use of the record route object, see [RFC3209], or via the management
plane. The collection of routes via the management plane is out of
scope of this document.
7. A Singleton Definition for Multiple Bidirectional LSPs Setup Delay
This section defines a metric for multiple bidirectional LSPs setup
delay across a GMPLS network.
7.1. Motivation
Multiple bidirectional LSPs setup delay is useful for several
reasons:
o Upon traffic interruption caused by network failure or network
upgrade, carriers may require a large number of LSPs be set up
during a short time period.
o The time needed to set up a large number of LSPs during a short
time period cannot be deduced by single LSP setup delay.
7.2. Metric Name
Multiple bidirectional LSPs setup delay
Sun & Zhang Standards Track [Page 16]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
7.3. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o Lambda_m, a rate in reciprocal milliseconds
o X, the number of LSPs to set up
o T, a time when the first setup is attempted
7.4. Metric Units
The value of multiple bidirectional LSPs setup delay is either a real
number of milliseconds or undefined
7.5. Definition
Given Lambda_m and X, for a real number dT, the multiple
bidirectional LSPs setup delay from ingress node to egress node at T
is dT, means that:
o Ingress node ID0 sends the first bit of the first Path message
heading for egress node ID1 at wire-time T;
o All subsequent (X-1) Path messages are sent according to the
specified Poisson process with arrival rate Lambda_m;
o Ingress node ID1 receives all corresponding Resv message packets
from egress node ID1; and
o Ingress node ID0 receives the last Resv message packet at wire-
time T+dT.
If the multiple bidirectional LSPs setup delay from ingress node to
egress node at T is "undefined", this means that the ingress node
sends all the Path messages to the egress node and that the ingress
node fails to receive one or more of the response Resv messages
within a reasonable period of time.
The undefined value of this metric indicates an event of Multiple
Bidirectional LSP Setup Failure and would be used to report a count
or a percentage of Multiple Bidirectional LSP Setup failures. See
Section 14.5 for definitions of LSP setup/release failures.
Sun & Zhang Standards Track [Page 17]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
7.6. Discussion
The following issues are likely to come up in practice:
o The accuracy of multiple bidirectional LSPs setup delay depends on
the clock resolution in the ingress node; but synchronization
between the ingress node and egress node is not required since
bidirectional LSP setup uses two-way signaling.
o A given methodology will have to include a way to determine
whether a latency value is infinite or whether it is merely very
large. Simple upper bounds MAY be used, but GMPLS networks may
accommodate many kinds of devices. For example, some photonic
cross-connects (PXCs) have to move micro mirrors. This physical
motion may take several milliseconds, but electronic switches can
finish the nodal process within several microseconds. So the
multiple bidirectional LSPs setup delay varies drastically from a
network to another. In the process of multiple bidirectional LSPs
setup, if the downstream node overrides the label suggested by the
upstream node, the setup delay may also increase. Thus, in
practice, the upper bound SHOULD be chosen carefully.
o If the ingress node sends out the Path messages to set up the
LSPs, but never receives all the corresponding Resv messages, the
multiple bidirectional LSPs setup delay MUST be set to undefined.
o If the ingress node sends out the Path messages to set up the
LSPs, but receives one or more responding PathErr messages, the
multiple bidirectional LSPs setup delay MUST be set to undefined.
There are many possible reasons for this case. For example, one
or more of the Path messages have invalid parameters or the
network does not have enough resources to set up the requested
LSPs.
o The arrival rate of the Poisson process Lambda_m SHOULD be
carefully chosen such that on the one hand, the control plane is
not overburdened. On the other hand, the arrival rate is large
enough to meet the requirements of applications or services.
o It is important that all the LSPs MUST traverse the same route.
If there are multiple routes between the ingress node ID0 and
egress node ID1, EROs, or an alternate method, e.g., static
configuration, MUST be used to ensure that all LSPs traverse the
same route.
Sun & Zhang Standards Track [Page 18]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
7.7. Methodologies
Generally, the methodology would proceed as follows:
o Make sure that the network has enough resources to set up the
requested LSPs.
o At the ingress node, form the Path messages (including the
Upstream Label or suggested label) according to the LSPs'
requirements.
o At the ingress node, select the time for each of the Path messages
according to the specified Poisson process.
o At the ingress node, send out the Path messages according to the
selected time.
o Store a timestamp (T1) locally in the ingress node when the first
Path message packet is sent towards the egress node.
o If all of the corresponding Resv messages arrive within a
reasonable period of time, take the final timestamp (T2) as soon
as possible upon the receipt of all the messages. By subtracting
the two timestamps, an estimate of multiple bidirectional LSPs
setup delay (T2-T1) can be computed.
o If one or more of the corresponding Resv messages fail to arrive
within a reasonable period of time, the multiple bidirectional
LSPs setup delay is deemed to be undefined. Note that the
"reasonable" threshold is a parameter of the methodology.
o If one or more of the corresponding responses are PathErr
messages, the multiple bidirectional LSPs setup delay is deemed to
be undefined.
7.8. Metric Reporting
The metric result (either a real number or undefined) MUST be
reported together with the selected upper bound. The route that the
LSPs traverse MUST also be reported. The route MAY be collected via
use of the record route object, see [RFC3209], or via the management
plane. The collection of routes via the management plane is out of
scope of this document.
Sun & Zhang Standards Track [Page 19]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
8. A Singleton Definition for LSP Graceful Release Delay
There are two different kinds of LSP release mechanisms in GMPLS
networks: graceful release and forceful release. This document does
not take forceful LSP release procedure into account.
8.1. Motivation
LSP graceful release delay is useful for several reasons:
o The LSP graceful release delay is part of the total cost of
dynamic LSP provisioning. For some short duration applications,
the LSP release time cannot be ignored.
o The LSP graceful release procedure is more preferred in a GMPLS
controlled network, particularly the optical networks. Since it
doesn't trigger restoration/protection, it is "alarm-free
connection deletion" in [RFC4208].
8.2. Metric Name
LSP graceful release delay
8.3. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o T, a time when the release is attempted
8.4. Metric Units
The value of LSP graceful release delay is either a real number of
milliseconds or undefined
8.5. Definition
There are two different LSP graceful release procedures: one is
initiated by the ingress node, and another is initiated by the egress
node. The two procedures are depicted in [RFC3473]. We define the
graceful LSP release delay for these two procedures separately.
For a real number dT, if the LSP graceful release delay from ingress
node ID0 to egress node ID1 at T is dT, this means that ingress node
ID0 sends the first bit of a Path message including an Admin Status
Object with the Reflect (R) and Delete (D) bits set to the egress
node at wire-time T, that egress node ID1 receives that packet, then
Sun & Zhang Standards Track [Page 20]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
immediately sends a Resv message including an Admin Status Object
with the Delete (D) bit set back to the ingress node. Ingress node
ID0 sends the PathTear message downstream to remove the LSP, and
egress node ID1 receives the last bit of PathTear packet at wire-time
T+dT.
Also, as an option, upon receipt of the Path message including an
Admin Status Object with the Reflect (R) and Delete (D) bits set,
egress node ID1 may respond with a PathErr message with the
Path_State_Removed flag set.
The LSP graceful release delay from ingress node ID0 to egress node
ID1 at T is undefined means that ingress node ID0 sends the first bit
of Path message to egress node ID1 at wire-time T and that (either
the egress node does not receive the Path packet, the egress node
does not send a corresponding Resv message packet in response, or the
ingress node does not receive that Resv packet, and) egress node ID1
does not receive the PathTear message within a reasonable period of
time.
If the LSP graceful release delay from egress node ID1 to ingress
node ID0 at T is dT, this means that egress node ID1 sends the first
bit of a Resv message including an Admin Status Object with the
Reflect (R) and Delete (D) bits set to the ingress node at wire-time
T. Ingress node ID0 sends a PathTear message downstream to remove
the LSP, and egress node ID1 receives the last bit of PathTear packet
at wire-time T+dT.
If the LSP graceful release delay from egress node ID1 to ingress
node ID0 at T is "undefined", this means that egress node ID1 sends
the first bit of Resv message including an Admin Status Object with
the Reflect (R) and Delete (D) bits set to the ingress node ID0 at
wire-time T and that (either the ingress node does not receive the
Resv packet or the ingress node does not send PathTear message packet
in response, and) egress node ID1 does not receive the PathTear
message within a reasonable period of time.
The undefined value of this metric indicates an event of LSP Graceful
Release Failure and would be used to report a count or a percentage
of LSP Graceful Release failures. See Section 14.5 for definitions
of LSP setup/release failures.
Sun & Zhang Standards Track [Page 21]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
8.6. Discussion
The following issues are likely to come up in practice:
o In the first (second) circumstance, the accuracy of LSP graceful
release delay at time T depends on the clock resolution in the
ingress (egress) node. In the first circumstance, synchronization
between the ingress node and egress node is required, but it is
not in the second circumstance.
o A given methodology has to include a way to determine whether a
latency value is infinite or whether it is merely very large.
Simple upper bounds MAY be used, but the upper bound SHOULD be
chosen carefully in practice.
o In the first circumstance, if the ingress node sends out Path
message including an Admin Status Object with the Reflect (R) and
Delete (D) bits set to initiate LSP graceful release, but the
egress node never receives the corresponding PathTear message, LSP
graceful release delay MUST be set to undefined.
o In the second circumstance, if the egress node sends out the Resv
message including an Admin Status Object with the Reflect (R) and
Delete (D) bits set to initiate LSP graceful release, but never
receives the corresponding PathTear message, LSP graceful release
delay MUST be set to undefined.
8.7. Methodologies
In the first circumstance, the methodology may proceed as follows:
o Make sure the LSP to be deleted is set up;
o At the ingress node, form the Path message including an Admin
Status Object with the Reflect (R) and Delete (D) bits set. A
timestamp (T1) may be stored locally on the ingress node when the
Path message packet is sent towards the egress node.
o Upon receiving the Path message including an Admin Status Object
with the Reflect (R) and Delete (D) bits set, the egress node
sends a Resv message including an Admin Status Object with the
Delete (D) and Reflect (R) bits set. Alternatively, the egress
node sends a PathErr message with the Path_State_Removed flag set
upstream.
o When the ingress node receives the Resv message or the PathErr
message, it sends a PathTear message to remove the LSP.
Sun & Zhang Standards Track [Page 22]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
o The egress node takes a timestamp (T2) once it receives the last
bit of the PathTear message. The LSP graceful release delay is
then (T2-T1).
o If the ingress node sends the Path message downstream, but the
egress node fails to receive the PathTear message within a
reasonable period of time, the LSP graceful release delay is
deemed to be undefined. Note that the "reasonable" threshold is a
parameter of the methodology.
In the second circumstance, the methodology would proceed as follows:
o Make sure the LSP to be deleted is set up;
o On the egress node, form the Resv message including an Admin
Status Object with the Reflect (R) and Delete (D) bits set. A
timestamp may be stored locally on the egress node when the Resv
message packet is sent towards the ingress node.
o Upon receiving the Admin Status Object with the Reflect (R) and
Delete (D) bits set in the Resv message, the ingress node sends a
PathTear message downstream to remove the LSP.
o The egress node takes a timestamp (T2) once it receives the last
bit of the PathTear message. The LSP graceful release delay is
then (T2-T1).
o If the egress node sends the Resv message upstream, but it fails
to receive the PathTear message within a reasonable period of
time, the LSP graceful release delay is deemed to be undefined.
Note that the "reasonable" threshold is a parameter of the
methodology.
8.8. Metric Reporting
The metric result (either a real number or undefined) MUST be
reported together with the selected upper bound and the procedure
used (e.g., either from the ingress node to the egress node or from
the egress node to the ingress node; see Section 8.5 for more
details). The route that the LSP traverses MUST also be reported.
The route MAY be collected via use of the record route object, see
[RFC3209], or via the management plane. The collection of routes via
the management plane is out of scope of this document.
Sun & Zhang Standards Track [Page 23]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
9. A Definition for Samples of Single Unidirectional LSP Setup Delay
In Section 4, we defined the singleton metric of single
unidirectional LSP setup delay. Now we define how to get one
particular sample of single unidirectional LSP setup delay. Sampling
means to take a number of distinct instances of a skeleton metric
under a given set of parameters. As in [RFC2330], we use Poisson
sampling as an example.
9.1. Metric Name
Single unidirectional LSP setup delay sample
9.2. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o T0, a time
o Tf, a time
o Lambda, a rate in the reciprocal milliseconds
o Th, LSP holding time
o Td, the maximum waiting time for successful setup
9.3. Metric Units
A sequence of pairs; the elements of each pair are:
o T, a time when setup is attempted
o dT, either a real number of milliseconds or undefined
9.4. Definition
Given T0, Tf, and Lambda, compute a pseudo-random Poisson process
beginning at or before T0, with average arrival rate Lambda, and
ending at or after Tf. Those time values greater than or equal to T0
and less than or equal to Tf are then selected. At each of the times
in this process, we obtain the value of unidirectional LSP setup
delay sample. The value of the sample is the sequence made up of the
resulting <time, LSP setup delay> pairs. If there are no such pairs,
the sequence is of length zero and the sample is said to be empty.
Sun & Zhang Standards Track [Page 24]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
9.5. Discussion
The parameter Lambda should be carefully chosen. If the rate is too
high, too frequent LSP setup/release procedure will result in high
overhead in the control plane. In turn, the high overhead will
increase unidirectional LSP setup delay. On the other hand, if the
rate is too low, the sample might not completely reflect the dynamic
provisioning performance of the GMPLS network. The appropriate
Lambda value depends on the given network.
The parameters Td should be carefully chosen. Different switching
technologies may vary significantly in performing a cross-connect
operation. At the same time, the time needed in setting up an LSP
under different traffic may also vary significantly.
In the case of active measurement, the parameters Th should be
carefully chosen. The combination of Lambda and Th reflects the load
of the network. The selection of Th should take into account that
the network has sufficient resources to perform subsequent tests.
The value of Th MAY be constant during one sampling process for
simplicity considerations.
Note that for online or passive measurements, the arrival rate and
LSP holding time are determined by actual traffic; hence, in this
case, Lambda and Th are not input parameters.
It is important that, in obtaining a sample, all the LSPs MUST
traverse the same route. If there are multiple routes between the
ingress node ID0 and egress node ID1, EROs, or an alternate method,
e.g., static configuration, MUST be used to ensure that all LSPs
traverse the same route.
9.6. Methodologies
o Select the times using the specified Poisson arrival process,
o Set up the LSP as the methodology for the singleton unidirectional
LSP setup delay, and obtain the value of unidirectional LSP setup
delay, and
o Release the LSP after Th, and wait for the next Poisson arrival
event.
Note: it is possible that before the previous LSP release procedure
completes, the next Poisson arrival event arrives and the LSP setup
procedure is initiated. If there is resource contention between the
two LSPs, the LSP setup may fail. Ways to avoid such contention are
outside the scope of this document.
Sun & Zhang Standards Track [Page 25]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
9.7. Typical Testing Cases
9.7.1. With No LSP in the Network
9.7.1.1. Motivation
Single unidirectional LSP setup delay with no LSP in the network is
important because this reflects the inherent delay of a Resource
Reservation Protocol - Traffic Engineering (RSVP-TE) implementation.
The minimum value provides an indication of the delay that will
likely be experienced when an LSP traverses the shortest route with
the lightest load in the control plane.
9.7.1.2. Methodologies
Make sure that there is no LSP in the network and proceed with the
methodologies described in Section 9.6
9.7.2. With a Number of LSPs in the Network
9.7.2.1. Motivation
Single unidirectional LSP setup delay with a number of LSPs in the
network is important because it reflects the performance of an
operational network with considerable load. This delay may vary
significantly as the number of existing LSPs vary. It can be used as
a scalability metric of an RSVP-TE implementation.
9.7.2.2. Methodologies
Set up the required number of LSPs, and wait until the network
reaches a stable state; then, proceed with the methodologies
described in Section 9.6.
9.8. Metric Reporting
The metric results including both real and undefined values MUST be
reported together with the total number of values. The context under
which the sample is obtained, including the selected parameters, the
route traversed by the LSPs, and the testing case used, MUST also be
reported.
10. A Definition for Samples of Multiple Unidirectional LSPs Setup
Delay
In Section 5, we defined the singleton metric of multiple
unidirectional LSPs setup delay. Now we define how to get one
particular sample of multiple unidirectional LSPs setup delay.
Sun & Zhang Standards Track [Page 26]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
Sampling means to take a number of distinct instances of a skeleton
metric under a given set of parameters. As in [RFC2330], we use
Poisson sampling as an example.
10.1. Metric Name
Multiple unidirectional LSPs setup delay sample
10.2. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o T0, a time
o Tf, a time
o Lambda_m, a rate in the reciprocal milliseconds
o Lambda, a rate in the reciprocal milliseconds
o X, the number of LSPs to set up
o Th, LSP holding time
o Td, the maximum waiting time for successful multiple
unidirectional LSPs setup
10.3. Metric Units
A sequence of pairs; the elements of each pair are:
o T, a time when the first setup is attempted
o dT, either a real number of milliseconds or undefined
10.4. Definition
Given T0, Tf, and Lambda, compute a pseudo-random Poisson process
beginning at or before T0, with an average arrival rate Lambda and
ending at or after Tf. Those time values greater than or equal to T0
and less than or equal to Tf are then selected. At each of the times
in this process, we obtain the value of multiple unidirectional LSP
setup delay sample. The value of the sample is the sequence made up
of the resulting <time, setup delay> pairs. If there are no such
pairs, the sequence is of length zero and the sample is said to be
empty.
Sun & Zhang Standards Track [Page 27]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
10.5. Discussion
The parameter Lambda is used as an arrival rate of "batch
unidirectional LSPs setup" operation. It regulates the interval in
between each batch operation. The parameter Lambda_m is used within
each batch operation, as described in Section 5
The parameters Lambda and Lambda_m should be carefully chosen. If
the rate is too high, overly frequent LSP setup/release procedure
will result in high overhead in the control plane. In turn, the high
overhead will increase unidirectional LSP setup delay. On the other
hand, if the rate is too low, the sample might not completely reflect
the dynamic provisioning performance of the GMPLS network. The
appropriate Lambda and Lambda_m value depends on the given network.
The parameters Td should be carefully chosen. Different switching
technologies may vary significantly in performing a cross-connect
operation. At the same time, the time needed in setting up an LSP
under different traffic may also vary significantly.
It is important that, in obtaining a sample, all the LSPs MUST
traverse the same route. If there are multiple routes between the
ingress node ID0 and egress node ID1, EROs, or an alternate method,
e.g., static configuration, MUST be used to ensure that all LSPs
traverse the same route.
10.6. Methodologies
o Select the times using the specified Poisson arrival process,
o Set up the LSP as the methodology for the singleton multiple
unidirectional LSPs setup delay, and obtain the value of multiple
unidirectional LSPs setup delay, and
o Release the LSP after Th, and wait for the next Poisson arrival
event.
Note: it is possible that before the previous LSP release procedure
completes, the next Poisson arrival event arrives and the LSP setup
procedure is initiated. If there is resource contention between the
two LSPs, the LSP setup may fail. Ways to avoid such contention are
outside the scope of this document.
Sun & Zhang Standards Track [Page 28]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
10.7. Typical Testing Cases
10.7.1. With No LSP in the Network
10.7.1.1. Motivation
Multiple unidirectional LSPs setup delay with no LSP in the network
is important because this reflects the inherent delay of an RSVP-TE
implementation. The minimum value provides an indication of the
delay that will likely be experienced when LSPs traverse the shortest
route with the lightest load in the control plane.
10.7.1.2. Methodologies
Make sure that there is no LSP in the network and proceed with the
methodologies described in Section 10.6.
10.7.2. With a Number of LSPs in the Network
10.7.2.1. Motivation
Multiple unidirectional LSPs setup delay with a number of LSPs in the
network is important because it reflects the performance of an
operational network with considerable load. This delay can vary
significantly as the number of existing LSPs vary. It can be used as
a scalability metric of an RSVP-TE implementation.
10.7.2.2. Methodologies
Set up the required number of LSPs, and wait until the network
reaches a stable state; then, proceed with the methodologies
described in Section 10.6.
10.8. Metric Reporting
The metric results including both real and undefined values MUST be
reported together with the total number of values. The context under
which the sample is obtained, including the selected parameters, the
route traversed by the LSPs, and the testing case used, MUST also be
reported.
Sun & Zhang Standards Track [Page 29]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
11. A Definition for Samples of Single Bidirectional LSP Setup Delay
In Section 6, we defined the singleton metric of single bidirectional
LSP setup delay. Now we define how to get one particular sample of
single bidirectional LSP setup delay. Sampling means to take a
number of distinct instances of a skeleton metric under a given set
of parameters. As in [RFC2330], we use Poisson sampling as an
example.
11.1. Metric Name
Single bidirectional LSP setup delay sample with no LSP in the
network
11.2. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o T0, a time
o Tf, a time
o Lambda, a rate in the reciprocal milliseconds
o Th, LSP holding time
o Td, the maximum waiting time for successful setup
11.3. Metric Units
A sequence of pairs; the elements of each pair are:
o T, a time when setup is attempted
o dT, either a real number of milliseconds or undefined
11.4. Definition
Given T0, Tf, and Lambda, compute a pseudo-random Poisson process
beginning at or before T0, with an average arrival rate Lambda, and
ending at or after Tf. Those time values greater than or equal to T0
and less than or equal to Tf are then selected. At each of the times
in this process, we obtain the value of bidirectional LSP setup delay
sample. The value of the sample is the sequence made up of the
resulting <time, LSP setup delay> pairs. If there are no such pairs,
the sequence is of length zero and the sample is said to be empty.
Sun & Zhang Standards Track [Page 30]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
11.5. Discussion
The parameters Lambda should be carefully chosen. If the rate is too
high, overly frequent LSP setup/release procedure will result in high
overhead in the control plane. In turn, the high overhead will
increase bidirectional LSP setup delay. On the other hand, if the
rate is too low, the sample might not completely reflect the dynamic
provisioning performance of the GMPLS network. The appropriate
Lambda value depends on the given network.
The parameters Td should be carefully chosen. Different switching
technologies may vary significantly in performing a cross-connect
operation. At the same time, the time needed to set up an LSP under
different traffic may also vary significantly.
In the case of active measurement, the parameters Th should be
carefully chosen. The combination of Lambda and Th reflects the load
of the network. The selection of Th SHOULD take into account that
the network has sufficient resources to perform subsequent tests.
The value of Th MAY be constant during one sampling process for
simplicity considerations.
Note that for online or passive measurements, the arrival rate and
the LSP holding time are determined by actual traffic; hence, in this
case, Lambda and Th are not input parameters.
It is important that, in obtaining a sample, all the LSPs MUST
traverse the same route. If there are multiple routes between the
ingress node ID0 and egress node ID1, EROs, or an alternate method,
e.g., static configuration, MUST be used to ensure that all LSPs
traverse the same route.
11.6. Methodologies
o Select the times using the specified Poisson arrival process,
o Set up the LSP as the methodology for the singleton bidirectional
LSP setup delay, and obtain the value of bidirectional LSP setup
delay, and
o Release the LSP after Th, and wait for the next Poisson arrival
event.
Note: it is possible that before the previous LSP release procedure
completes, the next Poisson arrival event arrives and the LSP setup
procedure is initiated. If there is resource contention between the
two LSPs, the LSP setup may fail. Ways to avoid such contention are
outside the scope of this document.
Sun & Zhang Standards Track [Page 31]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
11.7. Typical Testing Cases
11.7.1. With No LSP in the Network
11.7.1.1. Motivation
Single bidirectional LSP setup delay with no LSP in the network is
important because this reflects the inherent delay of an RSVP-TE
implementation. The minimum value provides an indication of the
delay that will likely be experienced when an LSP traverses the
shortest route with the lightest load in the control plane.
11.7.1.2. Methodologies
Make sure that there is no LSP in the network and proceed with the
methodologies described in Section 11.6.
11.7.2. With a Number of LSPs in the Network
11.7.2.1. Motivation
Single bidirectional LSP setup delay with a number of LSPs in the
network is important because it reflects the performance of an
operational network with considerable load. This delay can vary
significantly as the number of existing LSPs varies. It can be used
as a scalability metric of an RSVP-TE implementation.
11.7.2.2. Methodologies
Set up the required number of LSPs and wait until the network reaches
a stable state; then, proceed with the methodologies described in
Section 11.6.
11.8. Metric Reporting
The metric results including both real and undefined values MUST be
reported together with the total number of values. The context under
which the sample is obtained, including the selected parameters, the
route traversed by the LSPs, and the testing case used, MUST also be
reported.
12. A Definition for Samples of Multiple Bidirectional LSPs Setup Delay
In Section 7, we defined the singleton metric of multiple
bidirectional LSPs setup delay. Now we define how to get one
particular sample of multiple bidirectional LSP setup delay.
Sun & Zhang Standards Track [Page 32]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
Sampling means to take a number of distinct instances of a skeleton
metric under a given set of parameters. As in [RFC2330], we use
Poisson sampling as an example.
12.1. Metric Name
Multiple bidirectional LSPs setup delay sample
12.2. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o T0, a time
o Tf, a time
o Lambda_m, a rate in the reciprocal milliseconds
o Lambda, a rate in the reciprocal milliseconds
o X, the number of LSPs to set up
o Th, LSP holding time
o Td, the maximum waiting time for successful multiple
unidirectional LSPs setup
12.3. Metric Units
A sequence of pairs; the elements of each pair are:
o T, a time when the first setup is attempted
o dT, either a real number of milliseconds or undefined
12.4. Definition
Given T0, Tf, and Lambda, compute a pseudo-random Poisson process
beginning at or before T0, with an average arrival rate Lambda and
ending at or after Tf. Those time values greater than or equal to T0
and less than or equal to Tf are then selected. At each of the times
in this process, we obtain the value of multiple unidirectional LSP
setup delay sample. The value of the sample is the sequence made up
of the resulting <time, setup delay> pairs. If there are no such
pairs, the sequence is of length zero and the sample is said to be
empty.
Sun & Zhang Standards Track [Page 33]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
12.5. Discussion
The parameter Lambda is used as an arrival rate of "batch
bidirectional LSPs setup" operation. It regulates the interval in
between each batch operation. The parameter Lambda_m is used within
each batch operation, as described in Section 7.
The parameters Lambda and Lambda_m should be carefully chosen. If
the rate is too high, overly frequent LSP setup/release procedure
will result in high overhead in the control plane. In turn, the high
overhead will increase unidirectional LSP setup delay. On the other
hand, if the rate is too low, the sample might not completely reflect
the dynamic provisioning performance of the GMPLS network. The
appropriate Lambda and Lambda_m values depend on the given network.
The parameters Td should be carefully chosen. Different switching
technologies may vary significantly in performing a cross-connect
operation. At the same time, the time needed to set up an LSP under
different traffic may also vary significantly.
It is important that, in obtaining a sample, all the LSPs MUST
traverse the same route. If there are multiple routes between the
ingress node ID0 and egress node ID1, EROs, or an alternate method,
e.g., static configuration, MUST be used to ensure that all LSPs
traverse the same route.
12.6. Methodologies
o Select the times using the specified Poisson arrival process,
o Set up the LSP as the methodology for the singleton multiple
bidirectional LSPs setup delay, and obtain the value of multiple
unidirectional LSPs setup delay, and
o Release the LSP after Th, and wait for the next Poisson arrival
event.
Note: it is possible that before the previous LSP release procedure
completes, the next Poisson arrival event arrives and the LSP setup
procedure is initiated. If there is resource contention between the
two LSPs, the LSP setup may fail. Ways to avoid such contention are
outside the scope of this document.
Sun & Zhang Standards Track [Page 34]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
12.7. Typical Testing Cases
12.7.1. With No LSP in the Network
12.7.1.1. Motivation
Multiple bidirectional LSPs setup delay with no LSP in the network is
important because this reflects the inherent delay of an RSVP-TE
implementation. The minimum value provides an indication of the
delay that will likely be experienced when an LSPs traverse the
shortest route with the lightest load in the control plane.
12.7.1.2. Methodologies
Make sure that there is no LSP in the network and proceed with the
methodologies described in Section 10.6.
12.7.2. With a Number of LSPs in the Network
12.7.2.1. Motivation
Multiple bidirectional LSPs setup delay with a number of LSPs in the
network is important because it reflects the performance of an
operational network with considerable load. This delay may vary
significantly as the number of existing LSPs vary. It may be used as
a scalability metric of an RSVP-TE implementation.
12.7.2.2. Methodologies
Set up the required number of LSPs, and wait until the network
reaches a stable state; then, proceed with the methodologies
described in Section 12.6.
12.8. Metric Reporting
The metric results including both real and undefined values MUST be
reported together with the total number of values. The context under
which the sample is obtained, including the selected parameters, the
route traversed by the LSPs, and the testing case used, MUST also be
reported.
13. A Definition for Samples of LSP Graceful Release Delay
In Section 8, we defined the singleton metric of LSP graceful release
delay. Now we define how to get one particular sample of LSP
graceful release delay. We also use Poisson sampling as an example.
Sun & Zhang Standards Track [Page 35]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
13.1. Metric Name
LSP graceful release delay sample
13.2. Metric Parameters
o ID0, the ingress LSR ID
o ID1, the egress LSR ID
o T0, a time
o Tf, a time
o Lambda, a rate in reciprocal milliseconds
o Td, the maximum waiting time for successful LSP release
13.3. Metric Units
A sequence of pairs; the elements of each pair are:
o T, a time, and
o dT, either a real number of milliseconds or undefined
13.4. Definition
Given T0, Tf, and Lambda, we compute a pseudo-random Poisson process
beginning at or before T0, with an average arrival rate Lambda and
ending at or after Tf. Those time values greater than or equal to T0
and less than or equal to Tf are then selected. At each of the times
in this process, we obtain the value of LSP graceful release delay
sample. The value of the sample is the sequence made up of the
resulting <time, LSP graceful delay> pairs. If there are no such
pairs, the sequence is of length zero and the sample is said to be
empty.
13.5. Discussion
The parameter Lambda should be carefully chosen. If the rate is too
large, overly frequent LSP setup/release procedure will result in
high overhead in the control plane. In turn, the high overhead will
increase unidirectional LSP setup delay. On the other hand, if the
rate is too small, the sample might not completely reflect the
dynamic provisioning performance of the GMPLS network. The
appropriate Lambda value depends on the given network.
Sun & Zhang Standards Track [Page 36]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
It is important that, in obtaining a sample, all the LSPs MUST
traverse the same route. If there are multiple routes between the
ingress node ID0 and egress node ID1, EROs, or an alternate method,
e.g., static configuration, MUST be used to ensure that all LSPs
traverse the same route.
13.6. Methodologies
Generally, the methodology would proceed as follows:
o Set up the LSP to be deleted
o Select the times using the specified Poisson arrival process,
o Release the LSP as the methodology for the singleton LSP graceful
release delay, and obtain the value of LSP graceful release delay,
and
o Set up the LSP, and restart the Poisson arrival process, wait for
the next Poisson arrival event.
13.7. Metric Reporting
The metric results including both real and undefined values MUST be
reported together with the total number of values. The context under
which the sample is obtained, including the selected parameters, and
the route traversed by the LSPs MUST also be reported.
14. Some Statistics Definitions for Metrics to Report
Given the samples of the performance metric, we now offer several
statistics of these samples to report. From these statistics, we can
draw some useful conclusions of a GMPLS network. The value of these
metrics is either a real number of milliseconds or undefined. In the
following discussion, we only consider the finite values.
14.1. The Minimum of Metric
The minimum of the metric is the minimum of all the dT values in the
sample. In computing this, undefined values SHOULD be treated as
infinitely large. Note that this means that the minimum could thus
be undefined if all the dT values are undefined. In addition, the
metric minimum SHOULD be set to undefined if the sample is empty.
14.2. The Median of Metric
Metric median is the median of the dT values in the given sample. In
computing the median, the undefined values MUST NOT be included.
Sun & Zhang Standards Track [Page 37]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
14.3. The Maximum of Metric
The maximum of the metric is the maximum of all the dT values in the
sample. In computing this, undefined values MUST NOT be included.
Note that this means that measurements that exceed the upper bound
are not reported in this statistic. This is an important
consideration when evaluating the maximum when the number of
undefined measurements is non-zero.
14.4. The Percentile of Metric
The "empirical distribution function" (EDF) of a set of scalar
measurements is a function F(x), which, for any x, gives the
fractional proportion of the total measurements that were <= x.
Given a percentage X, the X-th percentile of the metric means the
smallest value of x for which F(x) >= X. In computing the
percentile, undefined values MUST NOT be included.
See [RFC2330] for further details.
14.5. Failure Statistics of Metric
In the process of LSP setup/release, it may fail due to various
reasons. For example, setup/release may fail when the control plane
is overburdened or when there is resource shortage in one of the
intermediate nodes. Since the setup/release failure may have
significant impact on network operation, it is worthwhile to report
each failure cases, so that appropriate operations can be performed
to check the possible implementation, configuration or other
deficiencies.
Five types of failure events are defined in previous sections:
o Single Unidirectional LSP Setup Failure
o Multiple Unidirectional LSP Setup Failure
o Single Bidirectional LSP Setup Failure
o Multiple Bidirectional LSP Setup Failure
o LSP Graceful Release Failure
Given the samples of the performance metric, we now offer two
statistics of failure events of these samples to report.
Sun & Zhang Standards Track [Page 38]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
14.5.1. Failure Count
Failure Count is defined as the number of the undefined value of the
corresponding performance metric (failure events) in a sample. The
value of Failure Count is an integer.
14.5.2. Failure Ratio
Failure Ratio is the percentage of the number of failure events to
the total number of requests in a sample. The calculation for
Failure Ratio is defined as follows:
X type failure ratio = Number of X type failure events/(Number of
valid X type metric values + Number of X type failure events) * 100%.
15. Discussion
It is worthwhile to point out that:
o The unidirectional/bidirectional LSP setup delay is one ingress-
egress round-trip time plus processing time. But in this
document, unidirectional/bidirectional LSP setup delay has not
taken the processing time in the end nodes (ingress and/or egress)
into account. The timestamp T2 is taken after the endpoint node
receives it. Actually, the last node has to take some time to
process local procedures. Similarly, in the LSP graceful release
delay, the memo has not considered the processing time in the end
node.
o This document assumes that the correct procedures for installing
the data plane are followed as described in [RFC3209], [RFC3471],
and [RFC3473]. That is, by the time the egress receives and
processes a Path message, it is safe for the egress to transmit
data on the reverse path, and by the time the ingress receives and
processes a Resv message it is safe for the ingress to transmit
data on the forward path. See [CCAMP-SWITCH] for detailed
explanations. This document does not include any verification
that the implementations of the control plane software are
conformant, although such tests MAY be constructed with the use of
suitable signal generation test equipment. In [CCAMP-DPM], we
defined a series of metrics to do such verifications. However, it
is RECOMMENDED that both the measurements defined in this document
and the measurements defined in [CCAMP-DPM] are performed to
complement each other.
Sun & Zhang Standards Track [Page 39]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
o Note that, in implementing the tests described in this document, a
tester should be sure to measure the time taken for the control
plane messages including the processing of those messages by the
nodes under test.
o Bidirectional LSPs may be set up using three-way signaling, where
the initiating node will send a ResvConf message downstream upon
receiving the Resv message. The ResvConf message is used to
notify the terminate node that it can transfer data upstream.
Actually, both directions should be ready to transfer data when
the Resv message is received by the initiating node. Therefore,
the bidirectional LSP setup delay defined in this document does
not take the confirmation procedure into account.
16. Security Considerations
Samples of the metrics can be obtained in either active or passive
manners.
In active measurement, ingress nodes inject probing messages into the
control plane. Since the measurement endpoints must be conformant to
signaling specifications and behave as normal signaling endpoints, it
will not incur other security issues than normal LSP provisioning.
However, the measurement parameters must be carefully selected so
that the measurements inject trivial amounts of additional traffic
into the networks they measure. If they inject "too much" traffic,
they can skew the results of the measurement, and, in extreme cases,
cause congestion and denial of service.
When samples of the metrics are collected in a passive manner, e.g.,
by monitoring the operations on real-life LSPs, the implementation of
the monitoring and reporting mechanism must be careful so that they
will not be used to attack the control plane. A typical
implementation may use the Management Information Base (MIB) to
collect/store the metrics and access to the MIB is limited to the
Network Management Systems (NMSs). In this case, passive monitoring
will not incur other security issues than implementing the MIBs and
NMSs. If an implementation chooses to expose the performance data to
other applications, then it must take into account the possible
security issues it may face. For example, when exposing the
performance data through Simple Network Management Protocol (SNMP),
certain authentication methods should be used to ensure that the
entity maintaining the performance data are not subject to
unauthorized readings and modifications. Rate limiting on the
performance query may also be desirable to reduce the risk that the
entity maintaining the performance data are overwhelmed by too many
query requests. It is RECOMMENDED that implementers consider the
Sun & Zhang Standards Track [Page 40]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
security features as provided by the SNMPv3 framework (see [RFC3410],
section 8), including full support for the SNMPv3 cryptographic
mechanisms (for authentication and privacy).
Additionally, the security considerations pertaining to the original
RSVP protocol [RFC2205] and its TE extensions [RFC3209] also remain
relevant.
17. Acknowledgments
We wish to thank Dan Li, Fang Liu (Christine), Zafar Ali, Monique
Morrow, Adrian Farrel, Deborah Brungard, Lou Berger, Thomas D. Nadeau
for their comments and help. Lou Berger and Adrian Farrel have made
text contributions to this document.
We wish to thank experts from IPPM and BMWG -- Reinhard Schrage, Al
Morton, and Henk Uijterwaal -- for reviewing this document. Reinhard
Schrage has made text contributions to this document.
This document contains ideas as well as text that have appeared in
existing IETF documents. The authors wish to thank G. Almes, S.
Kalidindi, and M. Zekauskas.
We also wish to thank Weisheng Hu, Yaohui Jin, and Wei Guo in the
state key laboratory of advanced optical communication systems and
networks for the valuable comments. We also wish to thank the
support from National Natural Science Foundation of China (NSFC) and
863 program of China.
18. References
18.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC2205] Braden, B., Zhang, L., Berson, S., Herzog, S., and S.
Jamin, "Resource ReSerVation Protocol (RSVP) --
Version 1 Functional Specification", RFC 2205,
September 1997.
[RFC2679] Almes, G., Kalidindi, S., and M. Zekauskas, "A One-
way Delay Metric for IPPM", RFC 2679, September 1999.
[RFC2681] Almes, G., Kalidindi, S., and M. Zekauskas, "A Round-
trip Delay Metric for IPPM", RFC 2681,
September 1999.
Sun & Zhang Standards Track [Page 41]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
[RFC3209] Awduche, D., Berger, L., Gan, D., Li, T., Srinivasan,
V., and G. Swallow, "RSVP-TE: Extensions to RSVP for
LSP Tunnels", RFC 3209, December 2001.
[RFC3471] Berger, L., "Generalized Multi-Protocol Label
Switching (GMPLS) Signaling Functional Description",
RFC 3471, January 2003.
[RFC3473] Berger, L., "Generalized Multi-Protocol Label
Switching (GMPLS) Signaling Resource ReserVation
Protocol-Traffic Engineering (RSVP-TE) Extensions",
RFC 3473, January 2003.
[RFC3945] Mannie, E., "Generalized Multi-Protocol Label
Switching (GMPLS) Architecture", RFC 3945,
October 2004.
[RFC4208] Swallow, G., Drake, J., Ishimatsu, H., and Y.
Rekhter, "Generalized Multiprotocol Label Switching
(GMPLS) User-Network Interface (UNI): Resource
ReserVation Protocol-Traffic Engineering (RSVP-TE)
Support for the Overlay Model", RFC 4208,
October 2005.
18.2. Informative References
[CCAMP-DPM] Sun, W., Zhang, G., Gao, J., Xie, G., Papneja, R.,
Gu, B., Wei, X., Otani, T., and R. Jing, "Label
Switched Path (LSP) Data Path Delay Metric in
Generalized MPLS/ MPLS-TE Networks", Work
in Progress, December 2009.
[CCAMP-SWITCH] Shiomoto, K. and A. Farrel, "Advice on When It is
Safe to Start Sending Data on Label Switched Paths
Established Using RSVP-TE", Work in Progress,
October 2009.
[RFC2330] Paxson, V., Almes, G., Mahdavi, J., and M. Mathis,
"Framework for IP Performance Metrics", RFC 2330,
May 1998.
[RFC3410] Case, J., Mundy, R., Partain, D., and B. Stewart,
"Introduction and Applicability Statements for
Internet-Standard Management Framework", RFC 3410,
December 2002.
Sun & Zhang Standards Track [Page 42]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
Appendix A. Authors' Addresses
Jianhua Gao
Huawei Technologies Co., LTD.
China
Phone: +86 755 28973237
EMail: gjhhit@huawei.com
Guowu Xie
University of California, Riverside
900 University Ave.
Riverside, CA 92521
USA
Phone: +1 951 237 8825
EMail: xieg@cs.ucr.edu
Rajiv Papneja
Isocore
12359 Sunrise Valley Drive, STE 100
Reston, VA 20190
USA
Phone: +1 703 860 9273
EMail: rpapneja@isocore.com
Bin Gu
IXIA
Oriental Kenzo Plaza 8M, 48 Dongzhimen Wai Street, Dongcheng District
Beijing 200240
China
Phone: +86 13611590766
EMail: BGu@ixiacom.com
Xueqin Wei
Fiberhome Telecommunication Technology Co., Ltd.
Wuhan
China
Phone: +86 13871127882
EMail: xqwei@fiberhome.com.cn
Sun & Zhang Standards Track [Page 43]
^L
RFC 5814 LSP Dynamic PPM in GMPLS Networks March 2010
Tomohiro Otani
KDDI R&D Laboratories, Inc.
2-1-15 Ohara Kamifukuoka Saitama
356-8502
Japan
Phone: +81-49-278-7357
EMail: otani@kddilabs.jp
Ruiquan Jing
China Telecom Beijing Research Institute
118 Xizhimenwai Avenue
Beijing 100035
China
Phone: +86-10-58552000
EMail: jingrq@ctbri.com.cn
Editors' Addresses
Weiqiang Sun (editor)
Shanghai Jiao Tong University
800 Dongchuan Road
Shanghai 200240
China
Phone: +86 21 3420 5359
EMail: sunwq@mit.edu
Guoying Zhang (editor)
China Academy of Telecommunication Research, MIIT, China.
No.52 Hua Yuan Bei Lu,Haidian District
Beijing 100083
China
Phone: +86 1062300103
EMail: zhangguoying@mail.ritt.com.cn
Sun & Zhang Standards Track [Page 44]
^L
|