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
|
Internet Engineering Task Force (IETF) L. Andersson
Request for Comments: 9041 Bronze Dragon Consulting
Updates: 8029, 8611 M. Chen
Category: Standards Track Huawei Technologies
ISSN: 2070-1721 C. Pignataro
Cisco Systems
T. Saad
Juniper Networks
July 2021
Updating the MPLS Label Switched Paths (LSPs) Ping Parameters IANA
Registry
Abstract
This document updates RFCs 8029 and 8611, both of which define IANA
registries for MPLS Label Switched Path (LSP) Ping. In particular,
the registration procedure "Private Use" (previously known as "Vendor
Private Use") has been changed to "First Come First Served" for the
TLV and sub-TLV registries.
It also updates the description of the procedures for the responses
sent when an unknown or erroneous code point is found. The updates
are to clarify and align this namespace with recent developments,
e.g., aligning terminology with RFC 8126 instead of the now obsoleted
RFC 5226 (both titled "Guidelines for Writing an IANA Considerations
Section in RFCs").
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 7841.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
https://www.rfc-editor.org/info/rfc9041.
Copyright Notice
Copyright (c) 2021 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
(https://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.
Table of Contents
1. Introduction
1.1. Requirements Language
1.2. Terminology
1.2.1. Terminology Used in This Document
1.2.2. Abbreviations
2. Updating the Message Types, Reply Modes, and Return Codes
Registries
3. Updating the TLV and Sub-TLV Registries
3.1. General Principles for the LSP Ping TLV and Sub-TLV
Registries
3.1.1. Unrecognized Experimental Use TLVs and Sub-TLVs
3.2. Common Registration Procedures for TLVs and Sub-TLVs
3.3. Changes to the LSP Ping Registries
3.3.1. Changes Common to the TLV and Sub-TLV Registries
4. Updates to Related RFCs
4.1. Updates to RFC 8029
4.2. Updates to RFC 8611
5. Security Considerations
6. IANA Considerations
6.1. Updates by IANA to the Message Types, Reply Modes, and
Return Codes Registries
6.1.1. Updates to the Message Types Registry
6.1.2. Updates to the Reply Modes Registry
6.1.3. Updates to the Return Codes Registry
6.2. Updates to the TLV and Sub-TLV Registries
6.2.1. Updates to the TLVs Registry
6.2.2. Updates to the Registry for Sub-TLVs for TLV Types 1,
16, and 21
6.2.3. Updates to the Registry for Sub-TLVs for TLV Type 6
6.2.4. Updates to the Registry for Sub-TLVs for TLV Type 11
6.2.5. Updates to the Registry for Sub-TLVs for TLV Type 20
6.2.6. Updates to the Registry for Sub-TLVs for TLV Type 23
6.2.7. Updates to the Registry for Sub-TLVs for TLV Type 27
7. References
7.1. Normative References
7.2. Informative References
Acknowledgements
Authors' Addresses
1. Introduction
There were a number of reasons to start the work that has led to this
document, e.g.,
* When the LSP Ping registry was created, it was incorrectly assumed
that code points allocated by Experimental RFCs would be
"experimental" code points; a code point made available in a
public IANA registry is not limited by the type of RFC that made
the allocation: it is available for use in any type of document.
* The number of "experimental" code points was also too large as
compared to what is normally allocated for "Experimental Use".
* The words "mandatory" and "optional" are used differently in
[RFC8029] than in other RFCs. For example, [RFC8029] talks about
mandatory TLVs to indicate that it is mandatory to take a certain
action if the TLV is found in a message but is not recognized.
Other RFCs use "mandatory TLV" to indicate a TLV that must be
present in a message.
Over time, there have been attempts to administratively update some
of the registries, but it was soon decided that an RFC was needed.
Other, often minor, potential updates were found, e.g., reserving the
value 0 (zero) in registries where that is possible.
[RFC8029] contains updates to the "Multiprotocol Label Switching
(MPLS) Label Switched Paths (LSPs) Ping Parameters" IANA namespace
[IANA-LSP-PING].
[RFC8611] created LSP Ping IANA registries that match [RFC8126].
This document further clarifies the entries in those registries and
makes the definitions more precise.
This document updates [RFC8029] and [RFC8611] by updating two groups
of registries as follows:
First, the "Message Types" [IANA-MT], "Reply Modes" [IANA-RM], and
"Return Codes" [IANA-RC] registries are updated. The changes to
these registries are minor.
Second, this document updates the TLV and sub-TLV registries listed
below:
* "TLVs", [IANA-TLV-reg]
* "Sub-TLVs for TLV Types 1, 16, and 21", [IANA-Sub-1-16-21]
* "Sub-TLVs for TLV Type 6", [IANA-Sub-6]
* "Sub-TLVs for TLV Type 11", [IANA-Sub-11]
* "Sub-TLVs for TLV Type 20", [IANA-Sub-20]
* "Sub-TLVs for TLV Type 23", [IANA-Sub-23]
* "Sub-TLVs for TLV Type 27", [IANA-Sub-27]
It should be noted that [RFC8029] was published before [RFC8126] and
uses outdated terminology for some registration procedures, e.g.,
"Vendor Private Use". [RFC8611] was published after [RFC8126] and
uses its recommended terminology, e.g., "Private Use". However, now
both "Vendor Private Use" and "Private Use" have been removed and
replaced with "First Come First Served" (FCFS) code points.
One reason to change from code points allocated by Vendor Private Use
or Private Use is that such code points are allowed in production
networks. Theoretically, it is possible that two vendors might use
the same code point value with different meanings. If such a code is
ever deployed in the same network, this could cause protocol issues
that would be hard to debug.
With FCFS code points, this will not happen. Vendors that have
existing code using Vendor Private Use or Private Use code points
should register those code points as FCFS code points as soon as this
document is published as an RFC.
The "Sub-TLVs for TLV Type 9" subregistry is not updated.
Third, according to [RFC8029], some code points (TLVs and sub-TLVs)
are called "mandatory" or "optional". Contrary to how other RFCs use
these words, indicating that it is mandatory or optional to include
the code points in a message, [RFC8029] uses these words to indicate
that an action might or might not be mandatory. This document
updates [RFC8029] to drop the words "mandatory" and "optional", and
the text is changed to focus on what should be done.
1.1. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all
capitals, as shown here.
1.2. Terminology
This section lists terms that are used when discussing the hierarchy
of IANA registries (Section 1.2.1), and abbreviations used in IANA
registries are updated in this document (Section 1.2.2).
1.2.1. Terminology Used in This Document
Terms related to IANA registries are used as follows in this
document:
Namespace
A namespace is a top-level registry. An example could be
"Multiprotocol Label Switching (MPLS) Label Switched Paths (LSPs)
Ping Parameters" [IANA-LSP-PING]. A namespace is most often a
container for registries that hold code points that share some
affinity.
Registry
An IANA registry holds code points and lists the registration
procedures and allocation for these code points. One example
would be the "TLVs" registry [IANA-TLV-reg].
Subregistry
A subregistry is used when a code point, or a set of code points
allocated in a single registry, needs "sub-code-points" scoped by
the code point or the set of code points. An example of a
subregistry that holds code points for more than one TLV is
"Sub-TLVs for TLV Types 1, 16, and 21" [IANA-Sub-1-16-21].
1.2.2. Abbreviations
This section lists abbreviations used in the unchanged part of the
registries updated by this document. These abbreviations were
originally expanded in the document defining the registries. They
are listed here following the requirement to expand any abbreviation
that is not well known. All these abbreviations are from the "Return
Codes" registry [IANA-RC].
BFD: Bidirectional Forwarding Detection
DDMAP: Downstream Detailed Mapping
FEC: Forwarding Equivalence Class
OAM: Operation, Administration, and Maintenance
PM: Performance Monitoring
RSC: Return Subcode
2. Updating the Message Types, Reply Modes, and Return Codes Registries
The following changes have been made to the "Message Types"
[IANA-MT], "Reply Modes" [IANA-RM], and "Return Codes" [IANA-RC]
registries.
* In the listing of assigned code points, the term "Vendor Private
Use" is changed to "Private Use" for the 252-255 range. The
registration procedures have been updated to reflect this.
* The registration procedure "Specification Required" is changed to
"RFC Required" and the note "Experimental RFC needed" is removed
for the 192-247 range.
* A small set of four code points (248-251) for Experimental Use is
added by reducing the "RFC Required" range. The registration
procedures have been updated to reflect this.
* A note "Reserved, not to be assigned" has been added for the
registration procedures of the "Private Use" and "Experimental
Use" ranges.
* In the lists that capture the assignment status, the fields that
are reserved, i.e., 0 (zero), Private Use, and Experimental Use,
are clearly marked as such.
- Note that in the "Return Codes" registry [IANA-RC], the code
point "0" has already been assigned. This assignment is not
changed, and in this registry, the code point "0" continues to
be assigned as "No Return Code".
The new registration procedures, the registry layouts, and the new
assignments for these registries are found in Section 6.1.
3. Updating the TLV and Sub-TLV Registries
3.1. General Principles for the LSP Ping TLV and Sub-TLV Registries
The following principles apply to the processing of any TLV from any
of the LSP Ping TLV and sub-TLV IANA registries.
* All TLVs and sub-TLVs with a type in the range 0-32767 require a
response if they are not recognized.
* All TLVs and sub-TLVs in the range 32768-65535 can be silently
dropped if they are not recognized. Alternatively, the receiver
may step over the unrecognized TLV or send an error message.
Each of the blocks has code point spaces with the following
registration procedures:
* Standards Action
* RFC Required
* Experimental Use
* First Come First Served (FCFS)
The exact definitions of these procedures are found in [RFC8126].
3.1.1. Unrecognized Experimental Use TLVs and Sub-TLVs
Unrecognized TLVs and sub-TLVs in the Experimental Use and FCFS
ranges are handled as any other unrecognized TLV or sub-TLV.
* If the unrecognized TLV or sub-TLV is from the Experimental Use
range (31740-31743) or from the FCFS range (31744-32767), a Return
Code of 2 ("One or more of the TLVs was not understood") must be
sent in the echo response.
* If a TLV or sub-TLV from the Experimental Use range (64508-64511)
or from the FCFS range (64512-65535) is unrecognized, then the
receiver can silently drop the TLV. Alternatively, the receiver
may step over the unrecognized TLV or send an error message.
The IETF does not prescribe how recognized or unrecognized
Experimental Use and Private Use TLVs and sub-TLVs are handled in
experimental or private networks; that is up to the agency running
the experimental or the private network. The statement above
describes how standards-compliant implementations must treat the
unrecognized TLVs and sub-TLVs from these ranges.
3.2. Common Registration Procedures for TLVs and Sub-TLVs
This section describes the new registration procedures for the TLV
and sub-TLV registries.
+=============+==============+=====================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+=====================================+
| 0-16383 | Standards | This range is for TLVs and sub-TLVs |
| | Action | that require an error message if |
| | | not recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+-------------------------------------+
| 16384-31739 | RFC Required | This range is for TLVs and sub-TLVs |
| | | that require an error message if |
| | | not recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+-------------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range is |
| | Experimental | for TLVs and sub-TLVs that require |
| | Use | an error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+-------------------------------------+
| 31744-32767 | FCFS | This range is for TLVs and sub-TLVs |
| | | that require an error message if |
| | | not recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+-------------------------------------+
| 32768-49161 | Standards | This range is for TLVs and sub-TLVs |
| | Action | that can be silently dropped if not |
| | | recognized. |
+-------------+--------------+-------------------------------------+
| 49162-64507 | RFC Required | This range is for TLVs and sub-TLVs |
| | | that can be silently dropped if not |
| | | recognized. |
+-------------+--------------+-------------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range is |
| | Experimental | for TLVs and sub-TLVs that can be |
| | Use | silently dropped if not recognized. |
+-------------+--------------+-------------------------------------+
| 64512-65535 | FCFS | This range is for TLVs and sub-TLVs |
| | | that can be silently dropped if not |
| | | recognized. |
+-------------+--------------+-------------------------------------+
Table 1: TLV and Sub-TLV Registration Procedures
3.3. Changes to the LSP Ping Registries
This section lists the changes to each MPLS LSP Ping TLV and sub-TLV
registry. Sections 6.2.1 to 6.2.7 describe how the new versions of
the IANA registries should look, together with the registration
procedures for each registry.
The new registration procedure descriptions and the new assignments
for these registries are used to model the changed MPLS LSP Ping
registries; see Section 6.
3.3.1. Changes Common to the TLV and Sub-TLV Registries
The following changes are made to the TLV and sub-TLV registries.
* The registration procedures "First Come First Served" (FCFS) and
"Experimental Use" have been added to the table of registration
procedures.
* Two small sets of code points (four code points each) for
Experimental Use have been created. The first set is for the
range that requires a response if the TLV or sub-TLV is not
recognized; the second set is for the range where the TLV or sub-
TLV may be silently dropped if not recognized. The code points
for Experimental Use have been taken from the ranges previously
called "Specification Required" and "RFC Required" [RFC8029].
* The registration procedure "Specification Required" has been
changed to "RFC Required", and the note "Experimental RFC needed"
has been removed.
* In the listing of assignments, the term "Vendor Private Use" has
been changed to "First Come First Served" (FCFS).
* In the listing of assignments, the range for "Experimental Use"
has been added.
* A note saying "Not to be assigned" has been added for the
registration procedure "Experimental Use".
* In the list that captures assignment status, the fields that are
reserved, i.e., 0 (zero) and Experimental Use, have been clearly
marked.
4. Updates to Related RFCs
Some referenced RFCs use the concept "mandatory TLVs" and "mandatory
sub-TLVs" to indicate that, if a TLV or sub-TLV of the range 0-32767
in a message is not understood, an error message needs to be sent in
response.
The same RFCs use "optional TLVs" and "optional sub-TLVs" to mean
TLVs or sub-TLVs that can be silently ignored if not recognized.
Since other RFCs use "mandatory TLVs" and "mandatory sub-TLVs" to
indicate TLVs and sub-TLVs that must be present in a message, we want
to discontinue the use of "mandatory" to indicate TLVs and sub-TLVs
that require an error message in response if not understood. The
changes to the RFCs below align with this practice.
4.1. Updates to RFC 8029
"Mandatory" and "optional" are used to indicate whether a response is
needed if a TLV or sub-TLV is not understood in Section 3 of
"Detecting Multiprotocol Label Switched (MPLS) Data-Plane Failures"
[RFC8611].
The text in those two paragraphs is now updated to the following:
| TLV and sub-TLV types less than 32768 (i.e., with the high-order
| bit equal to 0) are TLVs and sub-TLVs that MUST either be
| supported by an implementation or result in a Return Code of 2
| ("One or more of the TLVs was not understood") being sent in the
| echo response.
|
| An implementation that does not understand or support a received
| TLV or sub-TLV with a type greater than or equal to 32768 (i.e.,
| with the high-order bit equal to 1) SHOULD ignore and step over
| the TLV or sub-TLV; however, an implementation MAY send an echo
| response with a Return Code of 2 ("One or more of the TLVs was not
| understood") as it would have done if the high-order bit had been
| clear.
In Section 3.8 of [RFC8029], "mandatory" is used in the same way.
The first two paragraphs of this section are now updated to read as
follows:
| The following TLV is a TLV that MAY be included in an echo reply
| to inform the sender of an echo request that includes TLV or sub-
| TLV Types less than 32768 (i.e., with the high-order bit equal to
| 0) that are either not supported by the implementation or parsed
| and found to be in error.
|
| The Value field uses sub-TLVs to encode the received TLVs and sub-
| TLVs that were not understood.
4.2. Updates to RFC 8611
Section 13.4.1 of "Label Switched Path (LSP) Ping and Traceroute
Multipath Support for Link Aggregation Group (LAG) Interfaces"
[RFC8611] defines "Sub-TLVs for TLV Type 6" [IANA-Sub-6].
The "Sub-TLVs for TLV Type 6" registry has been updated to align with
changes defined in this document.
Section 13.4.1 of [RFC8611] is now updated as follows:
| Section 13.4.1 Sub-TLVs for TLV Type 6
IANA has created a new subregistry, "Sub-TLVs for TLV Type 6",
[IANA-Sub-6] under the "TLVs" registry [IANA-TLV-reg] of the
"Multiprotocol Label Switching (MPLS) Label Switched Paths (LSPs)
Ping Parameters" namespace [lsp-ping-Namespace].
The "Sub-TLVs for TLV Type 6" subregistry is now updated to align
with changes defined in this document.
+=============+==============+==================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+==================================+
| 0-16383 | Standards | This range is for sub-TLVs that |
| | Action | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 16384-31739 | RFC Required | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that require an |
| | Use | error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+----------------------------------+
| 31744-32767 | FCFS | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 32768-49161 | Standards | This range is for sub-TLVs that |
| | Action | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 49162-64507 | RFC Required | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that can be |
| | Use | silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64512-65535 | FCFS | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
Table 2: Sub-TLVs for TLV Type 6 Registration Procedures
5. Security Considerations
This document updates IANA registries. It also updates terminology
used to define, and clarifies the terminology related to, the code
points in the registries. The document does not change how the code
points in the registries are used. This should not create any new
threats.
However, the updated terminology and the clarifications improve
security because it makes it more likely that implementations will be
consistent and harder to attack.
6. IANA Considerations
IANA has updated the "Multiprotocol Label Switching (MPLS) Label
Switched Paths (LSPs) Ping Parameters" namespace [IANA-LSP-PING] as
described in this document.
See Section 1.2.1 of "Terminology Used in This Document" to see how
"namespace", "registry", and "subregistry" are used in this document.
In other parts of this document, the commonality of the changes to
the LSP Ping registries has been the focus. For the IANA
Considerations, each changed registry has been described in its own
right.
The following registries and subregistries have been changed:
* "Message Types", [IANA-MT]
* "Reply Modes", [IANA-RM]
* "Return Codes", [IANA-RC]
* "TLVs", [IANA-TLV-reg]
* "Sub-TLVs for TLV Types 1, 16, and 21", [IANA-Sub-1-16-21]
* "Sub-TLVs for TLV Type 6", [IANA-Sub-6]
* "Sub-TLVs for TLV Type 11", [IANA-Sub-11]
* "Sub-TLVs for TLV Type 20", [IANA-Sub-20]
* "Sub-TLVs for TLV Type 23", [IANA-Sub-23]
* "Sub-TLVs for TLV Type 27", [IANA-Sub-27]
This document has been listed as an additional reference for each of
the registries described in Sections 6.1 and 6.2.
6.1. Updates by IANA to the Message Types, Reply Modes, and Return
Codes Registries
This section details the updated registration procedures and
allocations for the "Message Types", "Reply Modes", and "Return
Codes" registries.
6.1.1. Updates to the Message Types Registry
These are the changes to the "Message Types" registry specified in
this document:
* Code Point 0 (zero) has been marked Reserved.
* The registration procedure "Specification Required" has been
changed to "RFC Required", and the comment "Experimental RFC
needed" has been removed.
* Four code points have been taken from what was previously
"Specification Required" to form a set of code points for
"Experimental Use".
The registration procedures after the changes listed above for the
"Message Types" registry are shown in the table below:
+=========+=========================+==============================+
| Range | Registration Procedures | Note |
+=========+=========================+==============================+
| 0-191 | Standards Action | |
+---------+-------------------------+------------------------------+
| 192-247 | RFC Required | |
+---------+-------------------------+------------------------------+
| 248-251 | Experimental Use | Reserved, not to be assigned |
+---------+-------------------------+------------------------------+
| 252-255 | Private Use | Reserved, not to be assigned |
+---------+-------------------------+------------------------------+
Table 3: Message Types Registration Procedures
The updated assignments for the "Message Types" registry appear as
follows:
+=========+===============================+===============+
| Value | Meaning | Reference |
+=========+===============================+===============+
| 0 | Reserved | This document |
+---------+-------------------------------+---------------+
| 1 | MPLS Echo Request | [RFC8029] |
+---------+-------------------------------+---------------+
| 2 | MPLS Echo Reply | [RFC8029] |
+---------+-------------------------------+---------------+
| 3 | MPLS Proxy Ping Request | [RFC7555] |
+---------+-------------------------------+---------------+
| 4 | MPLS Proxy Ping Reply | [RFC7555] |
+---------+-------------------------------+---------------+
| 5 | MPLS Relayed Echo Reply | [RFC7743] |
+---------+-------------------------------+---------------+
| 6-247 | Unassigned | |
+---------+-------------------------------+---------------+
| 248-251 | Reserved for Experimental Use | This document |
+---------+-------------------------------+---------------+
| 252-255 | Reserved for Private Use | [RFC8029] |
+---------+-------------------------------+---------------+
Table 4: Assignments for the Message Types Registry
6.1.2. Updates to the Reply Modes Registry
These are the changes to the "Reply Modes" registry specified in this
document:
* Code Point 0 (zero) has been marked Reserved.
* The registration procedure "Specification Required" has been
changed to "RFC Required", and the comment "Experimental RFC
needed" has been removed.
* Four code points have been taken from what was previously
"Specification Required" to form a set of code points for
"Experimental Use".
The registration procedures after the changes for the "Reply Modes"
registry are shown in the table below:
+=========+=========================+==============================+
| Range | Registration Procedures | Note |
+=========+=========================+==============================+
| 0-191 | Standards Action | |
+---------+-------------------------+------------------------------+
| 192-247 | RFC Required | |
+---------+-------------------------+------------------------------+
| 248-251 | Experimental Use | Reserved, not to be assigned |
+---------+-------------------------+------------------------------+
| 252-255 | Private Use | Reserved, not to be assigned |
+---------+-------------------------+------------------------------+
Table 5: Reply Modes Registration Procedures
The updated assignments for the "Reply Modes" registry are as
follows:
+=========+===================================+===============+
| Value | Meaning | Reference |
+=========+===================================+===============+
| 0 | Reserved | This document |
+---------+-----------------------------------+---------------+
| 1 | Do not reply | [RFC8029] |
+---------+-----------------------------------+---------------+
| 2 | Reply via an IPv4/IPv6 UDP packet | [RFC8029] |
+---------+-----------------------------------+---------------+
| 3 | Reply via an IPv4/IPv6 UDP packet | [RFC8029] |
| | with Router Alert | |
+---------+-----------------------------------+---------------+
| 4 | Reply via application-level | [RFC8029] |
| | control channel | |
+---------+-----------------------------------+---------------+
| 5 | Reply via Specified Path | [RFC7110] |
+---------+-----------------------------------+---------------+
| 6-247 | Unassigned | |
+---------+-----------------------------------+---------------+
| 248-251 | Reserved for Experimental Use | This document |
+---------+-----------------------------------+---------------+
| 252-255 | Reserved for Private Use | [RFC8029] |
+---------+-----------------------------------+---------------+
Table 6: Assignments for the Reply Modes Registry
6.1.3. Updates to the Return Codes Registry
These are the changes to the "Return Codes" registry specified in
this document:
* The registration procedure "Specification Required" has been
changed to "RFC Required", and the comment "Experimental RFC
needed" has been removed.
* Four code points have been taken from what was previously
"Specification Required" to form a set of code points for
"Experimental Use".
The registration procedures after the changes for the "Return Codes"
registry are shown in the table below:
+=========+=========================+==============================+
| Range | Registration Procedures | Note |
+=========+=========================+==============================+
| 0-191 | Standards Action | |
+---------+-------------------------+------------------------------+
| 192-247 | RFC Required | |
+---------+-------------------------+------------------------------+
| 248-251 | Experimental Use | Reserved, not to be assigned |
+---------+-------------------------+------------------------------+
| 252-255 | Private Use | Reserved, not to be assigned |
+---------+-------------------------+------------------------------+
Table 7: Return Codes Registration Procedures
The updated assignments for the "Return Codes" registry are as
follows:
+=========+=========================================+=============+
| Value | Meaning | Reference |
+=========+=========================================+=============+
| 0 | No Return Code | [RFC8029] |
+---------+-----------------------------------------+-------------+
| 1 | Malformed echo request received | [RFC8029] |
+---------+-----------------------------------------+-------------+
| 2 | One or more of the TLVs was not | [RFC8029] |
| | understood | |
+---------+-----------------------------------------+-------------+
| 3 | Replying router is an egress for the | [RFC8029] |
| | FEC at stack-depth <RSC> | |
+---------+-----------------------------------------+-------------+
| 4 | Replying router has no mapping for the | [RFC8029] |
| | FEC at stack-depth <RSC> | |
+---------+-----------------------------------------+-------------+
| 5 | Downstream Mapping Mismatch (See [1]) | [RFC8029] |
+---------+-----------------------------------------+-------------+
| 6 | Upstream Interface Index Unknown (See | [RFC8029] |
| | [1]) | |
+---------+-----------------------------------------+-------------+
| 7 | Reserved | [RFC8029] |
+---------+-----------------------------------------+-------------+
| 8 | Label switched at stack-depth <RSC> | [RFC8029] |
+---------+-----------------------------------------+-------------+
| 9 | Label switched but no MPLS forwarding | [RFC8029] |
| | at stack-depth <RSC> | |
+---------+-----------------------------------------+-------------+
| 10 | Mapping for this FEC is not the given | [RFC8029] |
| | label at stack-depth <RSC> | |
+---------+-----------------------------------------+-------------+
| 11 | No label entry at stack-depth <RSC> | [RFC8029] |
+---------+-----------------------------------------+-------------+
| 12 | Protocol not associated with interface | [RFC8029] |
| | at FEC stack-depth <RSC> | |
+---------+-----------------------------------------+-------------+
| 13 | Premature termination of ping due to | [RFC8029] |
| | label stack shrinking to a single label | |
+---------+-----------------------------------------+-------------+
| 14 | See DDMAP TLV for meaning of Return | [RFC8029] |
| | Code and Return Subcode (See [2]) | |
+---------+-----------------------------------------+-------------+
| 15 | Label switched with FEC change | [RFC8029] |
+---------+-----------------------------------------+-------------+
| 16 | Proxy Ping not authorized | [RFC7555] |
+---------+-----------------------------------------+-------------+
| 17 | Proxy Ping parameters need to be | [RFC7555] |
| | modified | |
+---------+-----------------------------------------+-------------+
| 18 | MPLS Echo Request could not be sent | [RFC7555] |
+---------+-----------------------------------------+-------------+
| 19 | Replying router has FEC mapping for | [RFC7555] |
| | topmost FEC | |
+---------+-----------------------------------------+-------------+
| 20 | One or more TLVs not returned due to | [RFC7743] |
| | MTU size | |
+---------+-----------------------------------------+-------------+
| 21 | OAM Problem/Unsupported BFD Version | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 22 | OAM Problem/Unsupported BFD | [RFC7759] |
| | Encapsulation format | |
+---------+-----------------------------------------+-------------+
| 23 | OAM Problem/Unsupported BFD | [RFC7759] |
| | Authentication Type | |
+---------+-----------------------------------------+-------------+
| 24 | OAM Problem/Mismatch of BFD | [RFC7759] |
| | Authentication Key ID | |
+---------+-----------------------------------------+-------------+
| 25 | OAM Problem/Unsupported Timestamp | [RFC7759] |
| | Format | |
+---------+-----------------------------------------+-------------+
| 26 | OAM Problem/Unsupported Delay Mode | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 27 | OAM Problem/Unsupported Loss Mode | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 28 | OAM Problem/Delay variation unsupported | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 29 | OAM Problem/Dyadic mode unsupported | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 30 | OAM Problem/Loopback mode unsupported | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 31 | OAM Problem/Combined mode unsupported | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 32 | OAM Problem/Fault management signaling | [RFC7759] |
| | unsupported | |
+---------+-----------------------------------------+-------------+
| 33 | OAM Problem/Unable to create fault | [RFC7759] |
| | management association | |
+---------+-----------------------------------------+-------------+
| 34 | OAM Problem/PM Configuration Error | [RFC7759] |
+---------+-----------------------------------------+-------------+
| 35 | Mapping for this FEC is not associated | [RFC8287], |
| | with the incoming interface | Section 7.4 |
+---------+-----------------------------------------+-------------+
| 36-247 | Unassigned | |
+---------+-----------------------------------------+-------------+
| 248-251 | Reserved for Experimental Use | This |
| | | document |
+---------+-----------------------------------------+-------------+
| 252-255 | Reserved for Private Use | [RFC8029] |
+---------+-----------------------------------------+-------------+
Table 8: Assignments for the Return Codes Registry
Note 1: Notes [1] and [2] for code points 5, 6, and 14 point to
footnotes in the "Multiprotocol Label Switching (MPLS) Label
Switched Paths (LSPs) Ping Parameters" namespace. The footnotes
are not changed by this document.
Note 2: <RSC> stands for "Return Subcode" and is explained in
Section 3.1 of [RFC8029].
6.2. Updates to the TLV and Sub-TLV Registries
The updates to the TLV and the sub-TLV registries are mostly the
same; however, the "Sub-TLVs for TLV Type 9" [IANA-Sub-9] registry
has not been updated.
Note that when a field in an assignment table says "EQ", it means
that there is no change from the existing field in the "Multiprotocol
Label Switching (MPLS) Label Switched Paths (LSPs) Ping Parameters"
namespace [IANA-LSP-PING].
6.2.1. Updates to the TLVs Registry
This section describes the new registration procedures and the
assignments for the "TLVs" registry [IANA-TLV-reg] that are based on
them.
The registration procedures have been changed, as follows, for the
"TLVs" registry.
* The "Specification Required" registration procedure has been
changed to "RFC Required". The comment "Experimental RFC
Required" has been removed. Note that when a field in an
assignment table says "EQ", it means that there is no change from
the existing field in the "Multiprotocol Label Switching (MPLS)
Label Switched Paths (LSPs) Ping Parameters" namespace
[IANA-LSP-PING].
* [RFC8611] was published after [RFC8126] and uses the new
terminology, e.g., "Private Use". The code points registration
procedure "Private Use" has been replaced by the "First Come First
Served" code point registration procedure.
* Two small sets, four code points each, have been created for
Experimental Use.
* Code points that are reserved are clearly marked as such.
* The assignments have been updated to match the new registration
procedures.
* The notes related to the registration procedures have been changed
to reflect whether or not a response is required if a TLV is not
recognized.
The registration procedures for the "TLVs" registry [IANA-TLV-reg]
after the changes listed above are shown in the table below:
+=============+==============+=====================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+=====================================+
| 0-16383 | Standards | This range is for TLVs that require |
| | Action | an error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+-------------------------------------+
| 16384-31739 | RFC Required | This range is for TLVs that require |
| | | an error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+-------------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range is |
| | Experimental | for TLVs that require an error |
| | Use | message if not recognized. This |
| | | document, Section 3.1 |
+-------------+--------------+-------------------------------------+
| 31744-32767 | FCFS | This range is for TLVs that require |
| | | an error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+-------------------------------------+
| 32768-49161 | Standards | This range is for TLVs that can be |
| | Action | silently dropped if not recognized. |
+-------------+--------------+-------------------------------------+
| 49162-64507 | RFC Required | This range is for TLVs that can be |
| | | silently dropped if not recognized. |
+-------------+--------------+-------------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range is |
| | Experimental | for TLVs that can be silently |
| | Use | dropped if not recognized. |
+-------------+--------------+-------------------------------------+
| 64512-65535 | FCFS | This range is for TLVs that can be |
| | | silently dropped if not recognized. |
+-------------+--------------+-------------------------------------+
Table 9: TLVs Registration Procedures
The updated assignments for this registry appear as follows:
Note that when a field in an assignment table says "EQ", it means
that there was no change from the existing field in the
"Multiprotocol Label Switching (MPLS) Label Switched Paths (LSPs)
Ping Parameters" namespace [IANA-LSP-PING].
+=============+==============+===========+=======================+
| Type | TLV Name | Reference | Sub-TLV Registry |
+=============+==============+===========+=======================+
| 0 | Reserved | This | |
| | | document | |
+-------------+--------------+-----------+-----------------------+
| 1-7 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 8 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 9-16 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 17-19 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 20-27 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 28-31739 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 31740-31743 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | TLVs that require an |
| | | | error message if not |
| | | | recognized. This |
| | | | document, Section 3.1 |
+-------------+--------------+-----------+-----------------------+
| 31744-32767 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 32768-32770 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 32771-64507 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 64508-64511 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | TLVs that can be |
| | | | silently dropped if |
| | | | not recognized. |
+-------------+--------------+-----------+-----------------------+
| 64512-65535 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
Table 10: TLV Assignments
6.2.2. Updates to the Registry for Sub-TLVs for TLV Types 1, 16, and 21
This section describes the new registration procedures and the
assignments for the "Sub-TLVs for TLV Types 1, 16, and 21"
[IANA-Sub-1-16-21] subregistry that are based on them.
* The "Specification Required" registration procedure has been
changed to "RFC Required", and the comment "Experimental RFC
Required" has been removed.
* The code points registration procedure "Vendor Private Use" has
been removed and replaced with "First Come First Served"
procedure.
* Two small sets, four code points each, have been created for
Experimental Use.
* Code points that are reserved are clearly marked as such.
* The assignments have been updated to match the new registration
procedures.
* The notes related to the registration procedures have been changed
to reflect whether or not a response is required if a sub-TLV is
not recognized.
The registration procedures for the "Sub-TLVs for TLV Types 1, 16,
and 21" [IANA-Sub-1-16-21] subregistry appear as follows after the
changes listed above:
+=============+==============+==================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+==================================+
| 0-16383 | Standards | This range is for sub-TLVs that |
| | Action | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 16384-31739 | RFC Required | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that require an |
| | Use | error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+----------------------------------+
| 31744-32767 | FCFS | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 32768-49161 | Standards | This range is for sub-TLVs that |
| | Action | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 49162-64507 | RFC Required | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that can be |
| | Use | silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64512-65535 | FCFS | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
Table 11: Registration Procedures for Sub-TLVs for TLV Types
1, 16, and 21
+=============+==============+===========+=======================+
| Sub-Type | Sub-TLV Name | Reference | Comment |
+=============+==============+===========+=======================+
| 0 | Reserved | This | |
| | | document | |
+-------------+--------------+-----------+-----------------------+
| 1-4 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 5 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 6-8 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 9 | EQ | EQ | DEPRECATED |
+-------------+--------------+-----------+-----------------------+
| 10-20 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 21 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 22-37 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 38 | PeerAdj SID | [draft- | TEMPORARY - |
| | Sub-TLV | ietf- | registered |
| | | mpls-sr- | 2021-05-11, expires |
| | | epe-oam- | 2022-05-11 |
| | | 03] | |
+-------------+--------------+-----------+-----------------------+
| 39 | PeerNode SID | [draft- | TEMPORARY - |
| | Sub-TLV | ietf- | registered |
| | | mpls-sr- | 2021-05-11, expires |
| | | epe-oam- | 2022-05-11 |
| | | 03] | |
+-------------+--------------+-----------+-----------------------+
| 40 | PeerSet SID | [draft- | TEMPORARY - |
| | Sub-TLV | ietf- | registered |
| | | mpls-sr- | 2021-05-11, expires |
| | | epe-oam- | 2022-05-11 |
| | | 03] | |
+-------------+--------------+-----------+-----------------------+
| 41-31739 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 31740-31743 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | sub-TLVs that require |
| | | | an error message if |
| | | | not recognized. This |
| | | | document, Section 3.1 |
+-------------+--------------+-----------+-----------------------+
| 31744-64507 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 64508-64511 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | sub-TLVs that can be |
| | | | silently dropped if |
| | | | not recognized. |
+-------------+--------------+-----------+-----------------------+
| 64512-65535 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
Table 12: Sub-TLV for TLVs 1, 16, and 21 Assignments
6.2.3. Updates to the Registry for Sub-TLVs for TLV Type 6
This section describes the new registration procedures and the
assignments for the "Sub-TLVs for TLV Type 6" [IANA-Sub-6]
subregistry that are based on them.
* [RFC8611] was published after [RFC8126] and uses the new
terminology, e.g., "Private Use". The code points registration
procedure "Private Use" has been replaced by the "First Come First
Served" code point registration procedure.
* Two small sets, four code points each, have been created for
Experimental Use.
* Code points that are reserved are clearly marked as such.
* The assignments have been updated to match the new registration
procedures.
* The notes related to the registration procedures have been changed
to reflect whether or not a response is required if a sub-TLV is
not recognized.
The registration procedures for the "Sub-TLVs for TLV Type 6"
[IANA-Sub-6] subregistry after the changes listed above are shown in
the table below:
+=============+==============+==================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+==================================+
| 0-16383 | Standards | This range is for sub-TLVs that |
| | Action | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 16384-31739 | RFC Required | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that require an |
| | Use | error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+----------------------------------+
| 31744-32767 | FCFS | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 32768-49161 | Standards | This range is for sub-TLVs that |
| | Action | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 49162-64507 | RFC Required | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that can be |
| | Use | silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64512-65535 | FCFS | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
Table 13: Registration Procedures for Sub-TLVs for TLV Type 6
+=============+==============+===========+=======================+
| Sub-Type | Sub-TLV Name | Reference | Comment |
+=============+==============+===========+=======================+
| 0 | Reserved | This | |
| | | document, | |
| | | [RFC8611] | |
+-------------+--------------+-----------+-----------------------+
| 1-2 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 3-31739 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 31740-31743 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | sub-TLVs that require |
| | | | an error message if |
| | | | not recognized. This |
| | | | document, Section 3.1 |
+-------------+--------------+-----------+-----------------------+
| 31744-64507 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 64508-64511 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | sub-TLVs that can be |
| | | | silently dropped if |
| | | | not recognized. |
+-------------+--------------+-----------+-----------------------+
| 64512-65535 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
Table 14: Sub-TLVs for TLV Type 6 Assignments
6.2.4. Updates to the Registry for Sub-TLVs for TLV Type 11
This section describes the new registration procedures and the
assignments for the "Sub-TLVs for TLV Type 11" [IANA-Sub-11]
subregistry that are based on them.
* The "Specification Required" registration procedure has been
changed to "RFC Required", and the comment "Experimental RFC
Required" has been removed.
* The code points registration procedure "Vendor Private Use" has
been removed and replaced with "First Come First Served" code
points.
* Two small sets, four code points each, have been created for
Experimental Use.
* Code points that are reserved are clearly marked as such.
* The assignments have been updated to match the new registration
procedures.
* The notes related to the registration procedures have been changed
to reflect whether or not a response is required if a sub-TLV is
not recognized.
The registration procedures for the "Sub-TLVs for TLV Type 11"
[IANA-Sub-11] subregistry after the changes listed above are shown in
the table below:
+=============+==============+==================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+==================================+
| 0-16383 | Standards | This range is for sub-TLVs that |
| | Action | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 16384-31739 | RFC Required | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that require an |
| | Use | error message if not recognized. |
| | | This document, Section 3.1 |
+-------------+--------------+----------------------------------+
| 31744-32767 | FCFS | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1 |
+-------------+--------------+----------------------------------+
| 32768-49161 | Standards | This range is for sub-TLVs that |
| | Action | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 49162-64507 | RFC Required | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that can be |
| | Use | silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64512-65535 | FCFS | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
Table 15: Registration Procedures for Sub-TLVs for TLV Type 11
+=============+==============+===========+=======================+
| Sub-Type | Sub-TLV Name | Reference | Comment |
+=============+==============+===========+=======================+
| 0 | Reserved | This | |
| | | document | |
+-------------+--------------+-----------+-----------------------+
| 1-4 | EQ | EQ | EQ |
+-------------+--------------+-----------+-----------------------+
| 5-31739 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 31740-31743 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | sub-TLVs that require |
| | | | an error message if |
| | | | not recognized. This |
| | | | document, Section 3.1 |
+-------------+--------------+-----------+-----------------------+
| 31744-64507 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
| 64508-64511 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for |
| | Use | | sub-TLVs that can be |
| | | | silently dropped if |
| | | | not recognized. |
+-------------+--------------+-----------+-----------------------+
| 64512-65535 | Unassigned | | |
+-------------+--------------+-----------+-----------------------+
Table 16: Sub-TLVs for TLV Type 11 Assignments
6.2.5. Updates to the Registry for Sub-TLVs for TLV Type 20
This section describes the new registration procedures and the
assignments for the "Sub-TLVs for TLV Type 20" [IANA-Sub-20]
subregistry that are based on them.
* The "Specification Required" registration procedure has been
changed to "RFC Required", and the comment "Experimental RFC
Required" has been removed.
* The code points registration procedure "Vendor Private Use" has
been removed and replaced with "First Come First Served" code
points.
* Two small sets, four code points each, have been created for
Experimental Use.
* Code points that are reserved are clearly marked as such.
* The assignments have been updated to match the new registration
procedures.
* The notes related to the registration procedures have been changed
to reflect whether or not a response is required if a sub-TLV is
not recognized.
The registration procedures for the "Sub-TLVs for TLV Type 20"
[IANA-Sub-20] subregistry after the changes listed above are shown in
the table below:
+=============+==============+==================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+==================================+
| 0-16383 | Standards | This range is for sub-TLVs that |
| | Action | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 16384-31739 | RFC Required | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that require an |
| | Use | error message if not recognized. |
| | | This document, Section 3.1] |
+-------------+--------------+----------------------------------+
| 31744-32767 | FCFS | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 32768-49161 | Standards | This range is for sub-TLVs that |
| | Action | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 49162-64507 | RFC Required | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that can be |
| | Use | silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64512-65535 | FCFS | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
Table 17: Registration Procedures for Sub-TLVs for TLV Type 20
+=============+==============+===========+========================+
| Sub-Type | Sub-TLV Name | Reference | Comment |
+=============+==============+===========+========================+
| 0 | Reserved | This | |
| | | document | |
+-------------+--------------+-----------+------------------------+
| 1-5 | EQ | EQ | EQ |
+-------------+--------------+-----------+------------------------+
| 6-31739 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 31740-31743 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for sub- |
| | Use | | TLVs that require an |
| | | | error message if not |
| | | | recognized. This |
| | | | document, Section 3.1] |
+-------------+--------------+-----------+------------------------+
| 31744-64507 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 64508-64511 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for sub- |
| | Use | | TLVs that can be |
| | | | silently dropped if |
| | | | not recognized. |
+-------------+--------------+-----------+------------------------+
| 64512-65535 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
Table 18: Sub-TLVs for TLV Type 20 Assignments
6.2.6. Updates to the Registry for Sub-TLVs for TLV Type 23
This section describes the new registration procedures and the
assignments for the "Sub-TLVs for TLV Type 23" [IANA-Sub-23]
subregistry that are based on them.
* The "Specification Required" registration procedure has been
changed to "RFC Required", and the comment "Experimental RFC
Required" has been removed.
* The code points registration procedure "Vendor Private Use" has
been removed and replaced with "First Come First Served" code
points.
* Two small sets, four code points each, have been created for
Experimental Use.
* Code points that are reserved are clearly marked as such.
* The assignments have been updated to match the new registration
procedures.
* The notes related to the registration procedures have been changed
to reflect whether or not a response is required if a sub-TLV is
not recognized.
The registration procedures for the "Sub-TLVs for TLV Type 23"
[IANA-Sub-23] subregistry after the changes listed above are shown in
the table below:
+=============+==============+==================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+==================================+
| 0-16383 | Standards | This range is for sub-TLVs that |
| | Action | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 16384-31739 | RFC Required | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that require an |
| | Use | error message if not recognized. |
| | | This document, Section 3.1] |
+-------------+--------------+----------------------------------+
| 31744-32767 | FCFS | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 32768-49161 | Standards | This range is for sub-TLVs that |
| | Action | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 49162-64507 | RFC Required | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64508-64511 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that can be |
| | Use | silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64512-65535 | FCFS | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
Table 19: Registration Procedures for Sub-TLVs for TLV Type 23
+=============+==============+===========+========================+
| Sub-Type | Sub-TLV Name | Reference | Comment |
+=============+==============+===========+========================+
| 0 | Reserved | [RFC7555] | |
+-------------+--------------+-----------+------------------------+
| 1 | EQ | EQ | EQ |
+-------------+--------------+-----------+------------------------+
| 2-31739 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 31740-31743 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for sub- |
| | Use | | TLVs that require an |
| | | | error message if not |
| | | | recognized. This |
| | | | document, Section 3.1] |
+-------------+--------------+-----------+------------------------+
| 31744-64507 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 64508-64511 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for sub- |
| | Use | | TLVs that can be |
| | | | silently dropped if |
| | | | not recognized. |
+-------------+--------------+-----------+------------------------+
| 64512-65535 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
Table 20: Sub-TLVs for TLV Type 23 Assignments
6.2.7. Updates to the Registry for Sub-TLVs for TLV Type 27
This section describes the new registration procedures and the
assignments for the "Sub-TLVs for TLV Type 27" [IANA-Sub-27]
subregistry that are based on them.
* The "Specification Required" registration procedure has been
changed to "RFC Required", and the comment "Experimental RFC
Required" has been removed.
* The code points registration procedure "Vendor Private Use" has
been removed and replaced with "First Come First Served" code
points.
* Two small sets, four code points each, have been created for
Experimental Use.
* Code points that are reserved are clearly marked as such.
* The assignments have been updated to match the new registration
procedures.
* The notes related to the registration procedures have been changed
to reflect whether or not a response is required if a sub-TLV is
not recognized.
The registration procedures for the "Sub-TLVs for TLV Type 27"
[IANA-Sub-27] subregistry after the changes listed above are shown in
the table below:
+=============+==============+==================================+
| Range | Registration | Note |
| | Procedures | |
+=============+==============+==================================+
| 0-16383 | Standards | This range is for sub-TLVs that |
| | Action | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 16384-31739 | RFC Required | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 31740-31743 | Reserved for | Not to be assigned. This range |
| | Experimental | is for sub-TLVs that require an |
| | Use | error message if not recognized. |
| | | This document, Section 3.1] |
+-------------+--------------+----------------------------------+
| 31744-32767 | FCFS | This range is for sub-TLVs that |
| | | require an error message if not |
| | | recognized. This document, |
| | | Section 3.1] |
+-------------+--------------+----------------------------------+
| 32768-49161 | Standards | This range is for sub-TLVs that |
| | Action | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 49162-64507 | RFC Required | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64508-64511 | Experimental | Reserved, not to be assigned. |
| | Use | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
| 64512-65535 | FCFS | This range is for sub-TLVs that |
| | | can be silently dropped if not |
| | | recognized. |
+-------------+--------------+----------------------------------+
Table 21: Registration Procedures for Sub-TLVs for TLV Type 27
+=============+==============+===========+========================+
| Sub-Type | Sub-TLV Name | Reference | Comment |
+=============+==============+===========+========================+
| 0 | Reserved | [RFC7759] | |
+-------------+--------------+-----------+------------------------+
| 1-99 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 100-104 | EQ | EQ | EQ |
+-------------+--------------+-----------+------------------------+
| 105-199 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 200-202 | EQ | EQ | EQ |
+-------------+--------------+-----------+------------------------+
| 203-299 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 300 | EQ | EQ | EQ |
+-------------+--------------+-----------+------------------------+
| 301-399 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 400 | EQ | EQ | EQ |
+-------------+--------------+-----------+------------------------+
| 401-31739 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 31740-31743 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for sub- |
| | Use | | TLVs that require an |
| | | | error message if not |
| | | | recognized. This |
| | | | document, Section 3.1] |
+-------------+--------------+-----------+------------------------+
| 31744-64507 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
| 64508-64511 | Reserved for | This | Not to be assigned. |
| | Experimental | document | This range is for sub- |
| | Use | | TLVs that can be |
| | | | silently dropped if |
| | | | not recognized. |
+-------------+--------------+-----------+------------------------+
| 64512-65535 | Unassigned | | |
+-------------+--------------+-----------+------------------------+
Table 22: Sub-TLVs for TLV Type 27 Assignments
7. References
7.1. Normative References
[IANA-LSP-PING]
IANA, "Multiprotocol Label Switching (MPLS) Label Switched
Paths (LSPs) Ping Parameters",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters>.
[IANA-MT] IANA, "Message Types", <https://www.iana.org/assignments/
mpls-lsp-ping-parameters/>.
[IANA-RC] IANA, "Return Codes", <https://www.iana.org/assignments/
mpls-lsp-ping-parameters/>.
[IANA-RM] IANA, "Reply Modes", <https://www.iana.org/assignments/
mpls-lsp-ping-parameters/>.
[IANA-Sub-1-16-21]
IANA, "Sub-TLVs for TLV Types 1, 16, and 21",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[IANA-Sub-11]
IANA, "Sub-TLVs for TLV Type 11",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[IANA-Sub-20]
IANA, "Sub-TLVs for TLV Type 20",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[IANA-Sub-23]
IANA, "Sub-TLVs for TLV Type 23",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[IANA-Sub-27]
IANA, "Sub-TLVs for TLV Type 27",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[IANA-Sub-6]
IANA, "Sub-TLVs for TLV Type 6",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[IANA-TLV-reg]
IANA, "TLVs", <https://www.iana.org/assignments/mpls-lsp-
ping-parameters/>.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<https://www.rfc-editor.org/info/rfc2119>.
[RFC8029] Kompella, K., Swallow, G., Pignataro, C., Ed., Kumar, N.,
Aldrin, S., and M. Chen, "Detecting Multiprotocol Label
Switched (MPLS) Data-Plane Failures", RFC 8029,
DOI 10.17487/RFC8029, March 2017,
<https://www.rfc-editor.org/info/rfc8029>.
[RFC8126] Cotton, M., Leiba, B., and T. Narten, "Guidelines for
Writing an IANA Considerations Section in RFCs", BCP 26,
RFC 8126, DOI 10.17487/RFC8126, June 2017,
<https://www.rfc-editor.org/info/rfc8126>.
[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC
2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174,
May 2017, <https://www.rfc-editor.org/info/rfc8174>.
[RFC8611] Akiya, N., Swallow, G., Litkowski, S., Decraene, B.,
Drake, J., and M. Chen, "Label Switched Path (LSP) Ping
and Traceroute Multipath Support for Link Aggregation
Group (LAG) Interfaces", RFC 8611, DOI 10.17487/RFC8611,
June 2019, <https://www.rfc-editor.org/info/rfc8611>.
7.2. Informative References
[IANA-Sub-9]
IANA, "Sub-TLVs for TLV Type 9",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[lsp-ping-Namespace]
IANA, "Multiprotocol Label Switching (MPLS) Label Switched
Paths (LSPs) Ping Parameters",
<https://www.iana.org/assignments/mpls-lsp-ping-
parameters/>.
[RFC7110] Chen, M., Cao, W., Ning, S., Jounay, F., and S. Delord,
"Return Path Specified Label Switched Path (LSP) Ping",
RFC 7110, DOI 10.17487/RFC7110, January 2014,
<https://www.rfc-editor.org/info/rfc7110>.
[RFC7555] Swallow, G., Lim, V., and S. Aldrin, "Proxy MPLS Echo
Request", RFC 7555, DOI 10.17487/RFC7555, June 2015,
<https://www.rfc-editor.org/info/rfc7555>.
[RFC7743] Luo, J., Ed., Jin, L., Ed., Nadeau, T., Ed., and G.
Swallow, Ed., "Relayed Echo Reply Mechanism for Label
Switched Path (LSP) Ping", RFC 7743, DOI 10.17487/RFC7743,
January 2016, <https://www.rfc-editor.org/info/rfc7743>.
[RFC7759] Bellagamba, E., Mirsky, G., Andersson, L., Skoldstrom, P.,
Ward, D., and J. Drake, "Configuration of Proactive
Operations, Administration, and Maintenance (OAM)
Functions for MPLS-Based Transport Networks Using Label
Switched Path (LSP) Ping", RFC 7759, DOI 10.17487/RFC7759,
February 2016, <https://www.rfc-editor.org/info/rfc7759>.
[RFC8287] Kumar, N., Ed., Pignataro, C., Ed., Swallow, G., Akiya,
N., Kini, S., and M. Chen, "Label Switched Path (LSP)
Ping/Traceroute for Segment Routing (SR) IGP-Prefix and
IGP-Adjacency Segment Identifiers (SIDs) with MPLS Data
Planes", RFC 8287, DOI 10.17487/RFC8287, December 2017,
<https://www.rfc-editor.org/info/rfc8287>.
Acknowledgements
The authors wish to thank Adrian Farrel, who both made very useful
comments and agreed to serve as the Document Shepherd.
The authors also wish to thank Michelle Cotton and Amanda Baber, who
very patiently worked with us to determine how our registries could
and should be updated.
The authors thank Donald Eastlake 3rd and Tom Petch for their careful
and detailed review.
Authors' Addresses
Loa Andersson
Bronze Dragon Consulting
Email: loa@pi.nu
Mach(Guoyi) Chen
Huawei Technologies
Email: mach.chen@huawei.com
Carlos Pignataro
Cisco Systems
Email: cpignata@cisco.com
Tarek Saad
Juniper Networks
Email: tsaad@juniper.net
|