File: rfc8666.html

package info (click to toggle)
doc-rfc 20201128-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 1,307,124 kB
file content (2346 lines) | stat: -rw-r--r-- 109,029 bytes parent folder | download | duplicates (2)
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
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 8666: OSPFv3 Extensions for Segment Routing</title>
<meta content="Peter Psenak" name="author">
<meta content="Stefano Previdi" name="author">
<meta content='
       Segment Routing (SR) allows a flexible definition of end-to-end
      paths within IGP topologies by encoding paths as sequences of
      topological subpaths called "segments". These segments are advertised
      by the link-state routing protocols (IS-IS and OSPF). 
       This document describes the OSPFv3 extensions required for Segment Routing
      with the MPLS data plane. 
    ' name="description">
<meta content="xml2rfc 2.35.0" name="generator">
<meta content="MPLS, SID, IGP, OSPF, Label advertisement, Segment Routing" name="keyword">
<meta content="8666" name="rfc.number">
<link href="rfc8666.xml" type="application/rfc+xml" rel="alternate">
<link href="#copyright" rel="license">
<style type="text/css">/*

  NOTE: Changes at the bottom of this file overrides some earlier settings.

  Once the style has stabilized and has been adopted as an official RFC style,
  this can be consolidated so that style settings occur only in one place, but
  for now the contents of this file consists first of the initial CSS work as
  provided to the RFC Formatter (xml2rfc) work, followed by itemized and
  commented changes found necssary during the development of the v3
  formatters.

*/

/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */

@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}
@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
  max-width: 90%;
  margin: 1.5em auto;
  color: #222;
  background-color: #fff;
  font-size: 14px;
  font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}
.ears {
  display: none;
}

/* headings */
#title, h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.5em;
  font-weight: bold;
  line-height: 1.3;
}
#title {
  clear: both;
  border-bottom: 1px solid #ddd;
  margin: 0 0 0.5em 0;
  padding: 1em 0 0.5em;
}
.author {
  padding-bottom: 4px;
}
h1 {
  font-size: 26px;
  margin: 1em 0;
}
h2 {
  font-size: 22px;
  margin-top: -20px;  /* provide offset for in-page anchors */
  padding-top: 33px;
}
h3 {
  font-size: 18px;
  margin-top: -36px;  /* provide offset for in-page anchors */
  padding-top: 42px;
}
h4 {
  font-size: 16px;
  margin-top: -36px;  /* provide offset for in-page anchors */
  padding-top: 42px;
}
h5, h6 {
  font-size: 14px;
}
#n-copyright-notice {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
/* general structure */
p {
  padding: 0;
  margin: 0 0 1em 0;
  text-align: left;
}
div, span {
  position: relative;
}
div {
  margin: 0;
}
.alignRight.art-text {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
}
.alignRight.art-text pre {
  padding: 0;
}
.alignRight {
  margin: 1em 0;
}
.alignRight > *:first-child {
  border: none;
  margin: 0;
  float: right;
  clear: both;
}
.alignRight > *:nth-child(2) {
  clear: both;
  display: block;
  border: none;
}
svg {
  display: block;
}
.alignCenter.art-text {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
  padding: 0;
}
.alignCenter {
  margin: 1em 0;
}
.alignCenter > *:first-child {
  border: none;
  /* this isn't optimal, but it's an existence proof.  PrinceXML doesn't
     support flexbox yet.
  */
  display: table;
  margin: 0 auto;
}

/* lists */
ol, ul {
  padding: 0;
  margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
  margin-left: 1em;
}
li {
  margin: 0 0 0.25em 0;
}
.ulCompact li {
  margin: 0;
}
ul.empty, .ulEmpty {
  list-style-type: none;
}
ul.empty li, .ulEmpty li {
  margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
  line-height: 100%;
  margin: 0 0 0 2em;
}

/* definition lists */
dl {
}
dl > dt {
  float: left;
  margin-right: 1em;
}
/* 
dl.nohang > dt {
  float: none;
}
*/
dl > dd {
  margin-bottom: .8em;
  min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
  margin-bottom: 0em;
}
dl > dd > dl {
  margin-top: 0.5em;
  margin-bottom: 0em;
}

/* links */
a {
  text-decoration: none;
}
a[href] {
  color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
  background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
  color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
  background-color: transparent;
  cursor: default;
} */

/* Figures */
tt, code, pre, code {
  background-color: #f9f9f9;
  font-family: 'Roboto Mono', monospace;
}
pre {
  border: 1px solid #eee;
  margin: 0;
  padding: 1em;
}
img {
  max-width: 100%;
}
figure {
  margin: 0;
}
figure blockquote {
  margin: 0.8em 0.4em 0.4em;
}
figcaption {
  font-style: italic;
  margin: 0 0 1em 0;
}
@media screen {
  pre {
    overflow-x: auto;
    max-width: 100%;
    max-width: calc(100% - 22px);
  }
}

/* aside, blockquote */
aside, blockquote {
  margin-left: 0;
  padding: 1.2em 2em;
}
blockquote {
  background-color: #f9f9f9;
  color: #111; /* Arlen: WCAG 2019 */
  border: 1px solid #ddd;
  border-radius: 3px;
  margin: 1em 0;
}
cite {
  display: block;
  text-align: right;
  font-style: italic;
}

/* tables */
table {
  width: 100%;
  margin: 0 0 1em;
  border-collapse: collapse;
  border: 1px solid #eee;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 0.5em 0.75em;
}
th {
  text-align: left;
  background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
  background-color: #f5f5f5;
}
table caption {
  font-style: italic;
  margin: 0;
  padding: 0;
  text-align: left;
}
table p {
  /* XXX to avoid bottom margin on table row signifiers. If paragraphs should
     be allowed within tables more generally, it would be far better to select on a class. */
  margin: 0;
}

/* pilcrow */
a.pilcrow {
  color: #666; /* Arlen: AHDJ 2019 */
  text-decoration: none;
  visibility: hidden;
  user-select: none;
  -ms-user-select: none;
  -o-user-select:none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@media screen {
  aside:hover > a.pilcrow,
  p:hover > a.pilcrow,
  blockquote:hover > a.pilcrow,
  div:hover > a.pilcrow,
  li:hover > a.pilcrow,
  pre:hover > a.pilcrow {
    visibility: visible;
  }
  a.pilcrow:hover {
    background-color: transparent;
  }
}

/* misc */
hr {
  border: 0;
  border-top: 1px solid #eee;
}
.bcp14 {
  font-variant: small-caps;
}

.role {
  font-variant: all-small-caps;
}

/* info block */
#identifiers {
  margin: 0;
  font-size: 0.9em;
}
#identifiers dt {
  width: 3em;
  clear: left;
}
#identifiers dd {
  float: left;
  margin-bottom: 0;
}
#identifiers .authors .author {
  display: inline-block;
  margin-right: 1.5em;
}
#identifiers .authors .org {
  font-style: italic;
}

/* The prepared/rendered info at the very bottom of the page */
.docInfo {
  color: #666; /* Arlen: WCAG 2019 */
  font-size: 0.9em;
  font-style: italic;
  margin-top: 2em;
}
.docInfo .prepared {
  float: left;
}
.docInfo .prepared {
  float: right;
}

/* table of contents */
#toc  {
  padding: 0.75em 0 2em 0;
  margin-bottom: 1em;
}
nav.toc ul {
  margin: 0 0.5em 0 0;
  padding: 0;
  list-style: none;
}
nav.toc li {
  line-height: 1.3em;
  margin: 0.75em 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
/* references */
.references dt {
  text-align: right;
  font-weight: bold;
  min-width: 7em;
}
.references dd {
  margin-left: 8em;
  overflow: auto;
}

.refInstance {
  margin-bottom: 1.25em;
}

.references .ascii {
  margin-bottom: 0.25em;
}

/* index */
.index ul {
  margin: 0 0 0 1em;
  padding: 0;
  list-style: none;
}
.index ul ul {
  margin: 0;
}
.index li {
  margin: 0;
  text-indent: -2em;
  padding-left: 2em;
  padding-bottom: 5px;
}
.indexIndex {
  margin: 0.5em 0 1em;
}
.index a {
  font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
  .index ul {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
  }
  .index ul ul {
    -moz-column-count: 1;
    -moz-column-gap: 0;
  }
}

/* authors */
address.vcard {
  font-style: normal;
  margin: 1em 0;
}

address.vcard .nameRole {
  font-weight: 700;
  margin-left: 0;
}
address.vcard .label {
  font-family: "Noto Sans",Arial,Helvetica,sans-serif;
  margin: 0.5em 0;
}
address.vcard .type {
  display: none;
}
.alternative-contact {
  margin: 1.5em 0 1em;
}
hr.addr {
  border-top: 1px dashed;
  margin: 0;
  color: #ddd;
  max-width: calc(100% - 16px);
}

/* temporary notes */
.rfcEditorRemove::before {
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  padding: 0.2em;
  content: "The RFC Editor will remove this note";
  color: #9e2a00; /* Arlen: WCAG 2019 */
  background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
  position: relative;
  padding-top: 1.8em;
  background-color: #ffd; /* Arlen: WCAG 2019 */
  border-radius: 3px;
}
.cref {
  background-color: #ffd; /* Arlen: WCAG 2019 */
  padding: 2px 4px;
}
.crefSource {
  font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
  body {
    padding-top: 2em;
  }
  #title {
    padding: 1em 0;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
    margin-top: -18px;  /* provide offset for in-page anchors */
    padding-top: 38px;
  }
  #identifiers dd {
    max-width: 60%;
  }
  #toc {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    background-color: inherit;
    border-bottom: 1px solid #ccc;
  }
  #toc h2 {
    margin: -1px 0 0 0;
    padding: 4px 0 4px 6px;
    padding-right: 1em;
    min-width: 190px;
    font-size: 1.1em;
    text-align: right;
    background-color: #444;
    color: white;
    cursor: pointer;
  }
  #toc h2::before { /* css hamburger */
    float: right;
    position: relative;
    width: 1em;
    height: 1px;
    left: -164px;
    margin: 6px 0 0 0;
    background: white none repeat scroll 0 0;
    box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
    content: "";
  }
  #toc nav {
    display: none;
    padding: 0.5em 1em 1em;
    overflow: auto;
    height: calc(100vh - 48px);
    border-left: 1px solid #ddd;
  }
}

/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
  body {
    max-width: 724px;
    margin: 42px auto;
    padding-left: 1.5em;
    padding-right: 29em;
  }
  #toc {
    position: fixed;
    top: 42px;
    right: 42px;
    width: 25%;
    margin: 0;
    padding: 0 1em;
    z-index: 1;
  }
  #toc h2 {
    border-top: none;
    border-bottom: 1px solid #ddd;
    font-size: 1em;
    font-weight: normal;
    margin: 0;
    padding: 0.25em 1em 1em 0;
  }
  #toc nav {
    display: block;
    height: calc(90vh - 84px);
    bottom: 0;
    padding: 0.5em 0 0;
    overflow: auto;
  }
  img { /* future proofing */
    max-width: 100%;
    height: auto;
  }
}

/* pagination */
@media print {
  body {

    width: 100%;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  #n-copyright-notice {
    border-bottom: none;
  }
  #toc, #n-introduction {
    page-break-before: always;
  }
  #toc {
    border-top: none;
    padding-top: 0;
  }
  figure, pre {
    page-break-inside: avoid;
  }
  figure {
    overflow: scroll;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  h2+*, h3+*, h4+*, h5+*, h6+* {
    page-break-before: avoid;
  }
  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 10pt;
  }
  table {
    border: 1px solid #ddd;
  }
  td {
    border-top: 1px solid #ddd;
  }
}

/* This is commented out here, as the string-set: doesn't
   pass W3C validation currently */
