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
|
<pre>Internet Engineering Task Force (IETF) D. Papadimitriou
Request for Comments: 5787 Alcatel-Lucent
Category: Experimental March 2010
ISSN: 2070-1721
<span class="h1">OSPFv2 Routing Protocols Extensions for</span>
<span class="h1">Automatically Switched Optical Network (ASON) Routing</span>
Abstract
The ITU-T has defined an architecture and requirements for operating
an Automatically Switched Optical Network (ASON).
The Generalized Multiprotocol Label Switching (GMPLS) protocol suite
is designed to provide a control plane for a range of network
technologies including optical networks such as time division
multiplexing (TDM) networks including SONET/SDH and Optical Transport
Networks (OTNs), and lambda switching optical networks.
The requirements for GMPLS routing to satisfy the requirements of
ASON routing, and an evaluation of existing GMPLS routing protocols
are provided in other documents. This document defines extensions to
the OSPFv2 Link State Routing Protocol to meet the requirements for
routing in an ASON.
Note that this work is scoped to the requirements and evaluation
expressed in <a href="./rfc4258">RFC 4258</a> and <a href="./rfc4652">RFC 4652</a> and the ITU-T Recommendations
current when those documents were written. Future extensions of
revisions of this work may be necessary if the ITU-T Recommendations
are revised or if new requirements are introduced into a revision of
<a href="./rfc4258">RFC 4258</a>.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for examination, experimental implementation, and
evaluation.
This document defines an Experimental Protocol for the Internet
community. 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). Not
all documents approved by the IESG are a candidate for any level of
Internet Standard; see <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
<span class="grey">Papdimitriou Experimental [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc5787">http://www.rfc-editor.org/info/rfc5787</a>.
Copyright Notice
Copyright (c) 2010 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) 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.
<span class="grey">Papdimitriou Experimental [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-1.1">1.1</a>. Conventions Used in This Document ..........................<a href="#page-5">5</a>
<a href="#section-2">2</a>. Routing Areas, OSPF Areas, and Protocol Instances ...............<a href="#page-5">5</a>
<a href="#section-3">3</a>. Reachability ....................................................<a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Node IPv4 Local Prefix Sub-TLV .............................<a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. Node IPv6 Local Prefix Sub-TLV .............................<a href="#page-7">7</a>
<a href="#section-4">4</a>. Link Attribute ..................................................<a href="#page-8">8</a>
<a href="#section-4.1">4.1</a>. Local Adaptation ...........................................<a href="#page-8">8</a>
<a href="#section-4.2">4.2</a>. Bandwidth Accounting .......................................<a href="#page-9">9</a>
<a href="#section-5">5</a>. Routing Information Scope .......................................<a href="#page-9">9</a>
<a href="#section-5.1">5.1</a>. Terminology and Identification .............................<a href="#page-9">9</a>
5.2. Link Advertisement (Local and Remote TE Router ID
Sub-TLV) ..................................................<a href="#page-10">10</a>
<a href="#section-5.3">5.3</a>. Reachability Advertisement (Local TE Router ID sub-TLV) ...<a href="#page-11">11</a>
<a href="#section-6">6</a>. Routing Information Dissemination ..............................<a href="#page-12">12</a>
<a href="#section-6.1">6.1</a>. Import/Export Rules .......................................<a href="#page-13">13</a>
<a href="#section-6.2">6.2</a>. Discovery and Selection ...................................<a href="#page-13">13</a>
<a href="#section-6.2.1">6.2.1</a>. Upward Discovery and Selection .....................<a href="#page-13">13</a>
<a href="#section-6.2.2">6.2.2</a>. Downward Discovery and Selection ...................<a href="#page-14">14</a>
<a href="#section-6.2.3">6.2.3</a>. Router Information Experimental Capabilities TLV ...<a href="#page-16">16</a>
<a href="#section-6.3">6.3</a>. Loop Prevention ...........................................<a href="#page-16">16</a>
<a href="#section-6.3.1">6.3.1</a>. Associated RA ID ...................................<a href="#page-17">17</a>
<a href="#section-6.3.2">6.3.2</a>. Processing .........................................<a href="#page-18">18</a>
<a href="#section-6.4">6.4</a>. Resiliency ................................................<a href="#page-19">19</a>
<a href="#section-6.5">6.5</a>. Neighbor Relationship and Routing Adjacency ...............<a href="#page-20">20</a>
<a href="#section-6.6">6.6</a>. Reconfiguration ...........................................<a href="#page-20">20</a>
<a href="#section-7">7</a>. OSPFv2 Scalability .............................................<a href="#page-21">21</a>
<a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-21">21</a>
<a href="#section-9">9</a>. Experimental Code Points .......................................<a href="#page-21">21</a>
<a href="#section-9.1">9.1</a>. Sub-TLVs of the Link TLV ..................................<a href="#page-22">22</a>
<a href="#section-9.2">9.2</a>. Sub-TLVs of the Node Attribute TLV ........................<a href="#page-22">22</a>
<a href="#section-9.3">9.3</a>. Sub-TLVs of the Router Address TLV ........................<a href="#page-23">23</a>
<a href="#section-9.4">9.4</a>. TLVs of the Router Information LSA ........................<a href="#page-23">23</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-24">24</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-24">24</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-25">25</a>
<a href="#section-11">11</a>. Acknowledgements ..............................................<a href="#page-26">26</a>
<a href="#appendix-A">Appendix A</a>. ASON Terminology ......................................<a href="#page-27">27</a>
<a href="#appendix-B">Appendix B</a>. ASON Routing Terminology ..............................<a href="#page-28">28</a>
<span class="grey">Papdimitriou Experimental [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The Generalized Multiprotocol Label Switching (GMPLS) [<a href="./rfc3945" title=""Generalized Multi-Protocol Label Switching (GMPLS) Architecture"">RFC3945</a>]
protocol suite is designed to provide a control plane for a range of
network technologies including optical networks such as time division
multiplexing (TDM) networks including SONET/SDH and Optical Transport
Networks (OTNs), and lambda switching optical networks.
The ITU-T defines the architecture of the Automatically Switched
Optical Network (ASON) in [<a href="#ref-G.8080" title=""Architecture for the Automatically Switched Optical Network (ASON),"">G.8080</a>].
[<a id="ref-RFC4258">RFC4258</a>] details the routing requirements for the GMPLS suite of
routing protocols to support the capabilities and functionality of
ASON control planes identified in [<a href="#ref-G.7715" title=""Architecture and Requirements for the Automatically Switched Optical Network (ASON)"">G.7715</a>] and in [<a href="#ref-G.7715.1" title=""ASON Routing Architecture and Requirements for Link State Protocols"">G.7715.1</a>].
[<a id="ref-RFC4652">RFC4652</a>] evaluates the IETF Link State routing protocols against the
requirements identified in [<a href="./rfc4258" title=""Requirements for Generalized Multi- Protocol Label Switching (GMPLS) Routing for the Automatically Switched Optical Network (ASON)"">RFC4258</a>]. <a href="./rfc4652#section-7.1">Section 7.1 of [RFC4652]</a>
summarizes the capabilities to be provided by OSPFv2 [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>] in
support of ASON routing. This document details the OSPFv2 specifics
for ASON routing.
Multi-layer transport networks are constructed from multiple networks
of different technologies operating in a client-server relationship.
The ASON routing model includes the definition of routing levels that
provide scaling and confidentiality benefits. In multi-level
routing, domains called routing areas (RAs) are arranged in a
hierarchical relationship. Note that as described in [<a href="./rfc4652" title=""Evaluation of Existing Routing Protocols against Automatic Switched Optical Network (ASON) Routing Requirements"">RFC4652</a>] there
is no implied relationship between multi-layer transport networks and
multi-level routing. The multi-level routing mechanisms described in
this document work for both single-layer and multi-layer networks.
Implementations may support a hierarchical routing topology (multi-
level) for multiple transport network layers and/or a hierarchical
routing topology for a single transport network layer.
This document details the processing of the generic (technology-
independent) link attributes that are defined in [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>],
[<a href="./rfc4202" title=""Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4202</a>], and [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>] and that are extended in this document. As
detailed in <a href="#section-4.2">Section 4.2</a>, technology-specific traffic engineering
attributes (and their processing) may be defined in other documents
that complement this document.
Note that this work is scoped to the requirements and evaluation
expressed in [<a href="./rfc4258" title=""Requirements for Generalized Multi- Protocol Label Switching (GMPLS) Routing for the Automatically Switched Optical Network (ASON)"">RFC4258</a>] and [<a href="./rfc4652" title=""Evaluation of Existing Routing Protocols against Automatic Switched Optical Network (ASON) Routing Requirements"">RFC4652</a>] and the ITU-T Recommendations
current when those documents were written. Future extensions of
revisions of this work may be necessary if the ITU-T Recommendations
are revised or if new requirements are introduced into a revision of
[<a href="./rfc4258" title=""Requirements for Generalized Multi- Protocol Label Switching (GMPLS) Routing for the Automatically Switched Optical Network (ASON)"">RFC4258</a>].
<span class="grey">Papdimitriou Experimental [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
This document is classified as Experimental. Significant changes to
routing protocols are of concern to the stability of the Internet.
The extensions described in this document are intended for cautious
use in self-contained environments. The objective is to determine
whether these extensions are stable and functional, whether there is
a demand for implementation and deployment, and whether the
extensions have any impact on existing routing protocol deployments.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Conventions Used in This Document</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
The reader is assumed to be familiar with the terminology and
requirements developed in [<a href="./rfc4258" title=""Requirements for Generalized Multi- Protocol Label Switching (GMPLS) Routing for the Automatically Switched Optical Network (ASON)"">RFC4258</a>] and the evaluation outcomes
detailed in [<a href="./rfc4652" title=""Evaluation of Existing Routing Protocols against Automatic Switched Optical Network (ASON) Routing Requirements"">RFC4652</a>].
General ASON terminology is provided in <a href="#appendix-A">Appendix A</a>. ASON routing
terminology is described in <a href="#appendix-B">Appendix B</a>.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Routing Areas, OSPF Areas, and Protocol Instances</span>
An ASON routing area (RA) represents a partition of the data plane,
and its identifier is used within the control plane as the
representation of this partition.
RAs are arranged in hierarchical levels such that any one RA may
contain multiple other RAs, and is wholly contained by a single RA.
Thus, an RA may contain smaller RAs inter-connected by links. The
limit of the subdivision results in an RA that contains just two sub-
networks interconnected by a single link.
An ASON RA can be mapped to an OSPF area, but the hierarchy of ASON
RA levels does not map to the hierarchy of OSPF routing areas.
Instead, successive hierarchical levels of RAs MUST be represented by
separate instances of the protocol. Thus, inter-level routing
information exchange (as described in <a href="#section-6">Section 6</a>) involves the export
and import of routing information between protocol instances.
An ASON RA may therefore be identified by the combination of its OSPF
instance identifier and its OSPF area identifier. With proper and
careful network-wide configuration, this can be achieved using just
the OSPF area identifier, and this process is RECOMMENDED in this
document. These concepts and the subsequent handling of network
reconfiguration is discussed in <a href="#section-6">Section 6</a>.
<span class="grey">Papdimitriou Experimental [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Reachability</span>
In order to advertise blocks of reachable address prefixes, a
summarization mechanism is introduced that complements the techniques
described in [<a href="./rfc5786" title=""Advertising a Router's Local Addresses in OSPF TE Extensions"">RFC5786</a>].
This extension takes the form of a network mask (a 32-bit number
indicating the range of IP addresses residing on a single IP
network/subnet). The set of local addresses is carried in an OSPFv2
TE LSA Node Attribute TLV (a specific sub-TLV is defined per address
family, i.e., IPv4 and IPv6, used as network-unique identifiers).
The proposed solution is to advertise the local address prefixes of a
router as new sub-TLVs of the (OSPFv2 TE LSA) Node Attribute top-
level TLV. This document defines the following sub-TLVs:
- Node IPv4 Local Prefix sub-TLV: Length: variable
- Node IPv6 Local Prefix sub-TLV: Length: variable
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Node IPv4 Local Prefix Sub-TLV</span>
The Type field of the Node IPv4 Local Prefix sub-TLV is assigned a
value in the range 32768-32777 agreed to by all participants in the
experiment. The Value field of this sub-TLV contains one or more
local IPv4 prefixes. The Length is measured in bytes and, as defined
in [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>], reports the length in bytes of the Value part of the
sub-TLV. It is set to 8 x n, where n is the number of local IPv4
prefixes included in the sub-TLV.
The Node IPv4 Local Prefix sub-TLV has the following format:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length (8 x n) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Network Mask 1 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| IPv4 Address 1 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
// ... //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Network Mask n |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| IPv4 Address n |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
<span class="grey">Papdimitriou Experimental [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
Network mask i: A 32-bit number indicating the IPv4 address mask for
the ith advertised destination prefix.
Each <Network mask, IPv4 Address> pair listed as part of this sub-TLV
represents a reachable destination prefix hosted by the advertising
Router ID.
The local addresses that can be learned from Opaque TE LSAs (that is,
the router address and TE interface addresses) SHOULD NOT be
advertised in the node IPv4 Local Prefix sub-TLV.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Node IPv6 Local Prefix Sub-TLV</span>
The Type field of the Node IPv6 Local Prefix sub-TLV is assigned a
value in the range 32768-32777 agreed to by all participants in the
experiment. The Value field of this sub-TLV contains one or more
local IPv6 prefixes. IPv6 Prefix representation uses [<a href="./rfc5340" title=""OSPF for IPv6"">RFC5340</a>],
Section A.4.1.
The Node IPv6 Local Prefix sub-TLV has the following format:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| PrefixLength | PrefixOptions | (0) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| IPv6 Address Prefix 1 |
| |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
// ... //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| PrefixLength | PrefixOptions | (0) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| IPv6 Address Prefix n |
| |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
<span class="grey">Papdimitriou Experimental [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
Length reports the length of the Value part of the sub-TLV in bytes.
It is set to the sum over all of the local prefixes included in the
sub-TLV of (4 + (number of 32-bit words in the prefix) * 4).
The encoding of each prefix potentially using fewer than four 32-bit
words is described below.
PrefixLength: Length in bits of the prefix.
PrefixOptions: 8-bit field describing various capabilities
associated with the prefix (see [<a href="./rfc5340" title=""OSPF for IPv6"">RFC5340</a>], Section A.4.2).
IPv6 Address Prefix i: The ith IPv6 address prefix in the list.
Each prefix is encoded in an even multiple of 32-bit words using
the fewest pairs of 32-bit words necessary to include the entire
prefix. Thus, each prefix is encoded in either 64 or 128 bits
with trailing zero bit padding as necessary.
The local addresses that can be learned from TE LSAs, i.e., router
address and TE interface addresses, SHOULD NOT be advertised in the
node IPv6 Local Prefix sub-TLV.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Link Attribute</span>
[<a id="ref-RFC4652">RFC4652</a>] provides a map between link attributes and characteristics
and their representation in sub-TLVs of the top-level Link TLV of the
Opaque TE LSA [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>] and [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>], with the exception of the
local adaptation (see below). Advertisement of this information
SHOULD be supported on a per-layer basis, i.e., one Opaque TE LSA per
switching capability (and per bandwidth granularity, e.g., low-order
virtual container and high-order virtual container).
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Local Adaptation</span>
Local adaptation is defined as a TE link attribute (i.e., sub-TLV)
that describes the cross/inter-layer relationships.
The Interface Switching Capability Descriptor (ISCD) TE Attribute
[<a href="./rfc4202" title=""Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4202</a>] identifies the ability of the TE link to support cross-
connection to another link within the same layer, and the ability to
use a locally terminated connection that belongs to one layer as a
data link for another layer (adaptation capability). However, the
information associated with the ability to terminate connections
within that layer (referred to as the termination capability) is
embedded with the adaptation capability.
<span class="grey">Papdimitriou Experimental [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
For instance, a link between two optical cross-connects will contain
at least one ISCD attribute describing the lambda switching capable
(LSC) switching capability; whereas a link between an optical cross-
connect and an IP/MPLS LSR will contain at least two ISCD attributes:
one for the description of the LSC termination capability and one for
the packet switching capable (PSC) adaptation capability.
In OSPFv2, the Interface Switching Capability Descriptor (ISCD) is a
sub-TLV (of type 15) of the top-level Link TLV (of type 2) [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>].
The adaptation and termination capabilities are advertised using two
separate ISCD sub-TLVs within the same top-level Link TLV.
Per [<a href="./rfc4202" title=""Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4202</a>] and [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>], an interface MAY have more than one ISCD
sub-TLV. Hence, the corresponding advertisements should not result
in any compatibility issues.
Further refinement of the ISCD sub-TLV for multi-layer networks is
outside the scope of this document.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Bandwidth Accounting</span>
GMPLS routing defines an Interface Switching Capability Descriptor
(ISCD) that delivers, among other things, information about the
(maximum/minimum) bandwidth per priority that a Label Switched Path
(LSP) can make use of. Per [<a href="./rfc4202" title=""Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4202</a>] and [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>], one or more ISCD
sub-TLVs can be associated with an interface. This information,
combined with the Unreserved Bandwidth (sub-TLV defined in <a href="./rfc3630#section-2.5.8">[RFC3630],
Section 2.5.8</a>), provides the basis for bandwidth accounting.
In the ASON context, additional information may be included when the
representation and information in the other advertised fields are not
sufficient for a specific technology (e.g., SDH). The definition of
technology-specific information elements is beyond the scope of this
document. Some technologies will not require additional information
beyond what is already defined in [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>], [<a href="./rfc4202" title=""Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4202</a>], and
[<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>].
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Routing Information Scope</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Terminology and Identification</span>
The definition of short-hand terminology introduced in [<a href="./rfc4652" title=""Evaluation of Existing Routing Protocols against Automatic Switched Optical Network (ASON) Routing Requirements"">RFC4652</a>] is
repeated here for clarity.
- Pi is a physical (bearer/data/transport plane) node.
<span class="grey">Papdimitriou Experimental [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
- Li is a logical control plane entity that is associated to a single
data plane (abstract) node. Each Li is identified by a unique TE
Router ID. The latter is a control plane identifier, defined as
the Router Address top-level TLV of the Type 1 TE LSA [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>].
Note: The Router Address top-level TLV definition, processing, and
usage remain per [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>]. This TLV specifies a stable IP address
of the advertising router (Ri) that is always reachable if there is
any IP connectivity to it (e.g., via the Data Communication
Network). Moreover, each advertising router advertises a unique,
reachable IP address for each Pi on behalf of which it makes
advertisements.
- Ri is a logical control plane entity that is associated to a
control plane "router". The latter is the source for topology
information that it generates and shares with other control plane
"routers". The Ri is identified by the (advertising) Router ID
(32-bit) [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>].
The Router ID, which is represented by Ri and which corresponds to
the RC-ID [<a href="./rfc4258" title=""Requirements for Generalized Multi- Protocol Label Switching (GMPLS) Routing for the Automatically Switched Optical Network (ASON)"">RFC4258</a>], does not enter into the identification of the
logical entities representing the data plane resources such as
links. The Routing Database (RDB) is associated to the Ri.
Note: Aside from the Li/Pi mappings, these identifiers are not
assumed to be in a particular entity relationship except that the Ri
may have multiple Lis in its scope. The relationship between Ri and
Li is simple at any moment in time: an Li may be advertised by only
one Ri at any time. However, an Ri may advertise a set of one or
more Lis. Hence, the OSPFv2 routing protocol must support a single
Ri advertising on behalf of more than one Li.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Link Advertisement (Local and Remote TE Router ID Sub-TLV)</span>
A Router ID (Ri) advertising on behalf multiple TE Router IDs (Lis)
creates a 1:N relationship between the Router ID and the TE Router
ID. As the link local and link remote (unnumbered) ID association is
not unique per node (per Li unicity), the advertisement needs to
indicate the remote Lj value and rely on the initial discovery
process to retrieve the [Li;Lj] relationship. In brief, as
unnumbered links have their ID defined on a per-Li basis, the remote
Lj needs to be identified to scope the link remote ID to the local
Li. Therefore, the routing protocol MUST be able to disambiguate the
advertised TE links so that they can be associated with the correct
TE Router ID.
<span class="grey">Papdimitriou Experimental [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
For this purpose, a new sub-TLV of the (OSPFv2 TE LSA) top-level Link
TLV is introduced that defines the Local and Remote TE Router ID.
The Type field of the Local and Remote TE Router ID sub-TLV is
assigned a value in the range 32768-32777 agreed to by all
participants in the experiment. The Length field takes the value 8.
The Value field of this sub-TLV contains 4 octets of the Local TE
Router Identifier followed by 4 octets of the Remote TE Router
Identifier. The value of the Local and Remote TE Router Identifier
SHOULD NOT be set to 0.
The format of the Local and Remote TE Router ID sub-TLV is:
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 (8) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Local TE Router Identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Remote TE Router Identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
This sub-TLV is only required to be included as part of the top-level
Link TLV if the Router ID is advertising on behalf of more than one
TE Router ID. In any other case, this sub-TLV SHOULD be omitted
except if the operator plans to start off with 1 Li and progressively
add more Lis (under the same Ri) such as to maintain consistency.
Note: The Link ID sub-TLV that identifies the other end of the link
(i.e., Router ID of the neighbor for point-to-point links) MUST
appear exactly once per Link TLV. This sub-TLV MUST be processed as
defined in [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>].
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Reachability Advertisement (Local TE Router ID sub-TLV)</span>
When the Router ID is advertised on behalf of multiple TE Router IDs
(Lis), the routing protocol MUST be able to associate the advertised
reachability information with the correct TE Router ID.
For this purpose, a new sub-TLV of the (OSPFv2 TE LSA) top-level Node
Attribute TLV is introduced. This TLV associates the local prefixes
(see above) to a given TE Router ID.
<span class="grey">Papdimitriou Experimental [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
The Type field of the Local TE Router ID sub-TLV is assigned a value
in the range 32768-32777 agreed to by all participants in the
experiment. The Length field takes the value 4. The Value field of
this sub-TLV contains the Local TE Router Identifier [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>]
encoded over 4 octets.
The format of the Local TE Router ID sub-TLV is:
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 (4) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Local TE Router Identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
This sub-TLV is only required to be included as part of the Node
Attribute TLV if the Router ID is advertising on behalf of more than
one TE Router ID. In any other case, this sub-TLV SHOULD be omitted.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Routing Information Dissemination</span>
An ASON routing area (RA) represents a partition of the data plane,
and its identifier is used within the control plane as the
representation of this partition. An RA may contain smaller RAs
inter-connected by links. The limit of the subdivision results is an
RA that contains two sub-networks interconnected by a single link.
ASON RA levels do not reflect routing protocol levels (such as OSPF
areas).
Successive hierarchical levels of RAs can be represented by separate
instances of the protocol.
Routing controllers (RCs) supporting RAs disseminate information
downward and upward in this hierarchy. The vertical routing
information dissemination mechanisms described in this section do not
introduce or imply a new OSPF routing area hierarchy. RCs supporting
RAs at multiple levels are structured as separate OSPF instances with
routing information exchanges between levels described by import and
export rules operating between OSPF instances.
The implication is that an RC that performs import/export of routing
information as described in this document does not implement an Area
Border Router (ABR) functionality.
<span class="grey">Papdimitriou Experimental [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Import/Export Rules</span>
RCs supporting RAs disseminate information upward and downward in the
hierarchy by importing/exporting routing information as Opaque TE
LSAs (Opaque Type 1) of LS Type 10. The information that MAY be
exchanged between adjacent levels includes the Router Address, Link,
and Node Attribute top-level TLVs.
The Opaque TE LSA import/export rules are governed as follows:
- If the export target interface is associated with the same RA as is
associated with the import interface, the Opaque LSA MUST NOT be
imported.
- If a match is found between the advertising Router ID in the header
of the received Opaque TE LSA and one of the Router IDs belonging
to the RA of the export target interface, the Opaque LSA MUST NOT
be imported.
- If these two conditions are not met, the Opaque TE LSA MAY be
imported according to local policy. If imported, the LSA MAY be
disseminated according to local policy. If disseminated, the
normal OSPF flooding rules MUST be followed and the advertising
Router ID MUST be set to the importing router's Router ID.
The imported/exported routing information content MAY be transformed,
e.g., filtered or aggregated, as long as the resulting routing
information is consistent. In particular, when more than one RC is
bound to adjacent levels and both are allowed to import/export
routing information, it is expected that these transformations are
performed in a consistent manner. Definition of these policy-based
mechanisms is outside the scope of this document.
In practice, and in order to avoid scalability and processing
overhead, routing information imported/exported downward/upward in
the hierarchy is expected to include reachability information (see
<a href="#section-3">Section 3</a>) and, upon strict policy control, link topology
information.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a> Discovery and Selection</span>
<span class="h4"><a class="selflink" id="section-6.2.1" href="#section-6.2.1">6.2.1</a>. Upward Discovery and Selection</span>
In order to discover RCs that are capable of disseminating routing
information up the routing hierarchy, the following capability
descriptor bit is set in the OSPF Router Information Experimental
Capabilities TLV (see <a href="#section-6.2.3">Section 6.2.3</a>) carried in the Router
Information LSA ([<a href="./rfc4970" title=""Extensions to OSPF for Advertising Optional Router Capabilities"">RFC4970</a>]).
<span class="grey">Papdimitriou Experimental [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
- U bit: When set, this flag indicates that the RC is capable of
disseminating routing information upward to the adjacent level.
In the case that multiple RCs are advertised from the same RA with
their U bit set, the RC with the highest Router ID, among those RCs
with the U bit set, SHOULD be selected as the RC for upward
dissemination of routing information. The other RCs MUST NOT
participate in the upward dissemination of routing information as
long as the Opaque LSA information corresponding to the highest
Router ID RC does not reach MaxAge. This mechanism prevents more
than one RC advertising routing information upward in the routing
hierarchy from the same RA.
Note that if the information to allow the selection of the RC that
will be used to disseminate routing information up the hierarchy from
a specific RA cannot be discovered automatically, it MUST be manually
configured.
Once an RC has been selected, it remains unmodified even if an RC
with a higher Router ID is introduced and advertises its capability
to disseminate routing information upward the adjacent level (i.e., U
bit set). This hysteresis mechanism prevents from disturbing the
upward routing information dissemination process in case, e.g., of
flapping.
<span class="h4"><a class="selflink" id="section-6.2.2" href="#section-6.2.2">6.2.2</a>. Downward Discovery and Selection</span>
The same discovery mechanism is used for selecting the RC responsible
for dissemination of routing information downward in the hierarchy.
However, an additional restriction MUST be applied such that the RC
selection process takes into account that an upper level may be
adjacent to one or more lower (RA) levels. For this purpose, a
specific TLV indexing the (lower) RA ID to which the RCs are capable
of disseminating routing information is needed.
The Downstream Associated RA ID TLV is carried in the OSPF Router
Information LSA [<a href="./rfc4970" title=""Extensions to OSPF for Advertising Optional Router Capabilities"">RFC4970</a>]. The Type field of the Downstream
Associated RA ID TLV is assigned a value in the range 32768-32777
agreed to by all participants in the experiment. The Length of this
TLV is n x 4 octets. The Value field of this sub-TLV contains the
list of Associated RA IDs. Each Associated RA ID value is encoded
following the OSPF area ID (32 bits) encoding rules defined in
[<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>].
<span class="grey">Papdimitriou Experimental [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
The format of the Downstream Associated RA ID TLV is:
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 (4 x n) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Associated RA ID 1 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
// ... //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Associated RA ID n |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
To discover RCs that are capable of disseminating routing information
downward through the routing hierarchy, the following capability
descriptor bit is set in the OSPF Router Information Experimental
Capabilities TLV (see <a href="#section-6.2.3">Section 6.2.3</a>) carried in the Router
Information LSA ([<a href="./rfc4970" title=""Extensions to OSPF for Advertising Optional Router Capabilities"">RFC4970</a>]).
Note that the Downstream Associated RA ID TLV MUST be present when
the D bit is set.
- D bit: when set, this flag indicates that the RC is capable of
disseminating routing information downward to the adjacent levels.
If multiple RCs are advertised for the same Associated RA ID, the RC
with the highest Router ID, among the RCs with the D bit set, MUST be
selected as the RC for downward dissemination of routing information.
The other RCs for the same Associated RA ID MUST NOT participate in
the downward dissemination of routing information as long as the
Opaque LSA information corresponding to the highest Router ID RC does
not reach MaxAge. This mechanism prevents more than one RC from
advertising routing information downward through the routing
hierarchy.
Note that if the information to allow the selection of the RC that
will be used to disseminate routing information down the hierarchy to
a specific RA cannot be discovered automatically, it MUST be manually
configured.
The OSPF Router information Opaque LSA (Opaque type of 4, Opaque ID
of 0) and its content, in particular the Router Informational
Capabilities TLV [<a href="./rfc4970" title=""Extensions to OSPF for Advertising Optional Router Capabilities"">RFC4970</a>] and TE Node Capability Descriptor TLV
[<a href="./rfc5073" title=""IGP Routing Protocol Extensions for Discovery of Traffic Engineering Node Capabilities"">RFC5073</a>], MUST NOT be re-originated.
<span class="grey">Papdimitriou Experimental [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
<span class="h4"><a class="selflink" id="section-6.2.3" href="#section-6.2.3">6.2.3</a>. Router Information Experimental Capabilities TLV</span>
A new TLV is defined for inclusion in the Router Information LSA to
carry experimental capabilities because the assignment policy for
bits in the Router Informational Capabilities TLV is "Standards
Action" [<a href="./rfc5226" title="">RFC5226</a>] prohibiting its use from Experimental documents.
The format of the Router Information Experimental Capabilities TLV is
as follows:
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 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Experimental Capabilities |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type A value in the range 32768-32777 agreed to by all
participants in the experiment.
Length A 16-bit field that indicates the length of the value
portion in octets and will be a multiple of 4 octets
dependent on the number of capabilities advertised.
Initially, the length will be 4, denoting 4 octets of
informational capability bits.
Value A variable-length sequence of capability bits rounded to
a multiple of 4 octets padded with undefined bits.
The following experimental capability bits are assigned:
Bit Capabilities
0 The U bit (see <a href="#section-6.2.1">Section 6.2.1</a>)
1 The D bit (see <a href="#section-6.2.2">Section 6.2.2</a>)
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Loop Prevention</span>
When more than one RC is bound to an adjacent level of the hierarchy,
and is configured or selected to redistribute routing information
upward and downward, a specific mechanism is required to avoid
looping of routing information. Looping is the re-introduction of
routing information that has been advertised from the upper level
back to the upper level. This specific case occurs, for example,
when the RC advertising routing information downward in the hierarchy
is not the same one that advertises routing upward in the hierarchy.
<span class="grey">Papdimitriou Experimental [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
When these conditions are met, it is necessary to have a means by
which an RC receiving an Opaque TE LSA imported/exported downward by
an RC associated to the same RA does not import/export the content of
this LSA back upward into the (same) upper level.
Note that configuration and operational simplification can be
obtained when both functionalities are configured on a single RC (per
pair of adjacent levels) fulfilling both roles. Figure 1 provides an
example where such simplification applies.
....................................................
. .
. RC_5 ------------ RC_6 .
. | | .
. | | RA_Y .
Upper . ********* ********* .
Layer ............* RC_1a *.........* RC_2a *.............
__________________* | *_________* | *__________________
............* RC_1b *... ...* RC 2b *.............
Lower . ********* . . ********* .
Layer . | . . | .
. RA_Z | . . | RA_X .
. RC_3 . . RC_4 .
. . . .
........................ .........................
Figure 1. Hierarchical Environment (Example)
In this case, the procedure described in this section MAY be omitted,
as long as these conditions are permanently guaranteed. In all other
cases, without exception, the procedure described in this section
MUST be applied.
<span class="h4"><a class="selflink" id="section-6.3.1" href="#section-6.3.1">6.3.1</a>. Associated RA ID</span>
We need some way of filtering the downward/upward re-originated
Opaque TE LSA. Per [<a href="./rfc5250" title=""The OSPF Opaque LSA Option"">RFC5250</a>], the information contained in Opaque
LSAs may be used directly by OSPF. By adding the RA ID associated
with the incoming routing information, the loop prevention problem
can be solved.
This additional information, referred to as the Associated RA ID, MAY
be carried in Opaque LSAs that include any of the following top-level
TLVs:
- Router Address top-level TLV
- Link top-level TLV
- Node Attribute top-level TLV
<span class="grey">Papdimitriou Experimental [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
The Associated RA ID reflects the identifier of the area from which
the routing information is received. For example, for a multi-level
hierarchy, this identifier does not reflect the originating RA ID; it
will reflect the RA from which the routing information is imported.
The Type field of the Associated RA ID sub-TLV is assigned a value in
the range 32768-32777 agreed to by all participants in the
experiment. The same value MUST be used for the Type regardless of
which TLV the sub-TLV appears in.
The Length of the Associated RA ID TLV is 4 octets. The Value field
of this sub-TLV contains the Associated RA ID. The Associated RA ID
value is encoded following the OSPF area ID (32 bits) encoding rules
defined in [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>].
The format of the Associated RA ID TLV is defined as follows:
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 (4) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Associated RA ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
<span class="h4"><a class="selflink" id="section-6.3.2" href="#section-6.3.2">6.3.2</a>. Processing</span>
When fulfilling the rules detailed in <a href="#section-6.1">Section 6.1</a>, a given Opaque LSA
is imported/exported downward or upward the routing hierarchy, and
the Associated RA ID TLV is added to the received Opaque LSA list of
TLVs such as to identify the area from which this routing information
has been received.
When the RC adjacent to the lower or upper routing level receives
this Opaque LSA, the following rule is applied (in addition to the
rule governing the import/export of Opaque LSAs as detailed in
<a href="#section-6.1">Section 6.1</a>).
- If a match is found between the Associated RA ID of the received
Opaque TE LSA and the RA ID belonging to the area of the export
target interface, the Opaque TE LSA MUST NOT be imported.
- Otherwise, this Opaque LSA MAY be imported and disseminated
downward or upward the routing hierarchy following the OSPF
flooding rules.
This mechanism ensures that no race condition occurs when the
conditions depicted in Figure 2 are met.
<span class="grey">Papdimitriou Experimental [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
RC_5 ------------- RC_6
| |
| | RA_Y
Upper ********* *********
Layer ............* RC_1a *.........* RC_2a *.............
__________________* | *_________* | *__________________
............* RC_1b *.........* RC_2b *.............
Lower ********* *********
Layer | |
| | RA_X
RC_3 --- . . . --- RC_4
Figure 2. Race Condition Prevention (Example)
Assume that RC_1b is configured for exporting routing information
upward toward RA_Y (upward the routing hierarchy) and that RC_2a is
configured for exporting routing information toward RA_X (downward
the routing hierarchy).
Assume that routing information advertised by RC_3 would reach RC_4
faster across RA_Y through hierarchy.
If RC_2b is not able to prevent from importing that information, RC_4
may receive that information before the same advertisement would
propagate in RA_X (from RC_3) to RC_4. For this purpose, RC_1a
inserts the Associated RA X to the imported routing information from
RA_X. Because RC_2b finds a match between the Associated RA ID (X)
of the received Opaque TE LSA and the ID (X) of the RA of the export
target interface, this LSA MUST NOT be imported.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Resiliency</span>
OSPF creates adjacencies between neighboring routers for the purpose
of exchanging routing information. After a neighbor has been
discovered, bidirectional communication is ensured, and a routing
adjacency is formed between RCs, loss of communication may result in
partitioned OSPF areas and so in partitioned RAs.
Consider for instance (see Figure 2) the case where RC_1a and RC_1b
are configured for exchanging routing information downward and upward
RA_Y, respectively, and that RC_2a and RC_2b are not configured for
exchanging any routing information toward RA_X. If the communication
between RC_1a and RC_2a is broken (due, e.g., to RC_5 - RC_6
communication failure), RA_Y could be partitioned.
In these conditions, it is RECOMMENDED that RC_2a be re-configurable
such as to allow for exchanging routing information downward to RA_X.
This reconfiguration MAY be performed manually or automatically. In
<span class="grey">Papdimitriou Experimental [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
the latter cases, automatic reconfiguration uses the mechanism
described in <a href="#section-6.2">Section 6.2</a> (forcing MaxAge of the corresponding opaque
LSA information in case the originating RC becomes unreachable).
Manual reconfiguration MUST be supported.
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. Neighbor Relationship and Routing Adjacency</span>
It is assumed that (point-to-point) IP control channels are
provisioned/configured between RCs belonging to the same routing
level. Provisioning/configuration techniques are outside the scope
of this document.
Once established, the OSPF Hello protocol is responsible for
establishing and maintaining neighbor relationships. This protocol
also ensures that communication between neighbors is bidirectional.
Routing adjacency can subsequently be formed between RCs following
mechanisms defined in [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>].
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a> Reconfiguration</span>
This section details the RA ID reconfiguration steps.
Reconfiguration of the RA ID occurs when the RA ID is modified, e.g.,
from value Z to value X or Y (see Figure 2).
The process of reconfiguring the RA ID involves:
- Disable the import/export of routing information from the upper and
lower levels (to prevent any LS information update).
- Change the RA ID of the local level RA from, e.g., Z to X or Y.
Perform a Link State Database (LSDB) checksum on all routers to
verify that LSDBs are consistent.
- Enable import of upstream and downstream routing information such
as to re-synchronize local-level LSDBs from any LS information that
may have occurred in an upper or a lower routing level.
- Enable export of routing information downstream such as to re-sync
the downstream level with the newly reconfigured RA ID (as part of
the re-advertised Opaque TE LSA).
- Enable export of routing information upstream such as to re-sync
the upstream level with the newly reconfigured RA ID (as part of
the re-advertised Opaque TE LSA).
Note that the re-sync operation needs to be carried out only between
the directly adjacent upper and lower routing levels.
<span class="grey">Papdimitriou Experimental [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. OSPFv2 Scalability</span>
- Routing information exchange upward/downward in the hierarchy
between adjacent RAs SHOULD by default be limited to reachability
information. In addition, several transformations such as prefix
aggregation are RECOMMENDED when allowing the amount of information
imported/exported by a given RC to be decreased without impacting
consistency.
- Routing information exchange upward/downward in the hierarchy
involving TE attributes MUST be under strict policy control.
Pacing and min/max thresholds for triggered updates are strongly
RECOMMENDED.
- The number of routing levels MUST be maintained under strict policy
control.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
This document specifies the contents and processing of Opaque LSAs in
OSPFv2 [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>]. Opaque TE and RI LSAs defined in this document are
not used for SPF computation, and so have no direct effect on IP
routing. Additionally, ASON routing domains are delimited by the
usual administrative domain boundaries.
Any mechanisms used for securing the exchange of normal OSPF LSAs can
be applied equally to all Opaque TE and RI LSAs used in the ASON
context. Authentication of OSPFv2 LSA exchanges (such as OSPF
cryptographic authentication [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>] and [<a href="./rfc5709" title=""OSPFv2 HMAC-SHA Cryptographic Authentication"">RFC5709</a>]) can be used to
secure against passive attacks and provide significant protection
against active attacks. [<a href="./rfc5709" title=""OSPFv2 HMAC-SHA Cryptographic Authentication"">RFC5709</a>] defines a mechanism for
authenticating OSPF packets by making use of the HMAC algorithm in
conjunction with the SHA family of cryptographic hash functions.
[<a id="ref-RFC2154">RFC2154</a>] adds 1) digital signatures to authenticate OSPF LSA data,
2) a certification mechanism for distribution of routing information,
and 3) a neighbor-to-neighbor authentication algorithm to protect
local OSPFv2 protocol exchanges.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Experimental Code Points</span>
This document is classified as Experimental. It defines new TLVs and
sub-TLVs for inclusion in OSPF LSAs. According to the assignment
policies for the registries of code points for these TLVs and sub-
TLVs, values must be assigned from the experimental ranges and must
not be recorded by IANA or mentioned in this document.
The following sections summarize the TLVs and sub-TLVs concerned.
<span class="grey">Papdimitriou Experimental [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Sub-TLVs of the Link TLV</span>
This document defines the following sub-TLVs of the Link TLV carried
in the OSPF TE LSA:
- Local and Remote TE Router ID sub-TLV
- Associated RA ID sub-TLV
The defining text for code point assignment for sub-TLVs of the OSPF
TE Link TLV says ([<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>]):
o Types in the range 10-32767 are to be assigned via Standards
Action.
o Types in the range 32768-32777 are for experimental use; these
will not be registered with IANA, and MUST NOT be mentioned by
RFCs.
o Types in the range 32778-65535 are not to be assigned at this
time.
That means that the new sub-TLVs must be assigned type values from
the range 32768-32777. It is a matter for experimental
implementations to assign their own code points, and to agree with
cooperating implementations participating in the same experiments
what values to use.
Note that the same value for the Associated RA ID sub-TLV MUST be
used when it appears in the Link TLV, the Node Attribute TLV, and the
Router Address TLV.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Sub-TLVs of the Node Attribute TLV</span>
This document defines the following sub-TLVs of the Node Attribute
TLV carried in the OSPF TE LSA.
- Node IPv4 Local Prefix sub-TLV
- Node IPv6 Local Prefix sub-TLV
- Local TE Router ID sub-TLV
- Associated RA ID sub-TLV
The defining text for code point assignment for sub-TLVs of the OSPF
Node Attribute TLV says ([<a href="./rfc5786" title=""Advertising a Router's Local Addresses in OSPF TE Extensions"">RFC5786</a>]):
o Types in the range 3-32767 are to be assigned via Standards
Action.
<span class="grey">Papdimitriou Experimental [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
o Types in the range 32768-32777 are for experimental use; these
will not be registered with IANA, and MUST NOT be mentioned by
RFCs.
o Types in the range 32778-65535 are not to be assigned at this
time. Before any assignments can be made in this range, there
MUST be a Standards Track RFC that specifies IANA
Considerations that covers the range being assigned.
That means that the new sub-TLVs must be assigned type values from
the range 32768-32777. It is a matter for experimental
implementations to assign their own code points, and to agree with
cooperating implementations participating in the same experiments
what values to use.
Note that the same value for the Associated RA ID sub-TLV MUST be
used when it appears in the Link TLV, the Node Attribute TLV, and the
Router Address TLV.
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>. Sub-TLVs of the Router Address TLV</span>
The OSPF Router Address TLV is defined in [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>]. No sub-TLVs are
defined in that document and there is no registry or allocation
policy for sub-TLVs of the Router Address TLV.
This document defines the following new sub-TLV for inclusion in the
OSPF Router Address TLV:
- Associated RA ID sub-TLV
Note that the same value for the Associated RA ID sub-TLV MUST be
used when it appears in the Link TLV, the Node Attribute TLV, and the
Router Address TLV. This is consistent with potential for a future
definition of a registry with policies that match the other existing
registries.
<span class="h3"><a class="selflink" id="section-9.4" href="#section-9.4">9.4</a>. TLVs of the Router Information LSA</span>
This document defines two new TLVs to be carried in the Router
Information LSA.
- Downstream Associated RA ID TLV
- Router Information Experimental Capabilities TLV
The defining text for code point assignment for TLVs of the OSPF
Router Information LSA says ([<a href="./rfc4970" title=""Extensions to OSPF for Advertising Optional Router Capabilities"">RFC4970</a>]):
o 1-32767 Standards Action.
<span class="grey">Papdimitriou Experimental [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
o Types in the range 32768-32777 are for experimental use; these
will not be registered with IANA and MUST NOT be mentioned by
RFCs.
o Types in the range 32778-65535 are reserved and are not to be
assigned at this time. Before any assignments can be made in
this range, there MUST be a Standards Track RFC that specifies
IANA Considerations that covers the range being assigned.
That means that the new TLVs must be assigned type values from the
range 32768-32777. It is a matter for experimental implementations
to assign their own code points, and to agree with cooperating
implementations participating in the same experiments what values to
use.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2154">RFC2154</a>] Murphy, S., Badger, M., and B. Wellington, "OSPF with
Digital Signatures", <a href="./rfc2154">RFC 2154</a>, June 1997.
[<a id="ref-RFC2328">RFC2328</a>] Moy, J., "OSPF Version 2", STD 54, <a href="./rfc2328">RFC 2328</a>, April 1998.
[<a id="ref-RFC3630">RFC3630</a>] Katz, D., Kompella, K., and D. Yeung, "Traffic
Engineering (TE) Extensions to OSPF Version 2", <a href="./rfc3630">RFC</a>
<a href="./rfc3630">3630</a>, September 2003.
[<a id="ref-RFC3945">RFC3945</a>] Mannie, E., Ed., "Generalized Multi-Protocol Label
Switching (GMPLS) Architecture", <a href="./rfc3945">RFC 3945</a>, October 2004.
[<a id="ref-RFC4202">RFC4202</a>] Kompella, K., Ed., and Y. Rekhter, Ed., "Routing
Extensions in Support of Generalized Multi-Protocol
Label Switching (GMPLS)", <a href="./rfc4202">RFC 4202</a>, October 2005.
[<a id="ref-RFC4203">RFC4203</a>] Kompella, K., Ed., and Y. Rekhter, Ed., "OSPF Extensions
in Support of Generalized Multi-Protocol Label Switching
(GMPLS)", <a href="./rfc4203">RFC 4203</a>, October 2005.
[<a id="ref-RFC4970">RFC4970</a>] Lindem, A., Ed., Shen, N., Vasseur, JP., Aggarwal, R.,
and S. Shaffer, "Extensions to OSPF for Advertising
Optional Router Capabilities", <a href="./rfc4970">RFC 4970</a>, July 2007.
<span class="grey">Papdimitriou Experimental [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
May 2008.
[<a id="ref-RFC5250">RFC5250</a>] Berger, L., Bryskin, I., Zinin, A., and R. Coltun, "The
OSPF Opaque LSA Option", <a href="./rfc5250">RFC 5250</a>, July 2008.
[<a id="ref-RFC5340">RFC5340</a>] Coltun, R., Ferguson, D., Moy, J., and A. Lindem, "OSPF
for IPv6", <a href="./rfc5340">RFC 5340</a>, July 2008.
[<a id="ref-RFC5786">RFC5786</a>] Aggarwal, R. and K. Kompella, "Advertising a Router's
Local Addresses in OSPF TE Extensions", <a href="./rfc5786">RFC 5786</a>, March
2010.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-RFC4258">RFC4258</a>] Brungard, D., Ed., "Requirements for Generalized Multi-
Protocol Label Switching (GMPLS) Routing for the
Automatically Switched Optical Network (ASON)", <a href="./rfc4258">RFC</a>
<a href="./rfc4258">4258</a>, November 2005.
[<a id="ref-RFC4652">RFC4652</a>] Papadimitriou, D., Ed., Ong, L., Sadler, J., Shew, S.,
and D. Ward, "Evaluation of Existing Routing Protocols
against Automatic Switched Optical Network (ASON)
Routing Requirements", <a href="./rfc4652">RFC 4652</a>, October 2006.
[<a id="ref-RFC5073">RFC5073</a>] Vasseur, J., Ed., and J. Le Roux, Ed., "IGP Routing
Protocol Extensions for Discovery of Traffic Engineering
Node Capabilities", <a href="./rfc5073">RFC 5073</a>, December 2007.
[<a id="ref-RFC5709">RFC5709</a>] Bhatia, M., Manral, V., Fanto, M., White, R., Barnes,
M., Li, T., and R. Atkinson, "OSPFv2 HMAC-SHA
Cryptographic Authentication", <a href="./rfc5709">RFC 5709</a>, October 2009.
For information on the availability of ITU Documents, please see
<a href="http://www.itu.int">http://www.itu.int</a>.
[<a id="ref-G.7715">G.7715</a>] ITU-T Rec. G.7715/Y.1306, "Architecture and Requirements
for the Automatically Switched Optical Network (ASON)",
June 2002.
[<a id="ref-G.7715.1">G.7715.1</a>] ITU-T Draft Rec. G.7715.1/Y.1706.1, "ASON Routing
Architecture and Requirements for Link State Protocols",
November 2003.
[<a id="ref-G.805">G.805</a>] ITU-T Rec. G.805, "Generic functional architecture of
transport networks)", March 2000.
<span class="grey">Papdimitriou Experimental [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
[<a id="ref-G.8080">G.8080</a>] ITU-T Rec. G.8080/Y.1304, "Architecture for the
Automatically Switched Optical Network (ASON)," November
2001 (and Revision, January 2003).
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Acknowledgements</span>
The author would like to thank Dean Cheng, Acee Lindem, Pandian
Vijay, Alan Davey, Adrian Farrel, Deborah Brungard, and Ben Campbell
for their useful comments and suggestions.
Lisa Dusseault and Jari Arkko provided useful comments during IESG
review.
Question 14 of Study Group 15 of the ITU-T provided useful and
constructive input.
<span class="grey">Papdimitriou Experimental [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. ASON Terminology</span>
This document makes use of the following terms:
Administrative domain: (See Recommendation [<a href="#ref-G.805" title=""Generic functional architecture of transport networks)"">G.805</a>].) For the
purposes of [G7715.1], an administrative domain represents the
extent of resources that belong to a single player such as a
network operator, a service provider, or an end-user.
Administrative domains of different players do not overlap amongst
themselves.
Control plane: performs the call control and connection control
functions. Through signaling, the control plane sets up and
releases connections, and may restore a connection in case of a
failure.
(Control) Domain: represents a collection of (control) entities that
are grouped for a particular purpose. The control plane is
subdivided into domains matching administrative domains. Within
an administrative domain, further subdivisions of the control
plane are recursively applied. A routing control domain is an
abstract entity that hides the details of the RC distribution.
External NNI (E-NNI): interfaces are located between protocol
controllers between control domains.
Internal NNI (I-NNI): interfaces are located between protocol
controllers within control domains.
Link: (See Recommendation G.805.) A "topological component" that
describes a fixed relationship between a "subnetwork" or "access
group" and another "subnetwork" or "access group". Links are not
limited to being provided by a single server trail.
Management plane: performs management functions for the transport
plane, the control plane, and the system as a whole. It also
provides coordination between all the planes. The following
management functional areas are performed in the management plane:
performance, fault, configuration, accounting, and security
management.
Management domain: (See Recommendation G.805.) A management domain
defines a collection of managed objects that are grouped to meet
organizational requirements according to geography, technology,
policy, or other structure, and for a number of functional areas
such as configuration, security, (FCAPS), for the purpose of
providing control in a consistent manner. Management domains can
be disjoint, contained, or overlapping. As such, the resources
<span class="grey">Papdimitriou Experimental [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
within an administrative domain can be distributed into several
possible overlapping management domains. The same resource can
therefore belong to several management domains simultaneously, but
a management domain shall not cross the border of an
administrative domain.
Subnetwork Point (SNP): The SNP is a control plane abstraction that
represents an actual or potential transport plane resource. SNPs
(in different subnetwork partitions) may represent the same
transport resource. A one-to-one correspondence should not be
assumed.
Subnetwork Point Pool (SNPP): A set of SNPs that are grouped together
for the purposes of routing.
Termination Connection Point (TCP): A TCP represents the output of a
Trail Termination function or the input to a Trail Termination
Sink function.
Transport plane: provides bidirectional or unidirectional transfer of
user information, from one location to another. It can also
provide transfer of some control and network management
information. The transport plane is layered; it is equivalent to
the Transport Network defined in Recommendation G.805.
User Network Interface (UNI): interfaces are located between protocol
controllers between a user and a control domain. Note: There is
no routing function associated with a UNI reference point.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. ASON Routing Terminology</span>
This document makes use of the following terms:
Routing Area (RA): an RA represents a partition of the data plane,
and its identifier is used within the control plane as the
representation of this partition. Per [<a href="#ref-G.8080" title=""Architecture for the Automatically Switched Optical Network (ASON),"">G.8080</a>], an RA is defined
by a set of sub-networks, the links that interconnect them, and
the interfaces representing the ends of the links exiting that RA.
An RA may contain smaller RAs inter-connected by links. The limit
of subdivision results in an RA that contains two sub-networks
interconnected by a single link.
Routing Database (RDB): a repository for the local topology, network
topology, reachability, and other routing information that is
updated as part of the routing information exchange and may
additionally contain information that is configured. The RDB may
contain routing information for more than one routing area (RA).
<span class="grey">Papdimitriou Experimental [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc5787">RFC 5787</a> ASON Routing for OSPFv2 Protocols March 2010</span>
Routing Components: ASON routing architecture functions. These
functions can be classified as protocol independent (Link Resource
Manager or LRM, Routing Controller or RC) or protocol specific
(Protocol Controller or PC).
Routing Controller (RC): handles (abstract) information needed for
routing and the routing information exchange with peering RCs by
operating on the RDB. The RC has access to a view of the RDB.
The RC is protocol independent.
Note: Since the RDB may contain routing information pertaining to
multiple RAs (and possibly to multiple layer networks), the RCs
accessing the RDB may share the routing information.
Link Resource Manager (LRM): supplies all the relevant component and
TE link information to the RC. It informs the RC about any state
changes of the link resources it controls.
Protocol Controller (PC): handles protocol-specific message exchanges
according to the reference point over which the information is
exchanged (e.g., E-NNI, I-NNI), and internal exchanges with the
RC. The PC function is protocol dependent.
Author's Address
Dimitri Papadimitriou
Alcatel-Lucent Bell
Copernicuslaan 50
B-2018 Antwerpen
Belgium
Phone: +32 3 2408491
EMail: dimitri.papadimitriou@alcatel-lucent.be
Papdimitriou Experimental [Page 29]
</pre>
|