/*
.ears thead .left {
  string-set: ears-top-left content();
}

.ears thead .center {
  string-set: ears-top-center content();
}

.ears thead .right {
  string-set: ears-top-right content();
}

.ears tfoot .left {
  string-set: ears-bottom-left content();
}

.ears tfoot .center {
  string-set: ears-bottom-center content();
}

.ears tfoot .right {
  string-set: ears-bottom-right content();
}
*/

@page :first {
  padding-top: 0;
  @top-left {
    content: normal;
    border: none;
  }
  @top-center {
    content: normal;
    border: none;
  }
  @top-right {
    content: normal;
    border: none;
  }
}

@page {
  size: A4;
  margin-bottom: 45mm;
  padding-top: 20px;
  /* The follwing is commented out here, but set appropriately by in code, as
     the content depends on the document */
  /*
  @top-left {
    content: 'Internet-Draft';
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-left {
    content: string(ears-top-left);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-center {
    content: string(ears-top-center);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-right {
    content: string(ears-top-right);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @bottom-left {
    content: string(ears-bottom-left);
    vertical-align: top;
    border-top: solid 1px #ccc;
  }
  @bottom-center {
    content: string(ears-bottom-center);
    vertical-align: top;
    border-top: solid 1px #ccc;
  }
  @bottom-right {
      content: '[Page ' counter(page) ']';
      vertical-align: top;
      border-top: solid 1px #ccc;
  }
  */

}

/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
  z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
  clear: both;
}


/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
  vertical-align: top;
}

/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
  width: 8em;
}

/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
  margin-left: 1em;
}

/* Give floating toc a background color (needed when it's a div inside section */
#toc {
  background-color: white;
}

/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
  #toc h2 a,
  #toc h2 a:link,
  #toc h2 a:focus,
  #toc h2 a:hover,
  #toc a.toplink,
  #toc a.toplink:hover {
    color: white;
    background-color: #444;
    text-decoration: none;
  }
}

/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
  #toc {
    padding: 0 0 1em 1em;
  }
}

/* Style section numbers with more space between number and title */
.section-number {
  padding-right: 0.5em;
}

/* prevent monospace from becoming overly large */
tt, code, pre, code {
  font-size: 95%;
}

/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
  line-height: 1.12;
}


/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
  float: right;
  margin-right: 0.5em;
}

/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
  float: left;
  margin-right: 1em;
}
dl.dlNewline > dt {
  float: none;
}

/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
  text-align: left;
}
table td.text-center,
table th.text-center {
  text-align: center;
}
table td.text-right,
table th.text-right {
  text-align: right;
}

/* Make the alternative author contact informatio look less like just another
   author, and group it closer with the primary author contact information */
.alternative-contact {
  margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
  margin: 0 0 0 2em;
}

/* With it being possible to set tables with alignment
  left, center, and right, { width: 100%; } does not make sense */
table {
  width: auto;
}

/* Avoid reference text that sits in a block with very wide left margin,
   because of a long floating dt label.*/
.references dd {
  overflow: visible;
}

/* Control caption placement */
caption {
  caption-side: bottom;
}

/* Limit the width of the author address vcard, so names in right-to-left
   script don't end up on the other side of the page. */

address.vcard {
  max-width: 30em;
  margin-right: auto;
}

/* For address alignment dependent on LTR or RTL scripts */
address div.left {
  text-align: left;
}
address div.right {
  text-align: right;
}

/* Provide table alignment support.  We can't use the alignX classes above
   since they do unwanted things with caption and other styling. */
table.right {
 margin-left: auto;
 margin-right: 0;
}
table.center {
 margin-left: auto;
 margin-right: auto;
}
table.left {
 margin-left: 0;
 margin-right: auto;
}

/* Give the table caption label the same styling as the figcaption */
caption a[href] {
  color: #222;
}

@media print {
  .toplink {
    display: none;
  }

  /* avoid overwriting the top border line with the ToC header */
  #toc {
    padding-top: 1px;
  }

  /* Avoid page breaks inside dl and author address entries */
  .vcard {
    page-break-inside: avoid;
  }

}
/* Avoid wrapping of URLs in references */
@media screen {
  .references a {
    white-space: nowrap;
  }
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
  font-variant: small-caps;
  font-weight: bold;
  font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
 h2 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 31px;
 }
 h3 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 24px;
 }
 h4 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 24px;
 }
/* Float artwork pilcrow to the right */
@media screen {
  .artwork a.pilcrow {
    display: block;
    line-height: 0.7;
    margin-top: 0.15em;
  }
}
/* Make pilcrows on dd visible */
@media screen {
  dd:hover > a.pilcrow {
    visibility: visible;
  }
}
/* Make the placement of figcaption match that of a table's caption
   by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
   margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
  margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
   possibly even requiring a new line */
@media print {
  a.pilcrow {
    display: none;
  }
}
/* Styling for the external metadata */
div#external-metadata {
  background-color: #eee;
  padding: 0.5em;
  margin-bottom: 0.5em;
  display: none;
}
div#internal-metadata {
  padding: 0.5em;                       /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
  clear: both;
  margin: 0 0 -1em;
  padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
  margin: 0 0 0.25em 0;
  min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
  border-left: 1px solid #ddd;
  margin: 1em 0 1em 2em;
  padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
  margin-bottom: 0;
}
/* Additional page break settings */
@media print {
  figcaption, table caption {
    page-break-before: avoid;
  }
}
/* Font size adjustments for print */
@media print {
  body  { font-size: 10pt;      line-height: normal; max-width: 96%; }
  h1    { font-size: 1.72em;    padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
  h2    { font-size: 1.44em;    padding-top: 1.5em; } /* 1*1.2*1.2 */
  h3    { font-size: 1.2em;     padding-top: 1.5em; } /* 1*1.2 */
  h4    { font-size: 1em;       padding-top: 1.5em; }
  h5, h6 { font-size: 1em;      margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
  .sourcecode {
    margin-bottom: 1em;
  }
}</style>
<link href="rfc-local.css" type="text/css" rel="stylesheet">
<link href="https://dx.doi.org/10.17487/rfc8666" rel="alternate">
  <link href="urn:issn:2070-1721" rel="alternate">
  <link href="https://datatracker.ietf.org/doc/draft-ietf-ospf-ospfv3-segment-routing-extensions-23" rel="prev">
  </head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 8666</td>
<td class="center">OSPFv3 Extensions for Segment Routing</td>
<td class="right">December 2019</td>
</tr></thead>
<tfoot><tr>
<td class="left">Psenak &amp; Previdi</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc8666" class="eref">8666</a></dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2019-12" class="published">December 2019</time>
    </dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
      <div class="author-name">P. Psenak, <span class="editor">Ed.</span>
</div>
<div class="org">Cisco Systems, Inc.</div>
</div>
<div class="author">
      <div class="author-name">S. Previdi, <span class="editor">Ed.</span>
</div>
<div class="org">Cisco Systems, Inc.</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8666</h1>
<h1 id="title">OSPFv3 Extensions for Segment Routing</h1>
<section id="section-abstract">
      <h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">Segment Routing (SR) allows a flexible definition of end-to-end
      paths within IGP topologies by encoding paths as sequences of
      topological subpaths called "segments". These segments are advertised
      by the link-state routing protocols (IS-IS and OSPF).<a href="#section-abstract-1" class="pilcrow">¶</a></p>
<p id="section-abstract-2">This document describes the OSPFv3 extensions required for Segment Routing
      with the MPLS data plane.<a href="#section-abstract-2" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
        <h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
        </h2>
<p id="section-boilerplate.1-1">
            This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
            This document is a product of the Internet Engineering Task Force
            (IETF).  It represents the consensus of the IETF community.  It has
            received public review and has been approved for publication by
            the Internet Engineering Steering Group (IESG).  Further
            information on Internet Standards is available in Section 2 of 
            RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
            Information about the current status of this document, any
            errata, and how to provide feedback on it may be obtained at
            <span><a href="https://www.rfc-editor.org/info/rfc8666">https://www.rfc-editor.org/info/rfc8666</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
        <h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
        </h2>
<p id="section-boilerplate.2-1">
            Copyright (c) 2019 IETF Trust and the persons identified as the
            document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
            This document is subject to BCP 78 and the IETF Trust's Legal
            Provisions Relating to IETF Documents
            (<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) in effect on the date of
            publication of this document. Please review these documents
            carefully, as they describe your rights and restrictions with
            respect to this document. Code Components extracted from this
            document must include Simplified BSD License text as described in
            Section 4.e of the Trust Legal Provisions and are provided without
            warranty as described in the Simplified BSD License.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
        <a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
        </h2>
<nav class="toc"><ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.1">
            <p id="section-toc.1-1.1.1"><a href="#section-1" class="xref">1</a>.  <a href="#name-introduction" class="xref">Introduction</a><a href="#section-toc.1-1.1.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.2">
            <p id="section-toc.1-1.2.1"><a href="#section-2" class="xref">2</a>.  <a href="#name-terminology" class="xref">Terminology</a><a href="#section-toc.1-1.2.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.3">
            <p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>.  <a href="#name-segment-routing-identifiers" class="xref">Segment Routing Identifiers</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.3.2.1">
                <p id="section-toc.1-1.3.2.1.1"><a href="#section-3.1" class="xref">3.1</a>.  <a href="#name-sid-label-sub-tlv" class="xref">SID/Label Sub-TLV</a><a href="#section-toc.1-1.3.2.1.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.4">
            <p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>.  <a href="#name-segment-routing-capabilitie" class="xref">Segment Routing Capabilities</a><a href="#section-toc.1-1.4.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.5">
            <p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>.  <a href="#name-ospfv3-extended-prefix-rang" class="xref">OSPFv3 Extended Prefix Range TLV</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.6">
            <p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>.  <a href="#name-prefix-sid-sub-tlv" class="xref">Prefix-SID Sub-TLV</a><a href="#section-toc.1-1.6.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.7">
            <p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>.  <a href="#name-adjacency-segment-identifie" class="xref">Adjacency Segment Identifier (Adj-SID)</a><a href="#section-toc.1-1.7.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.7.2.1">
                <p id="section-toc.1-1.7.2.1.1"><a href="#section-7.1" class="xref">7.1</a>.  <a href="#name-adj-sid-sub-tlv" class="xref">Adj-SID Sub-TLV</a><a href="#section-toc.1-1.7.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc ulEmpty" id="section-toc.1-1.7.2.2">
                <p id="section-toc.1-1.7.2.2.1"><a href="#section-7.2" class="xref">7.2</a>.  <a href="#name-lan-adj-sid-sub-tlv" class="xref">LAN Adj-SID Sub-TLV</a><a href="#section-toc.1-1.7.2.2.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.8">
            <p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>.  <a href="#name-elements-of-procedure" class="xref">Elements of Procedure</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.8.2.1">
                <p id="section-toc.1-1.8.2.1.1"><a href="#section-8.1" class="xref">8.1</a>.  <a href="#name-intra-area-segment-routing-" class="xref">Intra-area Segment Routing in OSPFv3</a><a href="#section-toc.1-1.8.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc ulEmpty" id="section-toc.1-1.8.2.2">
                <p id="section-toc.1-1.8.2.2.1"><a href="#section-8.2" class="xref">8.2</a>.  <a href="#name-inter-area-segment-routing-" class="xref">Inter-area Segment Routing in OSPFv3</a><a href="#section-toc.1-1.8.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc ulEmpty" id="section-toc.1-1.8.2.3">
                <p id="section-toc.1-1.8.2.3.1"><a href="#section-8.3" class="xref">8.3</a>.  <a href="#name-segment-routing-for-externa" class="xref">Segment Routing for External Prefixes</a><a href="#section-toc.1-1.8.2.3.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc ulEmpty" id="section-toc.1-1.8.2.4">
                <p id="section-toc.1-1.8.2.4.1"><a href="#section-8.4" class="xref">8.4</a>.  <a href="#name-advertisement-of-adj-sid" class="xref">Advertisement of Adj-SID</a><a href="#section-toc.1-1.8.2.4.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.8.2.4.2.1">
                    <p id="section-toc.1-1.8.2.4.2.1.1"><a href="#section-8.4.1" class="xref">8.4.1</a>.  <a href="#name-advertisement-of-adj-sid-on" class="xref">Advertisement of Adj-SID on Point-to-Point Links</a><a href="#section-toc.1-1.8.2.4.2.1.1" class="pilcrow">¶</a></p>
</li>
                  <li class="toc ulEmpty" id="section-toc.1-1.8.2.4.2.2">
                    <p id="section-toc.1-1.8.2.4.2.2.1"><a href="#section-8.4.2" class="xref">8.4.2</a>.  <a href="#name-adjacency-sid-on-broadcast-" class="xref">Adjacency SID on Broadcast or NBMA Interfaces</a><a href="#section-toc.1-1.8.2.4.2.2.1" class="pilcrow">¶</a></p>
</li>
                </ul>
</li>
            </ul>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.9">
            <p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>.  <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.9.2.1">
                <p id="section-toc.1-1.9.2.1.1"><a href="#section-9.1" class="xref">9.1</a>.  <a href="#name-ospfv3-extended-lsa-tlvs-re" class="xref">"OSPFv3 Extended-LSA TLVs" Registry</a><a href="#section-toc.1-1.9.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc ulEmpty" id="section-toc.1-1.9.2.2">
                <p id="section-toc.1-1.9.2.2.1"><a href="#section-9.2" class="xref">9.2</a>.  <a href="#name-ospfv3-extended-lsa-sub-tlv" class="xref">"OSPFv3 Extended-LSA Sub-TLVs" Registry</a><a href="#section-toc.1-1.9.2.2.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.10">
            <p id="section-toc.1-1.10.1"><a href="#section-10" class="xref">10</a>. <span><a href="#name-tlv-sub-tlv-error-handling" class="xref">TLV/Sub-TLV Error Handling                                                                                            
</a> (<a href="#name-tlv-sub-tlv-error-handling" class="xref">TLV/Sub-TLV Error Handling</a>)</span><a href="#section-toc.1-1.10.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.11">
            <p id="section-toc.1-1.11.1"><a href="#section-11" class="xref">11</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a><a href="#section-toc.1-1.11.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.12">
            <p id="section-toc.1-1.12.1"><a href="#section-12" class="xref">12</a>. <a href="#name-references" class="xref">References</a><a href="#section-toc.1-1.12.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.12.2.1">
                <p id="section-toc.1-1.12.2.1.1"><a href="#section-12.1" class="xref">12.1</a>.  <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.12.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc ulEmpty" id="section-toc.1-1.12.2.2">
                <p id="section-toc.1-1.12.2.2.1"><a href="#section-12.2" class="xref">12.2</a>.  <a href="#name-informative-references" class="xref">Informative References</a><a href="#section-toc.1-1.12.2.2.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.13">
            <p id="section-toc.1-1.13.1"><a href="#section-appendix.a" class="xref"></a><a href="#name-contributors" class="xref">Contributors</a><a href="#section-toc.1-1.13.1" class="pilcrow">¶</a></p>
</li>
          <li class="toc ulEmpty" id="section-toc.1-1.14">
            <p id="section-toc.1-1.14.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.14.1" class="pilcrow">¶</a></p>
</li>
        </ul>
</nav>
</section>
</div>
<section id="section-1">
      <h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
      </h2>
<p id="section-1-1">Segment Routing (SR) allows a flexible definition of end-to-end paths
      within IGP topologies by encoding paths as sequences of topological
      subpaths called "segments". These segments are advertised by the
      link-state routing protocols (IS-IS and OSPF). Prefix segments represent
      an ECMP-aware shortest path to a prefix (or a node) as per the state of
      the IGP topology. Adjacency segments represent a hop over a specific
      adjacency between two nodes in the IGP. A prefix segment is typically a
      multi-hop path while an adjacency segment, in most cases, is a one-hop
      path. SR's control plane can be applied to both IPv6 and MPLS data
      planes, and it does not require any additional signaling (other than IGP
      extensions). The IPv6 data plane is out of the scope of this
      specification; the OSPFv3 extension for SR with the IPv6 data plane will be
      specified in a separate document.  When used in MPLS networks, SR paths
      do not require any LDP or RSVP-TE signaling.  However, SR can
      interoperate in the presence of Label Switched Paths (LSPs) established with RSVP or LDP.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2">This document describes the OSPFv3 extensions required for Segment
      Routing with the MPLS data plane.<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">Segment Routing architecture is described in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">Segment Routing use cases are described in <span>[<a href="#RFC7855" class="xref">RFC7855</a>]</span>.<a href="#section-1-4" class="pilcrow">¶</a></p>
</section>
<section id="section-2">
      <h2 id="name-terminology">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-terminology" class="section-name selfRef">Terminology</a>
      </h2>
<p id="section-2-1">This section lists some of the terminology used in this document:<a href="#section-2-1" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-2-2">
        <dt id="section-2-2.1">ABR:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.2">Area Border Router<a href="#section-2-2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.3">Adj-SID:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.4">Adjacency Segment Identifier<a href="#section-2-2.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.5">AS:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.6">Autonomous System<a href="#section-2-2.6" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.7">ASBR:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.8">Autonomous System Boundary Router<a href="#section-2-2.8" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.9">DR:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.10">Designated Router<a href="#section-2-2.10" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.11">IS-IS:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.12">Intermediate System to Intermediate System<a href="#section-2-2.12" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.13">LDP:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.14">Label Distribution Protocol<a href="#section-2-2.14" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.15">LSP:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.16">Label Switched Path<a href="#section-2-2.16" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.17">MPLS:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.18">Multiprotocol Label Switching<a href="#section-2-2.18" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.19">OSPF:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.20">Open Shortest Path First<a href="#section-2-2.20" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.21">SPF:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.22">Shortest Path First<a href="#section-2-2.22" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.23">RSVP:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.24">Resource Reservation Protocol<a href="#section-2-2.24" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.25">SID:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.26">Segment Identifier<a href="#section-2-2.26" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.27">SR:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.28">Segment Routing<a href="#section-2-2.28" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.29">SRGB:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.30">Segment Routing Global Block<a href="#section-2-2.30" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.31">SRLB:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.32">Segment Routing Local Block<a href="#section-2-2.32" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.33">SRMS:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.34">Segment Routing Mapping Server<a href="#section-2-2.34" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.35">TLV:</dt>
        <dd style="margin-left: 6.0em" id="section-2-2.36">Type Length Value<a href="#section-2-2.36" class="pilcrow">¶</a>
</dd>
</dl>
<p id="section-2-3">
    The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
    "<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
    described in BCP 14 <span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span> 
    when, and only when, they appear in all capitals, as shown here.<a href="#section-2-3" class="pilcrow">¶</a></p>
</section>
<section id="section-3">
      <h2 id="name-segment-routing-identifiers">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-segment-routing-identifiers" class="section-name selfRef">Segment Routing Identifiers</a>
      </h2>
<p id="section-3-1">Segment Routing defines various types of Segment Identifiers (SIDs):
      Prefix-SID, Adjacency SID, and LAN Adjacency SID.<a href="#section-3-1" class="pilcrow">¶</a></p>
<div id="SIDLABEL">
<section id="section-3.1">
        <h3 id="name-sid-label-sub-tlv">
<a href="#section-3.1" class="section-number selfRef">3.1. </a><a href="#name-sid-label-sub-tlv" class="section-name selfRef">SID/Label Sub-TLV</a>
        </h3>
<p id="section-3.1-1">The SID/Label sub-TLV appears in multiple TLVs or sub-TLVs defined
        later in this document. It is used to advertise the SID or label
        associated with a prefix or adjacency. The SID/Label sub-TLV has the following
        format:<a href="#section-3.1-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-3.1-2">
<pre>
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|              Type             |             Length            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      SID/Label (variable)                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-3.1-2" class="pilcrow">¶</a>
</div>
<p id="section-3.1-3">where:<a href="#section-3.1-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-4.1">
            <dl class="dlParallel" id="section-3.1-4.1.1">
              <dt id="section-3.1-4.1.1.1">Type:</dt>
              <dd id="section-3.1-4.1.1.2">7<a href="#section-3.1-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.1-4.1.1.3">Length:</dt>
              <dd id="section-3.1-4.1.1.4">3 or 4 octets.<a href="#section-3.1-4.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-3.1-4.1.1.5">SID/Label:</dt>
              <dd id="section-3.1-4.1.1.6">If the length is set to 3, then the 20 rightmost bits
            represent a label. If the length is set to 4, then the value represents
            a 32-bit SID.<a href="#section-3.1-4.1.1.6" class="pilcrow">¶</a>
</dd>
</dl>
</li>
        </ul>
</section>
</div>
</section>
<div id="SRCAP">
<section id="section-4">
      <h2 id="name-segment-routing-capabilitie">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-segment-routing-capabilitie" class="section-name selfRef">Segment Routing Capabilities</a>
      </h2>
<p id="section-4-1">Segment Routing requires some additional router capabilities to be advertised to 
      other routers in the area.<a href="#section-4-1" class="pilcrow">¶</a></p>
<p id="section-4-2">These SR capabilities are advertised in the OSPFv3 Router Information Opaque LSA 
      (defined in <span>[<a href="#RFC7770" class="xref">RFC7770</a>]</span>) and specified in 
      <span>[<a href="#RFC8665" class="xref">RFC8665</a>]</span>.<a href="#section-4-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="PFXRANGE">
<section id="section-5">
      <h2 id="name-ospfv3-extended-prefix-rang">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-ospfv3-extended-prefix-rang" class="section-name selfRef">OSPFv3 Extended Prefix Range TLV</a>
      </h2>
<p id="section-5-1">In some cases, it is useful to advertise attributes for a range of
      prefixes in a single advertisement. The SR Mapping Server, 
      which is described in <span>[<a href="#RFC8661" class="xref">RFC8661</a>]</span>,
      is an example of where SIDs for multiple prefixes can be advertised. To
      optimize such advertisement in case of multiple prefixes from a
      contiguous address range, OSPFv3 Extended Prefix Range TLV is defined.<a href="#section-5-1" class="pilcrow">¶</a></p>
<p id="section-5-2">The OSPFv3 Extended Prefix Range TLV is a top-level TLV of the following LSAs
      defined in <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span>:<a href="#section-5-2" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-5-3.1">E-Intra-Area-Prefix-LSA<a href="#section-5-3.1" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-5-3.2">E-Inter-Area-Prefix-LSA<a href="#section-5-3.2" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-5-3.3">E-AS-External-LSA<a href="#section-5-3.3" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-5-3.4">E-Type-7-LSA<a href="#section-5-3.4" class="pilcrow">¶</a>
</li>
      </ul>
<p id="section-5-4">Multiple OSPFv3 Extended Prefix Range TLVs <span class="bcp14">MAY</span> be advertised in each LSA mentioned 
      above. The OSPFv3 Extended Prefix Range TLV has the following
      format:<a href="#section-5-4" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-5-5">
<pre>
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|              Type             |             Length            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Prefix Length |       AF      |         Range Size            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|    Flags      |                 Reserved                      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Address Prefix (variable)                 |
|                           ...                                 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Sub-TLVs (variable)                      |
+-                                                             -+
|                                                               |</pre><a href="#section-5-5" class="pilcrow">¶</a>
</div>
<p id="section-5-6">where:<a href="#section-5-6" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-5-7.1">
          <dl class="dlParallel" id="section-5-7.1.1">
            <dt id="section-5-7.1.1.1">Type:</dt>
            <dd id="section-5-7.1.1.2">9<a href="#section-5-7.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-5-7.1.1.3">Length:</dt>
            <dd id="section-5-7.1.1.4">Variable, in octets, depending on the sub-TLVs.<a href="#section-5-7.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-5-7.1.1.5">Prefix Length:</dt>
            <dd id="section-5-7.1.1.6">Length of prefix in bits.<a href="#section-5-7.1.1.6" class="pilcrow">¶</a>
</dd>
<dt id="section-5-7.1.1.7">AF:</dt>
            <dd id="section-5-7.1.1.8">
              <p id="section-5-7.1.1.8.1">Address family for the prefix.<a href="#section-5-7.1.1.8.1" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-5-7.1.1.8.2">
                <dt id="section-5-7.1.1.8.2.1">AF:</dt>
                <dd id="section-5-7.1.1.8.2.2">0 - IPv4 unicast<a href="#section-5-7.1.1.8.2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-5-7.1.1.8.2.3">AF:</dt>
                <dd id="section-5-7.1.1.8.2.4">1 - IPv6 unicast<a href="#section-5-7.1.1.8.2.4" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
<dt id="section-5-7.1.1.9">Range Size:</dt>
            <dd id="section-5-7.1.1.10">
              <p id="section-5-7.1.1.10.1">Represents the number of prefixes that are covered by the
            advertisement. The Range Size <span class="bcp14">MUST NOT</span> exceed the number of 
 prefixes that could be satisfied by the Prefix Length without 
 including:<a href="#section-5-7.1.1.10.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-5-7.1.1.10.2.1">Addresses from the IPv4 multicast address range (224.0.0.0/3), if the 
             AF is IPv4 unicast.<a href="#section-5-7.1.1.10.2.1" class="pilcrow">¶</a>
</li>
                <li class="ulEmpty" id="section-5-7.1.1.10.2.2">Addresses other than the IPv6 unicast addresses, if the
             AF is IPv6 unicast.<a href="#section-5-7.1.1.10.2.2" class="pilcrow">¶</a>
</li>
              </ul>
</dd>
<dt id="section-5-7.1.1.11">Flags:</dt>
            <dd id="section-5-7.1.1.12">Reserved. <span class="bcp14">MUST</span> be zero when sent and are ignored when received.<a href="#section-5-7.1.1.12" class="pilcrow">¶</a>
</dd>
<dt id="section-5-7.1.1.13">Reserved:</dt>
            <dd id="section-5-7.1.1.14">
              <span class="bcp14">SHOULD</span> be set to 0 on transmission and <span class="bcp14">MUST</span> be ignored on reception.<a href="#section-5-7.1.1.14" class="pilcrow">¶</a>
</dd>
<dt id="section-5-7.1.1.15">Address Prefix:</dt>
            <dd id="section-5-7.1.1.16">
              <ul class="ulEmpty">
<li class="ulEmpty" id="section-5-7.1.1.16.1.1">For the address family IPv4 unicast, the prefix itself is 
               encoded as a 32-bit value. The default route is represented by a prefix of 
               length 0.<a href="#section-5-7.1.1.16.1.1" class="pilcrow">¶</a>
</li>
                <li class="ulEmpty" id="section-5-7.1.1.16.1.2">For the address family IPv6 unicast, the prefix is encoded as an even
multiple of 32-bit words and padded with zeroed bits as necessary. This
encoding consumes ((PrefixLength + 31) / 32) 32-bit words.<a href="#section-5-7.1.1.16.1.2" class="pilcrow">¶</a>
</li>
                <li class="ulEmpty" id="section-5-7.1.1.16.1.3">Prefix encoding for other address families is beyond the scope of
               this specification. Prefix encoding for other address families can
               be defined in future Standards Track specifications from the IETF stream.<a href="#section-5-7.1.1.16.1.3" class="pilcrow">¶</a>
</li>
              </ul>
</dd>
</dl>
</li>
      </ul>
<p id="section-5-8">The range represents the contiguous set of prefixes with the same prefix length 
     as specified by the Prefix Length field. The set starts with the prefix that is 
     specified by the Address Prefix field. The number of prefixes in the range is equal 
     to the Range Size.<a href="#section-5-8" class="pilcrow">¶</a></p>
<p id="section-5-9">If the OSPFv3 Extended Prefix Range TLVs advertising the exact same range appears 
     in multiple LSAs of the same type, originated by the same OSPFv3 router, the LSA with
     the numerically smallest Instance ID <span class="bcp14">MUST</span> be used, and subsequent instances of the 
     OSPFv3 Extended Prefix Range TLVs <span class="bcp14">MUST</span> be ignored.<a href="#section-5-9" class="pilcrow">¶</a></p>
</section>
</div>
<div id="PREFIXSID">
<section id="section-6">
      <h2 id="name-prefix-sid-sub-tlv">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-prefix-sid-sub-tlv" class="section-name selfRef">Prefix-SID Sub-TLV</a>
      </h2>
<p id="section-6-1">The Prefix-SID sub-TLV is a sub-TLV of the following OSPFv3 TLVs as
        defined in <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span> and in <a href="#PFXRANGE" class="xref">Section 5</a>:<a href="#section-6-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-6-2.1">Intra-Area Prefix TLV<a href="#section-6-2.1" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-6-2.2">Inter-Area Prefix TLV<a href="#section-6-2.2" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-6-2.3">External Prefix TLV<a href="#section-6-2.3" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-6-2.4">OSPFv3 Extended Prefix Range TLV<a href="#section-6-2.4" class="pilcrow">¶</a>
</li>
      </ul>
<p id="section-6-3">It <span class="bcp14">MAY</span> appear more than once in the parent TLV and has the following format:<a href="#section-6-3" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-6-4">
<pre>
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Type            |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|     Flags     |  Algorithm    |           Reserved            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       SID/Index/Label (variable)              |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-6-4" class="pilcrow">¶</a>
</div>
<p id="section-6-5">where:<a href="#section-6-5" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-6-6.1">
          <dl class="dlParallel" id="section-6-6.1.1">
            <dt id="section-6-6.1.1.1">Type:</dt>
            <dd id="section-6-6.1.1.2">4<a href="#section-6-6.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.3">Length:</dt>
            <dd id="section-6-6.1.1.4">7 or 8 octets, depending on the V-Flag.<a href="#section-6-6.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.5">Flags:</dt>
            <dd id="section-6-6.1.1.6">
              <p id="section-6-6.1.1.6.1">Single-octet field. The following flags are defined:<a href="#section-6-6.1.1.6.1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-6-6.1.1.6.2">
<pre>                
  0  1  2  3  4  5  6  7 
+--+--+--+--+--+--+--+--+
|  |NP|M |E |V |L |  |  |
+--+--+--+--+--+--+--+--+</pre><a href="#section-6-6.1.1.6.2" class="pilcrow">¶</a>
</div>
<p id="section-6-6.1.1.6.3">where:<a href="#section-6-6.1.1.6.3" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-6-6.1.1.6.4">
                <dt id="section-6-6.1.1.6.4.1">NP-Flag:</dt>
                <dd id="section-6-6.1.1.6.4.2">No-PHP (Penultimate Hop Popping) Flag. If set, then the penultimate hop <span class="bcp14">MUST NOT</span> pop the Prefix-SID before delivering packets to the
                node that advertised the Prefix-SID.<a href="#section-6-6.1.1.6.4.2" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.6.4.3">M-Flag:</dt>
                <dd id="section-6-6.1.1.6.4.4">Mapping Server Flag.  If set, the SID was advertised
                by an SR Mapping Server as described in 
                <span>[<a href="#RFC8661" class="xref">RFC8661</a>]</span>.<a href="#section-6-6.1.1.6.4.4" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.6.4.5">E-Flag:</dt>
                <dd id="section-6-6.1.1.6.4.6">Explicit Null Flag. If set, any upstream neighbor 
                of the Prefix-SID originator <span class="bcp14">MUST</span> replace the Prefix-SID with 
                the Explicit NULL label (0 for IPv4, 2 for IPv6) before forwarding the packet.<a href="#section-6-6.1.1.6.4.6" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.6.4.7">V-Flag:</dt>
                <dd id="section-6-6.1.1.6.4.8">Value/Index Flag. If set, then the Prefix-SID 
                carries an absolute value. If not set, then the Prefix-SID carries 
                an index.<a href="#section-6-6.1.1.6.4.8" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.6.4.9">L-Flag:</dt>
                <dd id="section-6-6.1.1.6.4.10">Local/Global Flag. If set, then the value/index 
                carried by the Prefix-SID has local significance. If not set, then
                the value/index carried by this sub-TLV has global significance.<a href="#section-6-6.1.1.6.4.10" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.6.4.11">Other bits:</dt>
                <dd id="section-6-6.1.1.6.4.12">Reserved. These <span class="bcp14">MUST</span> be zero when sent and are ignored when
                received.<a href="#section-6-6.1.1.6.4.12" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
<dt id="section-6-6.1.1.7">Reserved:</dt>
            <dd id="section-6-6.1.1.8">
              <span class="bcp14">SHOULD</span> be set to 0 on transmission and <span class="bcp14">MUST</span> be ignored on reception.<a href="#section-6-6.1.1.8" class="pilcrow">¶</a>
</dd>
<dt id="section-6-6.1.1.9">Algorithm:</dt>
            <dd id="section-6-6.1.1.10">
              <p id="section-6-6.1.1.10.1">Single octet identifying the algorithm the Prefix-SID
            is associated with as defined in the IGP Algorithm Types registry 
            <span>[<a href="#ALGOREG" class="xref">ALGOREG</a>]</span>.<a href="#section-6-6.1.1.10.1" class="pilcrow">¶</a></p>
<p id="section-6-6.1.1.10.2">A router receiving a Prefix-SID from a remote node and with an algorithm 
            value that the remote node has not advertised in the SR-Algorithm TLV
            <span>[<a href="#RFC8665" class="xref">RFC8665</a>]</span> <span class="bcp14">MUST</span> ignore the 
            Prefix-SID sub-TLV.<a href="#section-6-6.1.1.10.2" class="pilcrow">¶</a></p>
</dd>
<dt id="section-6-6.1.1.11">SID/Index/Label:</dt>
            <dd id="section-6-6.1.1.12">
              <p id="section-6-6.1.1.12.1">According to the V-Flag and L-Flag, it contains:<a href="#section-6-6.1.1.12.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-6-6.1.1.12.2.1">V-Flag is set to 0 and L-Flag is set to 0: The SID/Index/Label
            field is a 4-octet index defining the offset in the SID/Label
            space advertised by this router.<a href="#section-6-6.1.1.12.2.1" class="pilcrow">¶</a>
</li>
                <li class="ulEmpty" id="section-6-6.1.1.12.2.2">V-Flag is set to 1 and L-Flag is set to 1: The SID/Index/Label
            field is a 3-octet local label where the 20 rightmost bits are
            used for encoding the label value.<a href="#section-6-6.1.1.12.2.2" class="pilcrow">¶</a>
</li>
                <li class="ulEmpty" id="section-6-6.1.1.12.2.3">All other combinations of V-Flag and L-Flag are invalid and
            any SID Advertisement received with an invalid setting for V- and
            L-Flags <span class="bcp14">MUST</span> be ignored.<a href="#section-6-6.1.1.12.2.3" class="pilcrow">¶</a>
</li>
              </ul>
</dd>
</dl>
</li>
      </ul>
<p id="section-6-7">If an OSPFv3 router advertises multiple Prefix-SIDs for the same prefix,
        topology, and algorithm, all of them <span class="bcp14">MUST</span> be ignored.<a href="#section-6-7" class="pilcrow">¶</a></p>
<p id="section-6-8">When calculating the outgoing label for the prefix, the router <span class="bcp14">MUST</span>
        take into account, as described below, the E-, NP-, and M-Flags advertised by the 
        next-hop router if that router advertised the SID for the prefix.  This <span class="bcp14">MUST</span> be done
        regardless of whether the next-hop router contributes to the best path to the
        prefix.<a href="#section-6-8" class="pilcrow">¶</a></p>
<p id="section-6-9">The NP-Flag (No-PHP) <span class="bcp14">MUST</span> be set and the E-Flag <span class="bcp14">MUST</span> be clear for Prefix-SIDs 
        allocated to prefixes that are propagated between areas by an ABR based on 
        intra-area or inter-area reachability, unless the advertised prefix is directly 
        attached to such ABR.<a href="#section-6-9" class="pilcrow">¶</a></p>
<p id="section-6-10">The NP-Flag (No-PHP) <span class="bcp14">MUST</span> be set and the E-Flag <span class="bcp14">MUST</span> be clear for Prefix-SIDs 
        allocated to redistributed prefixes, unless the redistributed prefix is directly
        attached to the advertising ASBR.<a href="#section-6-10" class="pilcrow">¶</a></p>
<p id="section-6-11">If the NP-Flag is not set, then:<a href="#section-6-11" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-6-12.1">Any upstream neighbor of the Prefix-SID
        originator <span class="bcp14">MUST</span> pop the Prefix-SID. This is equivalent to the
 penultimate hop-popping mechanism used in the MPLS data plane.<a href="#section-6-12.1" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-6-12.2">The received E-Flag is ignored.<a href="#section-6-12.2" class="pilcrow">¶</a>
</li>
      </ul>
<p id="section-6-13">If the NP-Flag is set and the E-Flag is not set, then:<a href="#section-6-13" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-6-14.1">Any upstream neighbor of the Prefix-SID originator <span class="bcp14">MUST</span> keep the
        Prefix-SID on top of the stack.  This is useful when the originator of
        the Prefix-SID needs to stitch the incoming packet into a continuing
        MPLS LSP to the final destination.  This could occur at an ABR (prefix
        propagation from one area to another) or at an ASBR (prefix
        propagation from one domain to another).<a href="#section-6-14.1" class="pilcrow">¶</a>
</li>
      </ul>
<p id="section-6-15">If both the NP-Flag and E-Flag are set, then:<a href="#section-6-15" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-6-16.1">Any upstream neighbor of the Prefix-SID originator 
         <span class="bcp14">MUST</span> replace the Prefix-SID with an Explicit NULL label. This
         is useful, e.g., when the originator of the Prefix-SID is the final destination
         for the related prefix and the originator wishes to receive the packet with the 
         original Traffic Class field <span>[<a href="#RFC5462" class="xref">RFC5462</a>]</span>.<a href="#section-6-16.1" class="pilcrow">¶</a>
</li>
      </ul>
<p id="section-6-17">When the M-Flag is set, the NP-Flag and the E-Flag <span class="bcp14">MUST</span> be ignored on reception.<a href="#section-6-17" class="pilcrow">¶</a></p>
<p id="section-6-18">As the Mapping Server does not specify the originator of a prefix advertisement,
        it is not possible to determine PHP behavior solely based on the Mapping Server 
        Advertisement. However, PHP behavior <span class="bcp14">SHOULD</span> be done in the following cases:<a href="#section-6-18" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-6-19.1">The Prefix is intra-area type and the downstream neighbor is the originator 
         of the prefix.<a href="#section-6-19.1" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-6-19.2">The Prefix is inter-area type and the downstream neighbor is an ABR, which is 
         advertising prefix reachability and is setting the LA-bit in the Prefix 
         Options as described in <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span>.<a href="#section-6-19.2" class="pilcrow">¶</a>
</li>
        <li class="ulEmpty" id="section-6-19.3">The Prefix is external type and the downstream neighbor is an ASBR, which is 
         advertising prefix reachability and is setting the LA-bit in the Prefix 
         Options as described in <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span>.<a href="#section-6-19.3" class="pilcrow">¶</a>
</li>
      </ul>
<p id="section-6-20">When a Prefix-SID is advertised in the OSPFv3 Extended Prefix Range TLV, then
         the value advertised in the Prefix-SID sub-TLV is interpreted as a starting 
         SID/Label value.<a href="#section-6-20" class="pilcrow">¶</a></p>
<p id="section-6-21">Example 1: If the following router addresses (loopback addresses)
        need to be mapped into the corresponding Prefix-SID indexes:<a href="#section-6-21" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-6-22">
<pre>
          Router-A: 2001:DB8::1/128, Prefix-SID: Index 1
          Router-B: 2001:DB8::2/128, Prefix-SID: Index 2
          Router-C: 2001:DB8::3/128, Prefix-SID: Index 3
          Router-D: 2001:DB8::4/128, Prefix-SID: Index 4</pre><a href="#section-6-22" class="pilcrow">¶</a>
</div>
<p id="section-6-23">then the Address Prefix field in the OSPFv3 Extended Prefix Range TLV would be set
        to 2001:DB8::1, the Prefix Length would be set to 128, the Range Size would be set to 4, and 
        the Index value in the Prefix-SID sub-TLV would be set to 1.<a href="#section-6-23" class="pilcrow">¶</a></p>
<p id="section-6-24">Example 2: If the following prefixes need to be mapped into the
        corresponding Prefix-SID indexes:<a href="#section-6-24" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-6-25">
<pre>
          2001:DB8:1::0/120,   Prefix-SID: Index 51
          2001:DB8:1::100/120, Prefix-SID: Index 52
          2001:DB8:1::200/120, Prefix-SID: Index 53
          2001:DB8:1::300/120, Prefix-SID: Index 54
          2001:DB8:1::400/120, Prefix-SID: Index 55
          2001:DB8:1::500/120, Prefix-SID: Index 56
          2001:DB8:1::600/120, Prefix-SID: Index 57</pre><a href="#section-6-25" class="pilcrow">¶</a>
</div>
<p id="section-6-26">then the Prefix field in the OSPFv3 Extended Prefix Range TLV would be set 
        to 2001:DB8:1::0, the Prefix Length would be set to 120, the Range Size would be set to 7,
        and the Index value in the Prefix-SID sub-TLV would be set to 51.<a href="#section-6-26" class="pilcrow">¶</a></p>
</section>
</div>
<div id="ADJSID">
<section id="section-7">
      <h2 id="name-adjacency-segment-identifie">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-adjacency-segment-identifie" class="section-name selfRef">Adjacency Segment Identifier (Adj-SID)</a>
      </h2>
<p id="section-7-1">An Adjacency Segment Identifier (Adj-SID) represents a router
      adjacency in Segment Routing.<a href="#section-7-1" class="pilcrow">¶</a></p>
<div id="ADJSIDSUBTLV">
<section id="section-7.1">
        <h3 id="name-adj-sid-sub-tlv">
<a href="#section-7.1" class="section-number selfRef">7.1. </a><a href="#name-adj-sid-sub-tlv" class="section-name selfRef">Adj-SID Sub-TLV</a>
        </h3>
<p id="section-7.1-1">The Adj-SID sub-TLV is an optional sub-TLV of the Router-Link TLV as defined in 
        <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span>. It <span class="bcp14">MAY</span> appear multiple times
        in the Router-Link TLV. 
        
        The Adj-SID sub-TLV has the following format:<a href="#section-7.1-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-7.1-2">
<pre>
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Type            |              Length           |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Flags         |     Weight    |             Reserved          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   SID/Label/Index (variable)                  |
+---------------------------------------------------------------+</pre><a href="#section-7.1-2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-3">where:<a href="#section-7.1-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-7.1-4.1">
            <dl class="dlParallel" id="section-7.1-4.1.1">
              <dt id="section-7.1-4.1.1.1">Type:</dt>
              <dd id="section-7.1-4.1.1.2">5<a href="#section-7.1-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.3">Length:</dt>
              <dd id="section-7.1-4.1.1.4">7 or 8 octets, depending on the V-Flag.<a href="#section-7.1-4.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.5">Flags:</dt>
              <dd id="section-7.1-4.1.1.6">
                <p id="section-7.1-4.1.1.6.1">Single-octet field containing the following flags:<a href="#section-7.1-4.1.1.6.1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-7.1-4.1.1.6.2">
<pre>
    0 1 2 3 4 5 6 7 
   +-+-+-+-+-+-+-+-+
   |B|V|L|G|P|     |
   +-+-+-+-+-+-+-+-+</pre><a href="#section-7.1-4.1.1.6.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-4.1.1.6.3">where:<a href="#section-7.1-4.1.1.6.3" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-7.1-4.1.1.6.4">
                  <dt id="section-7.1-4.1.1.6.4.1">B-Flag:</dt>
                  <dd id="section-7.1-4.1.1.6.4.2">Backup Flag. If set, the Adj-SID refers to an
                adjacency that is eligible for protection (e.g., using IP Fast
 Reroute (IPFRR) or MPLS-FRR (MPLS Fast Reroute)) as
                described in <span><a href="https://www.rfc-editor.org/rfc/rfc8402#section-3.4" class="relref">Section 3.4</a> of [<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-7.1-4.1.1.6.4.2" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.6.4.3">V-Flag:</dt>
                  <dd id="section-7.1-4.1.1.6.4.4">Value/Index Flag. If set, then the Adj-SID 
                carries an absolute value. If not set, then the Adj-SID carries 
                an index.<a href="#section-7.1-4.1.1.6.4.4" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.6.4.5">L-Flag:</dt>
                  <dd id="section-7.1-4.1.1.6.4.6">Local/Global Flag. If set, then the value/index 
                carried by the Adj-SID has local significance. If not set, then
                the value/index carried by this sub-TLV has global significance.<a href="#section-7.1-4.1.1.6.4.6" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.6.4.7">G-Flag:</dt>
                  <dd id="section-7.1-4.1.1.6.4.8">Group Flag. When set, the G-Flag indicates that the 
                Adj-SID refers to a group of adjacencies (and therefore <span class="bcp14">MAY</span> be assigned
                to other adjacencies as well).<a href="#section-7.1-4.1.1.6.4.8" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.6.4.9">P-Flag.</dt>
                  <dd id="section-7.1-4.1.1.6.4.10">Persistent Flag. When set, the P-Flag indicates that 
     the Adj-SID is persistently allocated, i.e., the Adj-SID value 
     remains the same across router restart and/or interface flap.<a href="#section-7.1-4.1.1.6.4.10" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.6.4.11">Other bits:</dt>
                  <dd id="section-7.1-4.1.1.6.4.12">Reserved. These <span class="bcp14">MUST</span> be zero when sent and are 
                ignored when received.<a href="#section-7.1-4.1.1.6.4.12" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
<dt id="section-7.1-4.1.1.7">Reserved:</dt>
              <dd id="section-7.1-4.1.1.8">
                <span class="bcp14">SHOULD</span> be set to 0 on transmission and <span class="bcp14">MUST</span> be ignored on reception.<a href="#section-7.1-4.1.1.8" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.9">Weight:</dt>
              <dd id="section-7.1-4.1.1.10">Weight used for load-balancing purposes. The use of the
            weight is defined in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-7.1-4.1.1.10" class="pilcrow">¶</a>
</dd>
<dt id="section-7.1-4.1.1.11">SID/Index/Label:</dt>
              <dd id="section-7.1-4.1.1.12">As described in <a href="#PREFIXSID" class="xref">Section 6</a>.<a href="#section-7.1-4.1.1.12" class="pilcrow">¶</a>
</dd>
</dl>
</li>
        </ul>
<p id="section-7.1-5">An SR-capable router <span class="bcp14">MAY</span> allocate an Adj-SID for each of its
        adjacencies and set the B-Flag when the adjacency is eligible for protection by an
        FRR mechanism (IP or MPLS) as described in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-7.1-5" class="pilcrow">¶</a></p>
<p id="section-7.1-6">An SR-capable router <span class="bcp14">MAY</span> allocate more than one Adj-SID to an adjacency.<a href="#section-7.1-6" class="pilcrow">¶</a></p>
<p id="section-7.1-7">An SR-capable router <span class="bcp14">MAY</span> allocate the same Adj-SID to different adjacencies.<a href="#section-7.1-7" class="pilcrow">¶</a></p>
<p id="section-7.1-8">When the P-Flag is not set, the Adj-SID <span class="bcp14">MAY</span> be persistent. When 
     the P-Flag is set, the Adj-SID <span class="bcp14">MUST</span> be persistent.<a href="#section-7.1-8" class="pilcrow">¶</a></p>
</section>
</div>
<div id="LANADJSIDSUBTLV">
<section id="section-7.2">
        <h3 id="name-lan-adj-sid-sub-tlv">
<a href="#section-7.2" class="section-number selfRef">7.2. </a><a href="#name-lan-adj-sid-sub-tlv" class="section-name selfRef">LAN Adj-SID Sub-TLV</a>
        </h3>
<p id="section-7.2-1">The LAN Adjacency SID is an optional sub-TLV of the Router-Link
        TLV. It <span class="bcp14">MAY</span> appear multiple times in the Router-Link TLV. It is used
        to advertise a SID/Label for an adjacency to a non-DR router on a
        broadcast, Non-Broadcast Multi-Access (NBMA), or hybrid <span>[<a href="#RFC6845" class="xref">RFC6845</a>]</span> network.<a href="#section-7.2-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-7.2-2">
<pre>
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|              Type             |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|     Flags     |     Weight    |            Reserved           |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           Neighbor ID                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    SID/Label/Index (variable)                 |
+---------------------------------------------------------------+</pre><a href="#section-7.2-2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-3">where:<a href="#section-7.2-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-7.2-4.1">
            <dl class="dlParallel" id="section-7.2-4.1.1">
              <dt id="section-7.2-4.1.1.1">Type:</dt>
              <dd id="section-7.2-4.1.1.2">6<a href="#section-7.2-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-7.2-4.1.1.3">Length:</dt>
              <dd id="section-7.2-4.1.1.4">11 or 12 octets, depending on the V-Flag.<a href="#section-7.2-4.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-7.2-4.1.1.5">Flags:</dt>
              <dd id="section-7.2-4.1.1.6">Same as in <a href="#ADJSIDSUBTLV" class="xref">Section 7.1</a>.<a href="#section-7.2-4.1.1.6" class="pilcrow">¶</a>
</dd>
<dt id="section-7.2-4.1.1.7">Weight:</dt>
              <dd id="section-7.2-4.1.1.8">Weight used for load-balancing purposes. The use of the
            weight is defined in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-7.2-4.1.1.8" class="pilcrow">¶</a>
</dd>
<dt id="section-7.2-4.1.1.9">Reserved:</dt>
              <dd id="section-7.2-4.1.1.10">
                <span class="bcp14">SHOULD</span> be set to 0 on transmission and <span class="bcp14">MUST</span> be ignored on reception.<a href="#section-7.2-4.1.1.10" class="pilcrow">¶</a>
</dd>
<dt id="section-7.2-4.1.1.11">Neighbor ID:</dt>
              <dd id="section-7.2-4.1.1.12">The Router ID of the neighbor for which the LAN Adjacency SID is 
            advertised.<a href="#section-7.2-4.1.1.12" class="pilcrow">¶</a>
</dd>
<dt id="section-7.2-4.1.1.13">SID/Index/Label:</dt>
              <dd id="section-7.2-4.1.1.14">
                <p id="section-7.2-4.1.1.14.1">As described in <a href="#PREFIXSID" class="xref">Section 6</a>.<a href="#section-7.2-4.1.1.14.1" class="pilcrow">¶</a></p>
<p id="section-7.2-4.1.1.14.2">When the P-Flag is not set, the LAN Adjacency SID <span class="bcp14">MAY</span> be persistent. When 
         the P-Flag is set, the LAN Adjacency SID <span class="bcp14">MUST</span> be persistent.<a href="#section-7.2-4.1.1.14.2" class="pilcrow">¶</a></p>
</dd>
</dl>
</li>
        </ul>
</section>
</div>
</section>
</div>
<section id="section-8">
      <h2 id="name-elements-of-procedure">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-elements-of-procedure" class="section-name selfRef">Elements of Procedure</a>
      </h2>
<section id="section-8.1">
        <h3 id="name-intra-area-segment-routing-">
<a href="#section-8.1" class="section-number selfRef">8.1. </a><a href="#name-intra-area-segment-routing-" class="section-name selfRef">Intra-area Segment Routing in OSPFv3</a>
        </h3>
<p id="section-8.1-1">An OSPFv3 router that supports Segment Routing <span class="bcp14">MAY</span> advertise Prefix-
        SIDs for any prefix to which it is advertising reachability (e.g.,
        a loopback IP address as described in <a href="#PREFIXSID" class="xref">Section 6</a>).<a href="#section-8.1-1" class="pilcrow">¶</a></p>
<p id="section-8.1-2">A Prefix-SID can also be advertised by SR Mapping Servers (as
        described in <span>[<a href="#RFC8661" class="xref">RFC8661</a>]</span>). A Mapping
        Server advertises Prefix-SIDs for remote prefixes that exist in the
        OSPFv3 routing domain. Multiple Mapping Servers can advertise Prefix-SIDs 
        for the same prefix, in which case the same Prefix-SID <span class="bcp14">MUST</span> be advertised by
        all of them. The SR Mapping Server could use either area flooding scope or
        autonomous system flooding scope when advertising Prefix-SIDs for
        prefixes, based on the configuration of the SR Mapping Server.
        Depending on the flooding scope used, the SR Mapping Server chooses the
        OSPFv3 LSA type that will be used. If the area flooding scope is needed,
        an E-Intra-Area-Prefix-LSA <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span>
        is used. If autonomous system flooding scope is needed,
        an E-AS-External-LSA <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span> is used.<a href="#section-8.1-2" class="pilcrow">¶</a></p>
<p id="section-8.1-3">When a Prefix-SID is advertised by the Mapping Server, which is
        indicated by the M-Flag in the Prefix-SID sub-TLV (<a href="#PREFIXSID" class="xref">Section 6</a>), the route type as implied by
        the LSA type is ignored and the Prefix-SID is bound to the
        corresponding prefix independent of the route type.<a href="#section-8.1-3" class="pilcrow">¶</a></p>
<p id="section-8.1-4">Advertisement of the Prefix-SID by the Mapping Server using an
        Inter-Area Prefix TLV, External-Prefix TLV, or Intra-Area-Prefix TLV
        <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span> does not itself
        contribute to the prefix reachability. The NU-bit <span>[<a href="#RFC5340" class="xref">RFC5340</a>]</span> <span class="bcp14">MUST</span> be set in the
        PrefixOptions field of the LSA, which is used by the Mapping Server to
        advertise SID or SID Range, which prevents the advertisement from contributing to
        prefix reachability.<a href="#section-8.1-4" class="pilcrow">¶</a></p>
<p id="section-8.1-5">An SR Mapping Server <span class="bcp14">MUST</span> use the OSPFv3 Extended Prefix Range TLVs when advertising SIDs
        for prefixes. Prefixes of different route types can be combined in a single OSPFv3 
        Extended Prefix Range TLV advertised by an SR Mapping Server.<a href="#section-8.1-5" class="pilcrow">¶</a></p>
<p id="section-8.1-6">Area-scoped OSPFv3 Extended Prefix Range TLVs are propagated between areas, similar 
        to propagation of prefixes between areas. Same rules that are used for propagating 
        prefixes between areas <span>[<a href="#RFC5340" class="xref">RFC5340</a>]</span> are used for the propagation of 
        the prefix ranges.<a href="#section-8.1-6" class="pilcrow">¶</a></p>
</section>
<section id="section-8.2">
        <h3 id="name-inter-area-segment-routing-">
<a href="#section-8.2" class="section-number selfRef">8.2. </a><a href="#name-inter-area-segment-routing-" class="section-name selfRef">Inter-area Segment Routing in OSPFv3</a>
        </h3>
<p id="section-8.2-1">In order to support SR in a multiarea environment, OSPFv3 <span class="bcp14">MUST</span>
        propagate Prefix-SID information between areas. The following
        procedure is used to propagate Prefix-SIDs between areas.<a href="#section-8.2-1" class="pilcrow">¶</a></p>
<p id="section-8.2-2">When an OSPFv3 ABR advertises an Inter-Area-Prefix-LSA from an
        intra-area prefix to all its connected areas, it will also include the
        Prefix-SID sub-TLV as described in <a href="#PREFIXSID" class="xref">Section 6</a>. The
        Prefix-SID value will be set as follows:<a href="#section-8.2-2" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-8.2-3.1">The ABR will look at its best path to the prefix in the source area
            and find the advertising router associated with the best
            path to that prefix.<a href="#section-8.2-3.1" class="pilcrow">¶</a>
</li>
          <li class="ulEmpty" id="section-8.2-3.2">The ABR will then determine if this router advertised a Prefix-SID 
 for the prefix and use it when advertising the Prefix-SID to other 
 connected areas.<a href="#section-8.2-3.2" class="pilcrow">¶</a>
</li>
          <li class="ulEmpty" id="section-8.2-3.3">If no Prefix-SID was advertised for the prefix in the source
            area by the router that contributes to the best path to the
            prefix, the originating ABR will use the Prefix-SID advertised by any
            other router when propagating the Prefix-SID for the prefix to other areas.<a href="#section-8.2-3.3" class="pilcrow">¶</a>
</li>
        </ul>
<p id="section-8.2-4">When an OSPFv3 ABR advertises an Inter-Area-Prefix-LSA from an
        inter-area route to all its connected areas, it will also include the
        Prefix-SID sub-TLV as described in <a href="#PREFIXSID" class="xref">Section 6</a>. The
        Prefix-SID value will be set as follows:<a href="#section-8.2-4" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-8.2-5.1">The ABR will look at its best path to the prefix in the backbone
            area and find the advertising router associated with the best
            path to that prefix.<a href="#section-8.2-5.1" class="pilcrow">¶</a>
</li>
          <li class="ulEmpty" id="section-8.2-5.2">The ABR will then determine if this router advertised a Prefix-SID
            for the prefix and use it when advertising the Prefix-SID to other
            connected areas.<a href="#section-8.2-5.2" class="pilcrow">¶</a>
</li>
          <li class="ulEmpty" id="section-8.2-5.3">If no Prefix-SID was advertised for the prefix in the backbone
            area by the ABR that contributes to the best path to the prefix,
            the originating ABR will use the Prefix-SID advertised by any
            other router when propagating the Prefix-SID for the prefix to other areas.<a href="#section-8.2-5.3" class="pilcrow">¶</a>
</li>
        </ul>
</section>
<section id="section-8.3">
        <h3 id="name-segment-routing-for-externa">
<a href="#section-8.3" class="section-number selfRef">8.3. </a><a href="#name-segment-routing-for-externa" class="section-name selfRef">Segment Routing for External Prefixes</a>
        </h3>
<p id="section-8.3-1">AS-External-LSAs are flooded domain wide. When an ASBR, which
        supports SR, originates an E-AS-External-LSA, it <span class="bcp14">SHOULD</span> also include
        a Prefix-SID sub-TLV as described in <a href="#PREFIXSID" class="xref">Section 6</a>.
        The Prefix-SID value will be set to the SID that has been reserved for
        that prefix.<a href="#section-8.3-1" class="pilcrow">¶</a></p>
<p id="section-8.3-2">When a Not-So-Stubby Area (NSSA) <span>[<a href="#RFC3101" class="xref">RFC3101</a>]</span> ABR
        translates an E-NSSA-LSA into an E-AS-External-LSA, it <span class="bcp14">SHOULD</span> also
        advertise the Prefix-SID for the prefix. The NSSA ABR determines its
        best path to the prefix advertised in the translated E-NSSA-LSA and
        finds the advertising router associated with that path.  If the
        advertising router has advertised a Prefix-SID for the prefix, then
        the NSSA ABR uses it when advertising the Prefix-SID for the
        E-AS-External-LSA. Otherwise, the Prefix-SID advertised by any other
        router will be used.<a href="#section-8.3-2" class="pilcrow">¶</a></p>
</section>
<section id="section-8.4">
        <h3 id="name-advertisement-of-adj-sid">
<a href="#section-8.4" class="section-number selfRef">8.4. </a><a href="#name-advertisement-of-adj-sid" class="section-name selfRef">Advertisement of Adj-SID</a>
        </h3>
<p id="section-8.4-1">The Adjacency Segment Routing Identifier (Adj-SID) is advertised
        using the Adj-SID sub-TLV as described in <a href="#ADJSID" class="xref">Section 7</a>.<a href="#section-8.4-1" class="pilcrow">¶</a></p>
<section id="section-8.4.1">
          <h4 id="name-advertisement-of-adj-sid-on">
<a href="#section-8.4.1" class="section-number selfRef">8.4.1. </a><a href="#name-advertisement-of-adj-sid-on" class="section-name selfRef">Advertisement of Adj-SID on Point-to-Point Links</a>
          </h4>
<p id="section-8.4.1-1">An Adj-SID <span class="bcp14">MAY</span> be advertised for any adjacency on a
          point-to-point (P2P) link that is in neighbor state 2-Way or
          higher. If the adjacency on a P2P link transitions from the FULL
          state, then the Adj-SID for that adjacency <span class="bcp14">MAY</span> be removed from the
          area. If the adjacency transitions to a state lower than 2-Way, then
          the Adj-SID Advertisement <span class="bcp14">MUST</span> be withdrawn from the area.<a href="#section-8.4.1-1" class="pilcrow">¶</a></p>
</section>
<section id="section-8.4.2">
          <h4 id="name-adjacency-sid-on-broadcast-">
<a href="#section-8.4.2" class="section-number selfRef">8.4.2. </a><a href="#name-adjacency-sid-on-broadcast-" class="section-name selfRef">Adjacency SID on Broadcast or NBMA Interfaces</a>
          </h4>
<p id="section-8.4.2-1">Broadcast, NBMA, or hybrid <span>[<a href="#RFC6845" class="xref">RFC6845</a>]</span> networks in OSPFv3 are 
          represented by a star topology where the DR is the central 
          point to which all other routers on the broadcast, NBMA, or hybrid network connect. 
          As a result, routers on the broadcast, NBMA, or hybrid network advertise only
          their adjacency to the DR. Routers that do not act as DR do not form or advertise
          adjacencies with each other. They do, however, maintain 2-Way adjacency state
          with each other and are directly reachable.<a href="#section-8.4.2-1" class="pilcrow">¶</a></p>
<p id="section-8.4.2-2">When Segment Routing is used, each router on the broadcast, NBMA, or hybrid
          network <span class="bcp14">MAY</span> advertise the Adj-SID for its adjacency to the DR using the
          Adj-SID sub-TLV as described in <a href="#ADJSIDSUBTLV" class="xref">Section 7.1</a>.<a href="#section-8.4.2-2" class="pilcrow">¶</a></p>
<p id="section-8.4.2-3">SR-capable routers <span class="bcp14">MAY</span> also advertise a LAN
          Adjacency SID for other neighbors (e.g., Backup Designated Router
          (BDR), DR-OTHER, etc.) on the broadcast, NBMA, or hybrid network
          using the LAN Adj-SID sub-TLV as described in <a href="#LANADJSIDSUBTLV" class="xref">Section 7.2</a>.<a href="#section-8.4.2-3" class="pilcrow">¶</a></p>
</section>
</section>
</section>
<div id="IANA">
<section id="section-9">
      <h2 id="name-iana-considerations">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
      </h2>
<p id="section-9-1">This specification updates two existing OSPFv3 registries.<a href="#section-9-1" class="pilcrow">¶</a></p>
<div id="EPLTLVREG">
<section id="section-9.1">
        <h3 id="name-ospfv3-extended-lsa-tlvs-re">
<a href="#section-9.1" class="section-number selfRef">9.1. </a><a href="#name-ospfv3-extended-lsa-tlvs-re" class="section-name selfRef">"OSPFv3 Extended-LSA TLVs" Registry</a>
        </h3>
<p id="section-9.1-1">The following values have been allocated:<a href="#section-9.1-1" class="pilcrow">¶</a></p>
<span id="name-ospfv3-extended-lsa-tlvs"></span><div id="IANA1">
<table class="left" id="table-1">
          <caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-ospfv3-extended-lsa-tlvs" class="selfRef">OSPFv3 Extended-LSA TLVs</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Value</th>
              <th class="text-left" rowspan="1" colspan="1">Description</th>
              <th class="text-left" rowspan="1" colspan="1">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">9</td>
              <td class="text-left" rowspan="1" colspan="1">OSPFv3 Extended Prefix Range TLV</td>
              <td class="text-left" rowspan="1" colspan="1">This document</td>
            </tr>
          </tbody>
        </table>
</div>
</section>
</div>
<div id="EXTLSAREG">
<section id="section-9.2">
        <h3 id="name-ospfv3-extended-lsa-sub-tlv">
<a href="#section-9.2" class="section-number selfRef">9.2. </a><a href="#name-ospfv3-extended-lsa-sub-tlv" class="section-name selfRef">"OSPFv3 Extended-LSA Sub-TLVs" Registry</a>
        </h3>
<p id="section-9.2-1">The following values have been allocated:<a href="#section-9.2-1" class="pilcrow">¶</a></p>
<span id="name-ospfv3-extended-lsa-sub-tlvs"></span><div id="IANA2">
<table class="left" id="table-2">
          <caption>
<a href="#table-2" class="selfRef">Table 2</a>:
<a href="#name-ospfv3-extended-lsa-sub-tlvs" class="selfRef">OSPFv3 Extended-LSA Sub-TLVs</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Value</th>
              <th class="text-left" rowspan="1" colspan="1">Description</th>
              <th class="text-left" rowspan="1" colspan="1">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">4</td>
              <td class="text-left" rowspan="1" colspan="1">Prefix-SID sub-TLV</td>
              <td class="text-left" rowspan="1" colspan="1">This document</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">5</td>
              <td class="text-left" rowspan="1" colspan="1">Adj-SID sub-TLV</td>
              <td class="text-left" rowspan="1" colspan="1">This document</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">6</td>
              <td class="text-left" rowspan="1" colspan="1">LAN Adj-SID sub-TLV</td>
              <td class="text-left" rowspan="1" colspan="1">This document</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">7</td>
              <td class="text-left" rowspan="1" colspan="1">SID/Label sub-TLV</td>
              <td class="text-left" rowspan="1" colspan="1">This document</td>
            </tr>
          </tbody>
        </table>
</div>
</section>
</div>
</section>
</div>
<div id="Error-handling">
<section id="section-10">
      <h2 id="name-tlv-sub-tlv-error-handling">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-tlv-sub-tlv-error-handling" class="section-name selfRef">TLV/Sub-TLV Error Handling</a>
      </h2>
<p id="section-10-1">For any new TLVs/sub-TLVs defined in this document, if the length is
invalid, the LSA in which it is advertised is considered malformed and
<span class="bcp14">MUST</span> be ignored. Errors <span class="bcp14">SHOULD</span> be logged subject
to rate limiting.<a href="#section-10-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Security">
<section id="section-11">
      <h2 id="name-security-considerations">
<a href="#section-11" class="section-number selfRef">11. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
      </h2>
<p id="section-11-1">With the OSPFv3 Segment Routing extensions defined herein,
      OSPFv3 will now program the MPLS data plane <span>[<a href="#RFC3031" class="xref">RFC3031</a>]</span>.
      Previously, LDP <span>[<a href="#RFC5036" class="xref">RFC5036</a>]</span> or 
      another label distribution mechanism was required to advertise MPLS labels and 
      program the MPLS data plane.<a href="#section-11-1" class="pilcrow">¶</a></p>
<p id="section-11-2">In general, the same types of attacks that can be carried out on the IP
      control plane can be carried out on the MPLS control plane resulting in traffic
      being misrouted in the respective data planes. However, the latter can be more
      difficult to detect and isolate.<a href="#section-11-2" class="pilcrow">¶</a></p>
<p id="section-11-3">Existing security extensions, as described in <span>[<a href="#RFC5340" class="xref">RFC5340</a>]</span> and
       <span>[<a href="#RFC8362" class="xref">RFC8362</a>]</span>, apply to these Segment Routing
       extensions. While OSPFv3 is under a single administrative domain, there can be 
       deployments where potential attackers have access to one or more networks in the
       OSPFv3 routing domain. In these deployments, stronger authentication mechanisms,
       such as those specified in <span>[<a href="#RFC4552" class="xref">RFC4552</a>]</span> or 
       <span>[<a href="#RFC7166" class="xref">RFC7166</a>]</span>,
       <span class="bcp14">SHOULD</span> be used.<a href="#section-11-3" class="pilcrow">¶</a></p>
<p id="section-11-4">Implementations <span class="bcp14">MUST</span> ensure that malformed TLVs and sub-TLVs defined in this document 
       are detected and that they do not provide a vulnerability for attackers to crash the OSPFv3 
       router or routing process. Reception of a malformed TLV or sub-TLV <span class="bcp14">SHOULD</span> be counted 
       and/or logged for further analysis. Logging of malformed TLVs and sub-TLVs <span class="bcp14">SHOULD</span>
       be rate limited to prevent a Denial-of-Service (DoS) attack (distributed or otherwise) 
       from overloading the OSPFv3 control plane.<a href="#section-11-4" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-12">
      <h2 id="name-references">
<a href="#section-12" class="section-number selfRef">12. </a><a href="#name-references" class="section-name selfRef">References</a>
      </h2>
<section id="section-12.1">
        <h3 id="name-normative-references">
<a href="#section-12.1" class="section-number selfRef">12.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
        </h3>
<dl class="references">
<dt id="ALGOREG">[ALGOREG]</dt>
        <dd>
<span class="refAuthor">IANA</span>, <span class="refTitle">"Interior Gateway Protocol (IGP) Parameters"</span>, <span>&lt;<a href="https://www.iana.org/assignments/igp-parameters">https://www.iana.org/assignments/igp-parameters</a>&gt;</span>. </dd>
<dt id="RFC2119">[RFC2119]</dt>
        <dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03">March 1997</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>&gt;</span>. </dd>
<dt id="RFC3031">[RFC3031]</dt>
        <dd>
<span class="refAuthor">Rosen, E.</span><span class="refAuthor">, Viswanathan, A.</span><span class="refAuthor">, and R. Callon</span>, <span class="refTitle">"Multiprotocol Label Switching Architecture"</span>, <span class="seriesInfo">RFC 3031</span>, <span class="seriesInfo">DOI 10.17487/RFC3031</span>, <time datetime="2001-01">January 2001</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc3031">https://www.rfc-editor.org/info/rfc3031</a>&gt;</span>. </dd>
<dt id="RFC3101">[RFC3101]</dt>
        <dd>
<span class="refAuthor">Murphy, P.</span>, <span class="refTitle">"The OSPF Not-So-Stubby Area (NSSA) Option"</span>, <span class="seriesInfo">RFC 3101</span>, <span class="seriesInfo">DOI 10.17487/RFC3101</span>, <time datetime="2003-01">January 2003</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc3101">https://www.rfc-editor.org/info/rfc3101</a>&gt;</span>. </dd>
<dt id="RFC5036">[RFC5036]</dt>
        <dd>
<span class="refAuthor">Andersson, L., Ed.</span><span class="refAuthor">, Minei, I., Ed.</span><span class="refAuthor">, and B. Thomas, Ed.</span>, <span class="refTitle">"LDP Specification"</span>, <span class="seriesInfo">RFC 5036</span>, <span class="seriesInfo">DOI 10.17487/RFC5036</span>, <time datetime="2007-10">October 2007</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc5036">https://www.rfc-editor.org/info/rfc5036</a>&gt;</span>. </dd>
<dt id="RFC5340">[RFC5340]</dt>
        <dd>
<span class="refAuthor">Coltun, R.</span><span class="refAuthor">, Ferguson, D.</span><span class="refAuthor">, Moy, J.</span><span class="refAuthor">, and A. Lindem</span>, <span class="refTitle">"OSPF for IPv6"</span>, <span class="seriesInfo">RFC 5340</span>, <span class="seriesInfo">DOI 10.17487/RFC5340</span>, <time datetime="2008-07">July 2008</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc5340">https://www.rfc-editor.org/info/rfc5340</a>&gt;</span>. </dd>
<dt id="RFC5462">[RFC5462]</dt>
        <dd>
<span class="refAuthor">Andersson, L.</span><span class="refAuthor"> and R. Asati</span>, <span class="refTitle">"Multiprotocol Label Switching (MPLS) Label Stack Entry: "EXP" Field Renamed to "Traffic Class" Field"</span>, <span class="seriesInfo">RFC 5462</span>, <span class="seriesInfo">DOI 10.17487/RFC5462</span>, <time datetime="2009-02">February 2009</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc5462">https://www.rfc-editor.org/info/rfc5462</a>&gt;</span>. </dd>
<dt id="RFC6845">[RFC6845]</dt>
        <dd>
<span class="refAuthor">Sheth, N.</span><span class="refAuthor">, Wang, L.</span><span class="refAuthor">, and J. Zhang</span>, <span class="refTitle">"OSPF Hybrid Broadcast and Point-to-Multipoint Interface Type"</span>, <span class="seriesInfo">RFC 6845</span>, <span class="seriesInfo">DOI 10.17487/RFC6845</span>, <time datetime="2013-01">January 2013</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc6845">https://www.rfc-editor.org/info/rfc6845</a>&gt;</span>. </dd>
<dt id="RFC7770">[RFC7770]</dt>
        <dd>
<span class="refAuthor">Lindem, A., Ed.</span><span class="refAuthor">, Shen, N.</span><span class="refAuthor">, Vasseur, JP.</span><span class="refAuthor">, Aggarwal, R.</span><span class="refAuthor">, and S. Shaffer</span>, <span class="refTitle">"Extensions to OSPF for Advertising Optional Router Capabilities"</span>, <span class="seriesInfo">RFC 7770</span>, <span class="seriesInfo">DOI 10.17487/RFC7770</span>, <time datetime="2016-02">February 2016</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc7770">https://www.rfc-editor.org/info/rfc7770</a>&gt;</span>. </dd>
<dt id="RFC8174">[RFC8174]</dt>
        <dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05">May 2017</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>&gt;</span>. </dd>
<dt id="RFC8362">[RFC8362]</dt>
        <dd>
<span class="refAuthor">Lindem, A.</span><span class="refAuthor">, Roy, A.</span><span class="refAuthor">, Goethals, D.</span><span class="refAuthor">, Reddy Vallem, V.</span><span class="refAuthor">, and F. Baker</span>, <span class="refTitle">"OSPFv3 Link State Advertisement (LSA) Extensibility"</span>, <span class="seriesInfo">RFC 8362</span>, <span class="seriesInfo">DOI 10.17487/RFC8362</span>, <time datetime="2018-04">April 2018</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8362">https://www.rfc-editor.org/info/rfc8362</a>&gt;</span>. </dd>
<dt id="RFC8402">[RFC8402]</dt>
        <dd>
<span class="refAuthor">Filsfils, C., Ed.</span><span class="refAuthor">, Previdi, S., Ed.</span><span class="refAuthor">, Ginsberg, L.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, Litkowski, S.</span><span class="refAuthor">, and R. Shakir</span>, <span class="refTitle">"Segment Routing Architecture"</span>, <span class="seriesInfo">RFC 8402</span>, <span class="seriesInfo">DOI 10.17487/RFC8402</span>, <time datetime="2018-07">July 2018</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8402">https://www.rfc-editor.org/info/rfc8402</a>&gt;</span>. </dd>
<dt id="RFC8661">[RFC8661]</dt>
        <dd>
<span class="refAuthor">Bashandy, A., Ed.</span><span class="refAuthor">, Filsfils, C., Ed.</span><span class="refAuthor">, Previdi, S.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, and S. Litkowski</span>, <span class="refTitle">"Segment Routing MPLS Interworking with LDP"</span>, <span class="seriesInfo">RFC 8661</span>, <span class="seriesInfo">DOI 10.17487/RFC8661</span>, <time datetime="2019-12">December 2019</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8661">https://www.rfc-editor.org/info/rfc8661</a>&gt;</span>. </dd>
<dt id="RFC8665">[RFC8665]</dt>
      <dd>
<span class="refAuthor">Psenak, P., Ed.</span><span class="refAuthor">, Previdi, S., Ed.</span><span class="refAuthor">, Filfils, C.</span><span class="refAuthor">, Gredler, H.</span><span class="refAuthor">, Shakir, R.</span><span class="refAuthor">, Henderickx, W.</span><span class="refAuthor">, and J. Tantsura</span>, <span class="refTitle">"OSPF Extensions for Segment Routing"</span>, <span class="seriesInfo">RFC 8665</span>, <span class="seriesInfo">DOI 10.17487/RFC8665</span>, <time datetime="2019-12">December 2019</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8665">https://www.rfc-editor.org/info/rfc8665</a>&gt;</span>. </dd>
</dl>
</section>
<section id="section-12.2">
        <h3 id="name-informative-references">
<a href="#section-12.2" class="section-number selfRef">12.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
        </h3>
<dl class="references">
<dt id="RFC4552">[RFC4552]</dt>
        <dd>
<span class="refAuthor">Gupta, M.</span><span class="refAuthor"> and N. Melam</span>, <span class="refTitle">"Authentication/Confidentiality for OSPFv3"</span>, <span class="seriesInfo">RFC 4552</span>, <span class="seriesInfo">DOI 10.17487/RFC4552</span>, <time datetime="2006-06">June 2006</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc4552">https://www.rfc-editor.org/info/rfc4552</a>&gt;</span>. </dd>
<dt id="RFC7166">[RFC7166]</dt>
        <dd>
<span class="refAuthor">Bhatia, M.</span><span class="refAuthor">, Manral, V.</span><span class="refAuthor">, and A. Lindem</span>, <span class="refTitle">"Supporting Authentication Trailer for OSPFv3"</span>, <span class="seriesInfo">RFC 7166</span>, <span class="seriesInfo">DOI 10.17487/RFC7166</span>, <time datetime="2014-03">March 2014</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc7166">https://www.rfc-editor.org/info/rfc7166</a>&gt;</span>. </dd>
<dt id="RFC7855">[RFC7855]</dt>
      <dd>
<span class="refAuthor">Previdi, S., Ed.</span><span class="refAuthor">, Filsfils, C., Ed.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, Litkowski, S.</span><span class="refAuthor">, Horneffer, M.</span><span class="refAuthor">, and R. Shakir</span>, <span class="refTitle">"Source Packet Routing in Networking (SPRING) Problem Statement and Requirements"</span>, <span class="seriesInfo">RFC 7855</span>, <span class="seriesInfo">DOI 10.17487/RFC7855</span>, <time datetime="2016-05">May 2016</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc7855">https://www.rfc-editor.org/info/rfc7855</a>&gt;</span>. </dd>
</dl>
</section>
</section>
<div id="Acknowledgements">
<section id="section-appendix.a">
      <h2 id="name-contributors">
<a href="#name-contributors" class="section-name selfRef">Contributors</a>
      </h2>
<p id="section-appendix.a-1">The following people gave a substantial contribution to the content
      of this document and should be considered coauthors:<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-appendix.a-2">
<pre>    
   Clarence Filsfils
   Cisco Systems, Inc.
   Brussels
   Belgium
   
   Email: cfilsfil@cisco.com</pre><a href="#section-appendix.a-2" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.a-3">
<pre>  
   Hannes Gredler
   RtBrick Inc.
   Austria

   Email: hannes@rtbrick.com</pre><a href="#section-appendix.a-3" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.a-4">
<pre>     
   Rob Shakir
   Google, Inc.
   United States of America 

   Email: robjs@google.com</pre><a href="#section-appendix.a-4" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.a-5">
<pre>     
   Wim Henderickx
   Nokia
   Belgium

   Email: wim.henderickx@nokia.com</pre><a href="#section-appendix.a-5" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.a-6">
<pre>     
   Jeff Tantsura
   Apstra, Inc.
   United States of America

   Email: jefftant.ietf@gmail.com</pre><a href="#section-appendix.a-6" class="pilcrow">¶</a>
</div>
<p id="section-appendix.a-7">Thanks to Acee Lindem for his substantial contribution to the content of 
      this document.<a href="#section-appendix.a-7" class="pilcrow">¶</a></p>
<p id="section-appendix.a-8">We would like to thank Anton Smirnov for his contribution as well.<a href="#section-appendix.a-8" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.b">
      <h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
      </h2>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Peter Psenak (<span class="role">editor</span>)</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc.</span></div>
<div dir="auto" class="left"><span class="street-address">Eurovea Centre, Central 3, Pribinova Street 10</span></div>
<div dir="auto" class="left">
<span class="postal-code">81109</span> <span class="locality">Bratislava</span>
</div>
<div dir="auto" class="left"><span class="country-name">Slovakia</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:ppsenak@cisco.com" class="email">ppsenak@cisco.com</a>
</div>
</address>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Stefano Previdi (<span class="role">editor</span>)</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc.</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:stefano@previdi.net" class="email">stefano@previdi.net</a>
</div>
</address>
</section>
</div>
<script>var toc = document.getElementById("toc");
var tocToggle = toc.querySelector("h2");
var tocNav = toc.querySelector("nav");

// mobile menu toggle
tocToggle.onclick = function(event) {
    if (window.innerWidth < 1024) {
 var tocNavDisplay = tocNav.currentStyle ? tocNav.currentStyle.display : getComputedStyle(tocNav, null).display;
 if (tocNavDisplay == "none") {
     tocNav.style.display = "block";
 } else {
     tocNav.style.display = "none";
 }
    }
}

// toc anchor scroll to anchor
tocNav.addEventListener("click", function (event) {
    event.preventDefault();
    if (event.target.nodeName == 'A') {
 if (window.innerWidth < 1024) {
     tocNav.style.display = "none";
 }
 var href = event.target.getAttribute("href");
 var anchorId = href.substr(1);
 var anchor =  document.getElementById(anchorId);
 anchor.scrollIntoView(true);
 window.history.pushState("","",href);
    }
});

// switch toc mode when window resized
window.onresize = function () {
    if (window.innerWidth < 1024) {
 tocNav.style.display = "none";
    } else {
 tocNav.style.display = "block";
    }
}
</script>
</body>
</html>