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
|
<pre>Network Working Group K. Kompella, Ed.
Request for Comments: 4202 Y. Rekhter, Ed.
Category: Standards Track Juniper Networks
October 2005
<span class="h1">Routing Extensions in Support of</span>
<span class="h1">Generalized Multi-Protocol Label Switching (GMPLS)</span>
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2005).
Abstract
This document specifies routing extensions in support of carrying
link state information for Generalized Multi-Protocol Label Switching
(GMPLS). This document enhances the routing extensions required to
support MPLS Traffic Engineering (TE).
<span class="grey">Kompella & Rekhter Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
Table of Contents
<a href="#section-1">1</a>. Introduction. . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Requirements for Layer-Specific TE Attributes . . . . . <a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. Excluding Data Traffic from Control Channels. . . . . . <a href="#page-6">6</a>
<a href="#section-2">2</a>. GMPLS Routing Enhancements. . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-2.1">2.1</a>. Support for Unnumbered Links. . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-2.2">2.2</a>. Link Protection Type. . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-2.3">2.3</a>. Shared Risk Link Group Information. . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-2.4">2.4</a>. Interface Switching Capability Descriptor . . . . . . . <a href="#page-9">9</a>
<a href="#section-2.4.1">2.4.1</a>. Layer-2 Switch Capable. . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-2.4.2">2.4.2</a>. Packet-Switch Capable . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-2.4.3">2.4.3</a>. Time-Division Multiplex Capable . . . . . . . . <a href="#page-12">12</a>
<a href="#section-2.4.4">2.4.4</a>. Lambda-Switch Capable . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-2.4.5">2.4.5</a>. Fiber-Switch Capable. . . . . . . . . . . . . . <a href="#page-13">13</a>
2.4.6. Multiple Switching Capabilities per Interface . 13
<a href="#section-2.4.7">2.4.7</a>. Interface Switching Capabilities and Labels . . <a href="#page-14">14</a>
<a href="#section-2.4.8">2.4.8</a>. Other Issues. . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-2.5">2.5</a>. Bandwidth Encoding. . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-3">3</a>. Examples of Interface Switching Capability Descriptor . . . . <a href="#page-15">15</a>
<a href="#section-3.1">3.1</a>. STM-16 POS Interface on a LSR . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-3.2">3.2</a>. GigE Packet Interface on a LSR. . . . . . . . . . . . . <a href="#page-15">15</a>
3.3. STM-64 SDH Interface on a Digital Cross Connect with
Standard SDH. . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
3.4. STM-64 SDH Interface on a Digital Cross Connect with
Two Types of SDH Multiplexing Hierarchy Supported . . . <a href="#page-16">16</a>
3.5. Interface on an Opaque OXC (SDH Framed) with Support
for One Lambda per Port/Interface . . . . . . . . . . . <a href="#page-16">16</a>
3.6. Interface on a Transparent OXC (PXC) with External
DWDM that understands SDH framing . . . . . . . . . . . <a href="#page-17">17</a>
3.7. Interface on a Transparent OXC (PXC) with External
DWDM That Is Transparent to Bit-Rate and Framing. . . . <a href="#page-17">17</a>
<a href="#section-3.8">3.8</a>. Interface on a PXC with No External DWDM. . . . . . . . <a href="#page-18">18</a>
3.9. Interface on a OXC with Internal DWDM That Understands
SDH Framing . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
3.10. Interface on a OXC with Internal DWDM That Is
Transparent to Bit-Rate and Framing . . . . . . . . . . <a href="#page-19">19</a>
4. Example of Interfaces That Support Multiple Switching
Capabilities. . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-4.1">4.1</a>. Interface on a PXC+TDM Device with External DWDM. . . . <a href="#page-20">20</a>
4.2. Interface on an Opaque OXC+TDM Device with External
DWDM. . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-4.3">4.3</a>. Interface on a PXC+LSR Device with External DWDM. . . . <a href="#page-21">21</a>
<a href="#section-4.4">4.4</a>. Interface on a TDM+LSR Device . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-5">5</a>. Acknowledgements. . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-6">6</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<span class="grey">Kompella & Rekhter Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<a href="#section-7">7</a>. References. . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-7.1">7.1</a>. Normative References. . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-7.2">7.2</a>. Informative References. . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-8">8</a>. Contributors. . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document specifies routing extensions in support of carrying
link state information for Generalized Multi-Protocol Label Switching
(GMPLS). This document enhances the routing extensions [<a href="#ref-ISIS-TE" title=""Intermediate System to Intermediate System (IS-IS) Extensions for Traffic Engineering (TE)"">ISIS-TE</a>],
[<a href="#ref-OSPF-TE" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">OSPF-TE</a>] required to support MPLS Traffic Engineering (TE).
Traditionally, a TE link is advertised as an adjunct to a "regular"
link, i.e., a routing adjacency is brought up on the link, and when
the link is up, both the properties of the link are used for Shortest
Path First (SPF) computations (basically, the SPF metric) and the TE
properties of the link are then advertised.
GMPLS challenges this notion in three ways. First, links that are
not capable of sending and receiving on a packet-by-packet basis may
yet have TE properties; however, a routing adjacency cannot be
brought up on such links. Second, a Label Switched Path can be
advertised as a point-to-point TE link (see [<a href="#ref-LSP-HIER" title=""Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE))"">LSP-HIER</a>]); thus, an
advertised TE link may be between a pair of nodes that don't have a
routing adjacency with each other. Finally, a number of links may be
advertised as a single TE link (perhaps for improved scalability), so
again, there is no longer a one-to-one association of a regular
routing adjacency and a TE link.
Thus we have a more general notion of a TE link. A TE link is a
"logical" link that has TE properties. The link is logical in a
sense that it represents a way to group/map the information about
certain physical resources (and their properties) into the
information that is used by Constrained SPF for the purpose of path
computation, and by GMPLS signaling. This grouping/mapping must be
done consistently at both ends of the link. LMP [<a href="#ref-LMP" title=""Link Management Protocol (LMP)"">LMP</a>] could be used
to check/verify this consistency.
Depending on the nature of resources that form a particular TE link,
for the purpose of GMPLS signaling, in some cases the combination of
<TE link identifier, label> is sufficient to unambiguously identify
the appropriate resource used by an LSP. In other cases, the
combination of <TE link identifier, label> is not sufficient; such
cases are handled by using the link bundling construct [<a href="#ref-LINK-BUNDLE" title=""Link Bundling in MPLS Traffic Engineering (TE)"">LINK-BUNDLE</a>]
that allows to identify the resource by <TE link identifier,
Component link identifier, label>.
<span class="grey">Kompella & Rekhter Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
Some of the properties of a TE link may be configured on the
advertising Label Switching Router (LSR), others which may be
obtained from other LSRs by means of some protocol, and yet others
which may be deduced from the component(s) of the TE link.
A TE link between a pair of LSRs doesn't imply the existence of a
routing adjacency (e.g., an IGP adjacency) between these LSRs. As we
mentioned above, in certain cases a TE link between a pair of LSRs
could be advertised even if there is no routing adjacency at all
between the LSRs (e.g., when the TE link is a Forwarding Adjacency
(see [<a href="#ref-LSP-HIER" title=""Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE))"">LSP-HIER</a>])).
A TE link must have some means by which the advertising LSR can know
of its liveness (this means may be routing hellos, but is not limited
to routing hellos). When an LSR knows that a TE link is up, and can
determine the TE link's TE properties, the LSR may then advertise
that link to its (regular) neighbors.
In this document, we call the interfaces over which regular routing
adjacencies are established "control channels".
[<a id="ref-ISIS-TE">ISIS-TE</a>] and [<a href="#ref-OSPF-TE" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">OSPF-TE</a>] define the canonical TE properties, and say
how to associate TE properties to regular (packet-switched) links.
This document extends the set of TE properties, and also says how to
associate TE properties with non-packet-switched links such as links
between Optical Cross-Connects (OXCs). [<a href="#ref-LSP-HIER" title=""Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE))"">LSP-HIER</a>] says how to
associate TE properties with links formed by Label Switched Paths.
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="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>
[<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Requirements for Layer-Specific TE Attributes</span>
In generalizing TE links to include traditional transport facilities,
there are additional factors that influence what information is
needed about the TE link. These arise from existing transport layer
architecture (e.g., ITU-T Recommendations G.805 and G.806) and
associated layer services. Some of these factors are:
1. The need for LSPs at a specific adaptation, not just a particular
bandwidth. Clients of optical networks obtain connection services
for specific adaptations, for example, a VC-3 circuit. This not
only implies a particular bandwidth, but how the payload is
structured. Thus the VC-3 client would not be satisfied with any
LSP that offered other than 48.384 Mbit/s and with the expected
<span class="grey">Kompella & Rekhter Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
structure. The corollary is that path computation should be able
to find a route that would give a connection at a specific
adaptation.
2. Distinguishing variable adaptation. A resource between two OXCs
(specifically a G.805 trail) can sometimes support different
adaptations at the same time. An example of this is described in
<a href="#section-2.4.8">section 2.4.8</a>. In this situation, the fact that two adaptations
are supported on the same trail is important because the two
layers are dependent, and it is important to be able to reflect
this layer relationship in routing, especially in view of the
relative lack of flexibility of transport layers compared to
packet layers.
3. Inheritable attributes. When a whole multiplexing hierarchy is
supported by a TE link, a lower layer attribute may be applicable
to the upper layers. Protection attributes are a good example of
this. If an OC-192 link is 1+1 protected (a duplicate OC-192
exists for protection), then an STS-3c within that OC-192 (a
higher layer) would inherit the same protection property.
4. Extensibility of layers. In addition to the existing defined
transport layers, new layers and adaptation relationships could
come into existence in the future.
5. Heterogeneous networks whose OXCs do not all support the same set
of layers. In a GMPLS network, not all transport layer network
elements are expected to support the same layers. For example,
there may be switches capable of only VC-11, VC-12, and VC-3, and
there may be others that can only support VC-3 and VC-4. Even
though a network element cannot support a specific layer, it
should be able to know if a network element elsewhere in the
network can support an adaptation that would enable that
unsupported layer to be used. For example, a VC-11 switch could
use a VC-3 capable switch if it knew that a VC-11 path could be
constructed over a VC-3 link connection.
From the factors presented above, development of layer specific GMPLS
routing documents should use the following principles for TE-link
attributes.
1. Separation of attributes. The attributes in a given layer are
separated from attributes in another layer.
2. Support of inter-layer attributes (e.g., adaptation
relationships). Between a client and server layer, a general
mechanism for describing the layer relationship exists. For
<span class="grey">Kompella & Rekhter Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
example, "4 client links of type X can be supported by this server
layer link". Another example is being able to identify when two
layers share a common server layer.
3. Support for inheritable attributes. Attributes which can be
inherited should be identified.
4. Layer extensibility. Attributes should be represented in routing
such that future layers can be accommodated. This is much like
the notion of the generalized label.
5. Explicit attribute scope. For example, it should be clear whether
a given attribute applies to a set of links at the same layer.
The present document captures general attributes that apply to a
single layer network, but doesn't capture inter-layer relationships
of attributes. This work is left to a future document.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Excluding Data Traffic from Control Channels</span>
The control channels between nodes in a GMPLS network, such as OXCs,
SDH cross-connects and/or routers, are generally meant for control
and administrative traffic. These control channels are advertised
into routing as normal links as mentioned in the previous section;
this allows the routing of (for example) RSVP messages and telnet
sessions. However, if routers on the edge of the optical domain
attempt to forward data traffic over these channels, the channel
capacity will quickly be exhausted.
In order to keep these control channels from being advertised into
the user data plane a variety of techniques can be used.
If one assumes that data traffic is sent to BGP destinations, and
control traffic to IGP destinations, then one can exclude data
traffic from the control plane by restricting BGP nexthop resolution.
(It is assumed that OXCs are not BGP speakers.) Suppose that a
router R is attempting to install a route to a BGP destination D. R
looks up the BGP nexthop for D in its IGP's routing table. Say R
finds that the path to the nexthop is over interface I. R then
checks if it has an entry in its Link State database associated with
the interface I. If it does, and the link is not packet-switch
capable (see [<a href="#ref-LSP-HIER" title=""Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE))"">LSP-HIER</a>]), R installs a discard route for destination
D. Otherwise, R installs (as usual) a route for destination D with
nexthop I. Note that R need only do this check if it has packet-
switch incapable links; if all of its links are packet-switch
capable, then clearly this check is redundant.
<span class="grey">Kompella & Rekhter Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
In other instances it may be desirable to keep the whole address
space of a GMPLS routing plane disjoint from the endpoint addresses
in another portion of the GMPLS network. For example, the addresses
of a carrier network where the carrier uses GMPLS but does not wish
to expose the internals of the addressing or topology. In such a
network the control channels are never advertised into the end data
network. In this instance, independent mechanisms are used to
advertise the data addresses over the carrier network.
Other techniques for excluding data traffic from control channels may
also be needed.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. GMPLS Routing Enhancements</span>
In this section we define the enhancements to the TE properties of
GMPLS TE links. Encoding of this information in IS-IS is specified
in [<a href="#ref-GMPLS-ISIS" title=""Intermediate System to Intermediate System (IS-IS) Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">GMPLS-ISIS</a>]. Encoding of this information in OSPF is specified
in [<a href="#ref-GMPLS-OSPF" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">GMPLS-OSPF</a>].
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Support for Unnumbered Links</span>
An unnumbered link has to be a point-to-point link. An LSR at each
end of an unnumbered link assigns an identifier to that link. This
identifier is a non-zero 32-bit number that is unique within the
scope of the LSR that assigns it.
Consider an (unnumbered) link between LSRs A and B. LSR A chooses an
idenfitier for that link. So does LSR B. From A's perspective we
refer to the identifier that A assigned to the link as the "link
local identifier" (or just "local identifier"), and to the identifier
that B assigned to the link as the "link remote identifier" (or just
"remote identifier"). Likewise, from B's perspective the identifier
that B assigned to the link is the local identifier, and the
identifier that A assigned to the link is the remote identifier.
Support for unnumbered links in routing includes carrying information
about the identifiers of that link. Specifically, when an LSR
advertises an unnumbered TE link, the advertisement carries both the
local and the remote identifiers of the link. If the LSR doesn't
know the remote identifier of that link, the LSR should use a value
of 0 as the remote identifier.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Link Protection Type</span>
The Link Protection Type represents the protection capability that
exists for a link. It is desirable to carry this information so that
it may be used by the path computation algorithm to set up LSPs with
appropriate protection characteristics. This information is
<span class="grey">Kompella & Rekhter Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
organized in a hierarchy where typically the minimum acceptable
protection is specified at path instantiation and a path selection
technique is used to find a path that satisfies at least the minimum
acceptable protection. Protection schemes are presented in order
from lowest to highest protection.
This document defines the following protection capabilities:
Extra Traffic
If the link is of type Extra Traffic, it means that the link is
protecting another link or links. The LSPs on a link of this type
will be lost if any of the links it is protecting fail.
Unprotected
If the link is of type Unprotected, it means that there is no
other link protecting this link. The LSPs on a link of this type
will be lost if the link fails.
Shared
If the link is of type Shared, it means that there are one or more
disjoint links of type Extra Traffic that are protecting this
link. These Extra Traffic links are shared between one or more
links of type Shared.
Dedicated 1:1
If the link is of type Dedicated 1:1, it means that there is one
dedicated disjoint link of type Extra Traffic that is protecting
this link.
Dedicated 1+1
If the link is of type Dedicated 1+1, it means that a dedicated
disjoint link is protecting this link. However, the protecting
link is not advertised in the link state database and is therefore
not available for the routing of LSPs.
Enhanced
If the link is of type Enhanced, it means that a protection scheme
that is more reliable than Dedicated 1+1, e.g., 4 fiber
BLSR/MS-SPRING, is being used to protect this link.
The Link Protection Type is optional, and if a Link State
Advertisement doesn't carry this information, then the Link
Protection Type is unknown.
<span class="grey">Kompella & Rekhter Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Shared Risk Link Group Information</span>
A set of links may constitute a 'shared risk link group' (SRLG) if
they share a resource whose failure may affect all links in the set.
For example, two fibers in the same conduit would be in the same
SRLG. A link may belong to multiple SRLGs. Thus the SRLG
Information describes a list of SRLGs that the link belongs to. An
SRLG is identified by a 32 bit number that is unique within an IGP
domain. The SRLG Information is an unordered list of SRLGs that the
link belongs to.
The SRLG of a LSP is the union of the SRLGs of the links in the LSP.
The SRLG of a bundled link is the union of the SRLGs of all the
component links.
If an LSR is required to have multiple diversely routed LSPs to
another LSR, the path computation should attempt to route the paths
so that they do not have any links in common, and such that the path
SRLGs are disjoint.
The SRLG Information may start with a configured value, in which case
it does not change over time, unless reconfigured.
The SRLG Information is optional and if a Link State Advertisement
doesn't carry the SRLG Information, then it means that SRLG of that
link is unknown.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Interface Switching Capability Descriptor</span>
In the context of this document we say that a link is connected to a
node by an interface. In the context of GMPLS interfaces may have
different switching capabilities. For example an interface that
connects a given link to a node may not be able to switch individual
packets, but it may be able to switch channels within an SDH payload.
Interfaces at each end of a link need not have the same switching
capabilities. Interfaces on the same node need not have the same
switching capabilities.
The Interface Switching Capability Descriptor describes switching
capability of an interface. For bi-directional links, the switching
capabilities of an interface are defined to be the same in either
direction. I.e., for data entering the node through that interface
and for data leaving the node through that interface.
A Link State Advertisement of a link carries the Interface Switching
Capability Descriptor(s) only of the near end (the end incumbent on
the LSR originating the advertisement).
<span class="grey">Kompella & Rekhter Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
An LSR performing path computation uses the Link State Database to
determine whether a link is unidirectional or bidirectional.
For a bidirectional link the LSR uses its Link State Database to
determine the Interface Switching Capability Descriptor(s) of the
far-end of the link, as bidirectional links with different Interface
Switching Capabilities at its two ends are allowed.
For a unidirectional link it is assumed that the Interface Switching
Capability Descriptor at the far-end of the link is the same as at
the near-end. Thus, an unidirectional link is required to have the
same interface switching capabilities at both ends. This seems a
reasonable assumption given that unidirectional links arise only with
packet forwarding adjacencies and for these both ends belong to the
same level of the PSC hierarchy.
This document defines the following Interface Switching Capabilities:
Packet-Switch Capable-1 (PSC-1)
Packet-Switch Capable-2 (PSC-2)
Packet-Switch Capable-3 (PSC-3)
Packet-Switch Capable-4 (PSC-4)
Layer-2 Switch Capable (L2SC)
Time-Division-Multiplex Capable (TDM)
Lambda-Switch Capable (LSC)
Fiber-Switch Capable (FSC)
If there is no Interface Switching Capability Descriptor for an
interface, the interface is assumed to be packet-switch capable
(PSC-1).
Interface Switching Capability Descriptors present a new constraint
for LSP path computation.
Irrespective of a particular Interface Switching Capability, the
Interface Switching Capability Descriptor always includes information
about the encoding supported by an interface. The defined encodings
are the same as LSP Encoding as defined in [<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>].
An interface may have more than one Interface Switching Capability
Descriptor. This is used to handle interfaces that support multiple
switching capabilities, for interfaces that have Max LSP Bandwidth
values that differ by priority level, and for interfaces that support
discrete bandwidths.
Depending on a particular Interface Switching Capability, the
Interface Switching Capability Descriptor may include additional
information, as specified below.
<span class="grey">Kompella & Rekhter Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h4"><a class="selflink" id="section-2.4.1" href="#section-2.4.1">2.4.1</a>. Layer-2 Switch Capable</span>
If an interface is of type L2SC, it means that the node receiving
data over this interface can switch the received frames based on the
layer 2 address. For example, an interface associated with a link
terminating on an ATM switch would be considered L2SC.
<span class="h4"><a class="selflink" id="section-2.4.2" href="#section-2.4.2">2.4.2</a>. Packet-Switch Capable</span>
If an interface is of type PSC-1 through PSC-4, it means that the
node receiving data over this interface can switch the received data
on a packet-by-packet basis, based on the label carried in the "shim"
header [<a href="./rfc3032" title=""MPLS Label Stack Encoding"">RFC3032</a>]. The various levels of PSC establish a hierarchy of
LSPs tunneled within LSPs.
For Packet-Switch Capable interfaces the additional information
includes Maximum LSP Bandwidth, Minimum LSP Bandwidth, and interface
MTU.
For a simple (unbundled) link, the Maximum LSP Bandwidth at priority
p is defined to be the smaller of the unreserved bandwidth at
priority p and a "Maximum LSP Size" parameter which is locally
configured on the link, and whose default value is equal to the Max
Link Bandwidth. Maximum LSP Bandwidth for a bundled link is defined
in [<a href="#ref-LINK-BUNDLE" title=""Link Bundling in MPLS Traffic Engineering (TE)"">LINK-BUNDLE</a>].
The Maximum LSP Bandwidth takes the place of the Maximum Link
Bandwidth ([<a href="#ref-ISIS-TE" title=""Intermediate System to Intermediate System (IS-IS) Extensions for Traffic Engineering (TE)"">ISIS-TE</a>], [<a href="#ref-OSPF-TE" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">OSPF-TE</a>]). However, while Maximum Link
Bandwidth is a single fixed value (usually simply the link capacity),
Maximum LSP Bandwidth is carried per priority, and may vary as LSPs
are set up and torn down.
Although Maximum Link Bandwidth is to be deprecated, for backward
compatibility, one MAY set the Maximum Link Bandwidth to the Maximum
LSP Bandwidth at priority 7.
The Minimum LSP Bandwidth specifies the minimum bandwidth an LSP
could reserve.
Typical values for the Minimum LSP Bandwidth and for the Maximum LSP
Bandwidth are enumerated in [<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>].
On a PSC interface that supports Standard SDH encoding, an LSP at
priority p could reserve any bandwidth allowed by the branch of the
SDH hierarchy, with the leaf and the root of the branch being defined
by the Minimum LSP Bandwidth and the Maximum LSP Bandwidth at
priority p.
<span class="grey">Kompella & Rekhter Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
On a PSC interface that supports Arbitrary SDH encoding, an LSP at
priority p could reserve any bandwidth between the Minimum LSP
Bandwidth and the Maximum LSP Bandwidth at priority p, provided that
the bandwidth reserved by the LSP is a multiple of the Minimum LSP
Bandwidth.
The Interface MTU is the maximum size of a packet that can be
transmitted on this interface without being fragmented.
<span class="h4"><a class="selflink" id="section-2.4.3" href="#section-2.4.3">2.4.3</a>. Time-Division Multiplex Capable</span>
If an interface is of type TDM, it means that the node receiving data
over this interface can multiplex or demultiplex channels within an
SDH payload.
For Time-Division Multiplex Capable interfaces the additional
information includes Maximum LSP Bandwidth, the information on
whether the interface supports Standard or Arbitrary SDH, and Minimum
LSP Bandwidth.
For a simple (unbundled) link the Maximum LSP Bandwidth at priority p
is defined as the maximum bandwidth an LSP at priority p could
reserve. Maximum LSP Bandwidth for a bundled link is defined in
[<a href="#ref-LINK-BUNDLE" title=""Link Bundling in MPLS Traffic Engineering (TE)"">LINK-BUNDLE</a>].
The Minimum LSP Bandwidth specifies the minimum bandwidth an LSP
could reserve.
Typical values for the Minimum LSP Bandwidth and for the Maximum LSP
Bandwidth are enumerated in [<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>].
On an interface having Standard SDH multiplexing, an LSP at priority
p could reserve any bandwidth allowed by the branch of the SDH
hierarchy, with the leaf and the root of the branch being defined by
the Minimum LSP Bandwidth and the Maximum LSP Bandwidth at priority
p.
On an interface having Arbitrary SDH multiplexing, an LSP at priority
p could reserve any bandwidth between the Minimum LSP Bandwidth and
the Maximum LSP Bandwidth at priority p, provided that the bandwidth
reserved by the LSP is a multiple of the Minimum LSP Bandwidth.
Interface Switching Capability Descriptor for the interfaces that
support sub VC-3 may include additional information. The nature and
the encoding of such information is outside the scope of this
document.
<span class="grey">Kompella & Rekhter Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
A way to handle the case where an interface supports multiple
branches of the SDH multiplexing hierarchy, multiple Interface
Switching Capability Descriptors would be advertised, one per branch.
For example, if an interface supports VC-11 and VC-12 (which are not
part of same branch of SDH multiplexing tree), then it could
advertise two descriptors, one for each one.
<span class="h4"><a class="selflink" id="section-2.4.4" href="#section-2.4.4">2.4.4</a>. Lambda-Switch Capable</span>
If an interface is of type LSC, it means that the node receiving data
over this interface can recognize and switch individual lambdas
within the interface. An interface that allows only one lambda per
interface, and switches just that lambda is of type LSC.
The additional information includes Reservable Bandwidth per
priority, which specifies the bandwidth of an LSP that could be
supported by the interface at a given priority number.
A way to handle the case of multiple data rates or multiple encodings
within a single TE Link, multiple Interface Switching Capability
Descriptors would be advertised, one per supported data rate and
encoding combination. For example, an LSC interface could support
the establishment of LSC LSPs at both STM-16 and STM-64 data rates.
<span class="h4"><a class="selflink" id="section-2.4.5" href="#section-2.4.5">2.4.5</a>. Fiber-Switch Capable</span>
If an interface is of type FSC, it means that the node receiving data
over this interface can switch the entire contents to another
interface (without distinguishing lambdas, channels or packets).
I.e., an interface of type FSC switches at the granularity of an
entire interface, and can not extract individual lambdas within the
interface. An interface of type FSC can not restrict itself to just
one lambda.
<span class="h4"><a class="selflink" id="section-2.4.6" href="#section-2.4.6">2.4.6</a>. Multiple Switching Capabilities per Interface</span>
An interface that connects a link to an LSR may support not one, but
several Interface Switching Capabilities. For example, consider a
fiber link carrying a set of lambdas that terminates on an LSR
interface that could either cross-connect one of these lambdas to
some other outgoing optical channel, or could terminate the lambda,
and extract (demultiplex) data from that lambda using TDM, and then
cross-connect these TDM channels to some outgoing TDM channels. To
support this a Link State Advertisement may carry a list of Interface
Switching Capabilities Descriptors.
<span class="grey">Kompella & Rekhter Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h4"><a class="selflink" id="section-2.4.7" href="#section-2.4.7">2.4.7</a>. Interface Switching Capabilities and Labels</span>
Depicting a TE link as a tuple that contains Interface Switching
Capabilities at both ends of the link, some examples links may be:
[PSC, PSC] - a link between two packet LSRs
[TDM, TDM] - a link between two Digital Cross Connects
[LSC, LSC] - a link between two OXCs
[PSC, TDM] - a link between a packet LSR and Digital Cross Connect
[PSC, LSC] - a link between a packet LSR and an OXC
[TDM, LSC] - a link between a Digital Cross Connect and an OXC
Both ends of a given TE link has to use the same way of carrying
label information over that link. Carrying label information on a
given TE link depends on the Interface Switching Capability at both
ends of the link, and is determined as follows:
[PSC, PSC] - label is carried in the "shim" header [<a href="./rfc3032" title=""MPLS Label Stack Encoding"">RFC3032</a>]
[TDM, TDM] - label represents a TDM time slot [<a href="#ref-GMPLS-SONET-SDH" title=""Generalized Multi-Protocol Label Switching (GMPLS) Extensions for Synchronous Optical Network (SONET) and Synchronous Digital Hierarchy (SDH) Control"">GMPLS-SONET-SDH</a>]
[LSC, LSC] - label represents a lambda
[FSC, FSC] - label represents a port on an OXC
[PSC, TDM] - label represents a TDM time slot [<a href="#ref-GMPLS-SONET-SDH" title=""Generalized Multi-Protocol Label Switching (GMPLS) Extensions for Synchronous Optical Network (SONET) and Synchronous Digital Hierarchy (SDH) Control"">GMPLS-SONET-SDH</a>]
[PSC, LSC] - label represents a lambda
[PSC, FSC] - label represents a port
[TDM, LSC] - label represents a lambda
[TDM, FSC] - label represents a port
[LSC, FSC] - label represents a port
<span class="h4"><a class="selflink" id="section-2.4.8" href="#section-2.4.8">2.4.8</a>. Other Issues</span>
It is possible that Interface Switching Capability Descriptor will
change over time, reflecting the allocation/deallocation of LSPs.
For example, assume that VC-3, VC-4, VC-4-4c, VC-4-16c and VC-4-64c
LSPs can be established on a STM-64 interface whose Encoding Type is
SDH. Thus, initially in the Interface Switching Capability
Descriptor the Minimum LSP Bandwidth is set to VC-3, and Maximum LSP
Bandwidth is set to STM-64 for all priorities. As soon as an LSP of
VC-3 size at priority 1 is established on the interface, it is no
longer capable of VC-4-64c for all but LSPs at priority 0.
Therefore, the node advertises a modified Interface Switching
Capability Descriptor indicating that the Maximum LSP Bandwidth is no
longer STM-64, but STM-16 for all but priority 0 (at priority 0 the
Maximum LSP Bandwidth is still STM-64). If subsequently there is
another VC-3 LSP, there is no change in the Interface Switching
Capability Descriptor. The Descriptor remains the same until the
node can no longer establish a VC-4-16c LSP over the interface (which
<span class="grey">Kompella & Rekhter Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
means that at this point more than 144 time slots are taken by LSPs
on the interface). Once this happened, the Descriptor is modified
again, and the modified Descriptor is advertised to other nodes.
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Bandwidth Encoding</span>
Encoding in IEEE floating point format [<a href="#ref-IEEE" title=""IEEE Standard for Binary Floating-Point Arithmetic"">IEEE</a>] of the discrete values
that could be used to identify Unreserved bandwidth, Maximum LSP
bandwidth and Minimum LSP bandwidth is described in Section 3.1.2 of
[<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Examples of Interface Switching Capability Descriptor</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. STM-16 POS Interface on a LSR</span>
Interface Switching Capability Descriptor:
Interface Switching Capability = PSC-1
Encoding = SDH
Max LSP Bandwidth[p] = 2.5 Gbps, for all p
If multiple links with such interfaces at both ends were to be
advertised as one TE link, link bundling techniques should be used.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. GigE Packet Interface on a LSR</span>
Interface Switching Capability Descriptor:
Interface Switching Capability = PSC-1
Encoding = Ethernet 802.3
Max LSP Bandwidth[p] = 1.0 Gbps, for all p
If multiple links with such interfaces at both ends were to be
advertised as one TE link, link bundling techniques should be used.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. STM-64 SDH Interface on a Digital Cross Connect with Standard SDH</span>
Consider a branch of SDH multiplexing tree : VC-3, VC-4, VC-4-4c,
VC-4-16c, VC-4-64c. If it is possible to establish all these
connections on a STM-64 interface, the Interface Switching Capability
Descriptor of that interface can be advertised as follows:
Interface Switching Capability Descriptor:
Interface Switching Capability = TDM [Standard SDH]
Encoding = SDH
Min LSP Bandwidth = VC-3
Max LSP Bandwidth[p] = STM-64, for all p
If multiple links with such interfaces at both ends were to be
advertised as one TE link, link bundling techniques should be used.
<span class="grey">Kompella & Rekhter Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. STM-64 SDH Interface on a Digital Cross Connect with Two Types of</span>
<span class="h3"> SDH Multiplexing Hierarchy Supported</span>
Interface Switching Capability Descriptor 1:
Interface Switching Capability = TDM [Standard SDH]
Encoding = SDH
Min LSP Bandwidth = VC-3
Max LSP Bandwidth[p] = STM-64, for all p
Interface Switching Capability Descriptor 2:
Interface Switching Capability = TDM [Arbitrary SDH]
Encoding = SDH
Min LSP Bandwidth = VC-4
Max LSP Bandwidth[p] = STM-64, for all p
If multiple links with such interfaces at both ends were to be
advertised as one TE link, link bundling techniques should be used.
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. Interface on an Opaque OXC (SDH Framed) with Support for One</span>
<span class="h3"> Lambda per Port/Interface</span>
An "opaque OXC" is considered operationally an OXC, as the whole
lambda (carrying the SDH line) is switched transparently without
further multiplexing/demultiplexing, and either none of the SDH
overhead bytes, or at least the important ones are not changed.
An interface on an opaque OXC handles a single wavelength, and cannot
switch multiple wavelengths as a whole. Thus, an interface on an
opaque OXC is always LSC, and not FSC, irrespective of whether there
is DWDM external to it.
Note that if there is external DWDM, then the framing understood by
the DWDM must be same as that understood by the OXC.
A TE link is a group of one or more interfaces on an OXC. All
interfaces on a given OXC are required to have identifiers unique to
that OXC, and these identifiers are used as labels (see 3.2.1.1 of
[<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>]).
The following is an example of an interface switching capability
descriptor on an SDH framed opaque OXC:
Interface Switching Capability Descriptor:
Interface Switching Capability = LSC
Encoding = SDH
Reservable Bandwidth = Determined by SDH Framer (say STM-64)
<span class="grey">Kompella & Rekhter Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. Interface on a Transparent OXC (PXC) with External DWDM That</span>
<span class="h3"> Understands SDH Framing</span>
This example assumes that DWDM and PXC are connected in such a way
that each interface (port) on the PXC handles just a single
wavelength. Thus, even if in principle an interface on the PXC could
switch multiple wavelengths as a whole, in this particular case an
interface on the PXC is considered LSC, and not FSC.
_______
| |
/|___| |
| |___| PXC |
========| |___| |
| |___| |
\| |_______|
DWDM
(SDH framed)
A TE link is a group of one or more interfaces on the PXC. All
interfaces on a given PXC are required to have identifiers unique to
that PXC, and these identifiers are used as labels (see 3.2.1.1 of
[<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>]).
The following is an example of an interface switching capability
descriptor on a transparent OXC (PXC) with external DWDM that
understands SDH framing:
Interface Switching Capability Descriptor:
Interface Switching Capability = LSC
Encoding = SDH (comes from DWDM)
Reservable Bandwidth = Determined by DWDM (say STM-64)
<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a>. Interface on a Transparent OXC (PXC) with External DWDM That Is</span>
<span class="h3"> Transparent to Bit-Rate and Framing</span>
This example assumes that DWDM and PXC are connected in such a way
that each interface (port) on the PXC handles just a single
wavelength. Thus, even if in principle an interface on the PXC could
switch multiple wavelengths as a whole, in this particular case an
interface on the PXC is considered LSC, and not FSC.
<span class="grey">Kompella & Rekhter Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
_______
| |
/|___| |
| |___| PXC |
========| |___| |
| |___| |
\| |_______|
DWDM (transparent to bit-rate and framing)
A TE link is a group of one or more interfaces on the PXC. All
interfaces on a given PXC are required to have identifiers unique to
that PXC, and these identifiers are used as labels (see 3.2.1.1 of
[<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>]).
The following is an example of an interface switching capability
descriptor on a transparent OXC (PXC) with external DWDM that is
transparent to bit-rate and framing:
Interface Switching Capability Descriptor:
Interface Switching Capability = LSC
Encoding = Lambda (photonic)
Reservable Bandwidth = Determined by optical technology limits
<span class="h3"><a class="selflink" id="section-3.8" href="#section-3.8">3.8</a>. Interface on a PXC with No External DWDM</span>
The absence of DWDM in between two PXCs, implies that an interface is
not limited to one wavelength. Thus, the interface is advertised as
FSC.
A TE link is a group of one or more interfaces on the PXC. All
interfaces on a given PXC are required to have identifiers unique to
that PXC, and these identifiers are used as port labels (see 3.2.1.1
of [<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>]).
Interface Switching Capability Descriptor:
Interface Switching Capability = FSC
Encoding = Lambda (photonic)
Reservable Bandwidth = Determined by optical technology limits
Note that this example assumes that the PXC does not restrict each
port to carry only one wavelength.
<span class="h3"><a class="selflink" id="section-3.9" href="#section-3.9">3.9</a>. Interface on a OXC with Internal DWDM That Understands SDH Framing</span>
This example assumes that DWDM and OXC are connected in such a way
that each interface on the OXC handles multiple wavelengths
individually. In this case an interface on the OXC is considered
LSC, and not FSC.
<span class="grey">Kompella & Rekhter Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
_______
| |
/|| ||\
| || OXC || |
========| || || |====
| || || |
\||_______||/
DWDM
(SDH framed)
A TE link is a group of one or more of the interfaces on the OXC.
All lambdas associated with a particular interface are required to
have identifiers unique to that interface, and these identifiers are
used as labels (see 3.2.1.1 of [<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>]).
The following is an example of an interface switching capability
descriptor on an OXC with internal DWDM that understands SDH framing
and supports discrete bandwidths:
Interface Switching Capability Descriptor:
Interface Switching Capability = LSC
Encoding = SDH (comes from DWDM)
Max LSP Bandwidth = Determined by DWDM (say STM-16)
Interface Switching Capability = LSC
Encoding = SDH (comes from DWDM)
Max LSP Bandwidth = Determined by DWDM (say STM-64)
<span class="h3"><a class="selflink" id="section-3.10" href="#section-3.10">3.10</a>. Interface on a OXC with Internal DWDM That Is Transparent to</span>
<span class="h3"> Bit-Rate and Framing</span>
This example assumes that DWDM and OXC are connected in such a way
that each interface on the OXC handles multiple wavelengths
individually. In this case an interface on the OXC is considered
LSC, and not FSC.
_______
| |
/|| ||\
| || OXC || |
========| || || |====
| || || |
\||_______||/
DWDM (transparent to bit-rate and framing)
<span class="grey">Kompella & Rekhter Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
A TE link is a group of one or more of the interfaces on the OXC.
All lambdas associated with a particular interface are required to
have identifiers unique to that interface, and these identifiers are
used as labels (see 3.2.1.1 of [<a href="#ref-GMPLS-SIG" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">GMPLS-SIG</a>]).
The following is an example of an interface switching capability
descriptor on an OXC with internal DWDM that is transparent to bit-
rate and framing:
Interface Switching Capability Descriptor:
Interface Switching Capability = LSC
Encoding = Lambda (photonic)
Max LSP Bandwidth = Determined by optical technology limits
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Example of Interfaces That Support Multiple Switching Capabilities</span>
There can be many combinations possible, some are described below.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Interface on a PXC+TDM Device with External DWDM</span>
As discussed earlier, the presence of the external DWDM limits that
only one wavelength be on a port of the PXC. On such a port, the
attached PXC+TDM device can do one of the following. The wavelength
may be cross-connected by the PXC element to other out-bound optical
channel, or the wavelength may be terminated as an SDH interface and
SDH channels switched.
From a GMPLS perspective the PXC+TDM functionality is treated as a
single interface. The interface is described using two Interface
descriptors, one for the LSC and another for the TDM, with
appropriate parameters. For example,
Interface Switching Capability Descriptor:
Interface Switching Capability = LSC
Encoding = SDH (comes from WDM)
Reservable Bandwidth = STM-64
and
Interface Switching Capability Descriptor:
Interface Switching Capability = TDM [Standard SDH]
Encoding = SDH
Min LSP Bandwidth = VC-3
Max LSP Bandwidth[p] = STM-64, for all p
<span class="grey">Kompella & Rekhter Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Interface on an Opaque OXC+TDM Device with External DWDM</span>
An interface on an "opaque OXC+TDM" device would also be advertised
as LSC+TDM much the same way as the previous case.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Interface on a PXC+LSR Device with External DWDM</span>
As discussed earlier, the presence of the external DWDM limits that
only one wavelength be on a port of the PXC. On such a port, the
attached PXC+LSR device can do one of the following. The wavelength
may be cross-connected by the PXC element to other out-bound optical
channel, or the wavelength may be terminated as a Packet interface
and packets switched.
From a GMPLS perspective the PXC+LSR functionality is treated as a
single interface. The interface is described using two Interface
descriptors, one for the LSC and another for the PSC, with
appropriate parameters. For example,
Interface Switching Capability Descriptor:
Interface Switching Capability = LSC
Encoding = SDH (comes from WDM)
Reservable Bandwidth = STM-64
and
Interface Switching Capability Descriptor:
Interface Switching Capability = PSC-1
Encoding = SDH
Max LSP Bandwidth[p] = 10 Gbps, for all p
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Interface on a TDM+LSR Device</span>
On a TDM+LSR device that offers a channelized SDH interface the
following may be possible:
- A subset of the SDH channels may be uncommitted. That is, they
are not currently in use and hence are available for allocation.
- A second subset of channels may already be committed for transit
purposes. That is, they are already cross-connected by the SDH
cross connect function to other out-bound channels and thus are
not immediately available for allocation.
- Another subset of channels could be in use as terminal channels.
That is, they are already allocated by terminate on a packet
interface and packets switched.
<span class="grey">Kompella & Rekhter Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
From a GMPLS perspective the TDM+PSC functionality is treated as a
single interface. The interface is described using two Interface
descriptors, one for the TDM and another for the PSC, with
appropriate parameters. For example,
Interface Switching Capability Descriptor:
Interface Switching Capability = TDM [Standard SDH]
Encoding = SDH
Min LSP Bandwidth = VC-3
Max LSP Bandwidth[p] = STM-64, for all p
and
Interface Switching Capability Descriptor:
Interface Switching Capability = PSC-1
Encoding = SDH
Max LSP Bandwidth[p] = 10 Gbps, for all p
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Acknowledgements</span>
The authors would like to thank Suresh Katukam, Jonathan Lang, Zhi-
Wei Lin, and Quaizar Vohra for their comments and contributions to
the document. Thanks too to Stephen Shew for the text regarding
"Representing TE Link Capabilities".
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
There are a number of security concerns in implementing the
extensions proposed here, particularly since these extensions will
potentially be used to control the underlying transport
infrastructure. It is vital that there be secure and/or
authenticated means of transferring this information among the
entities that require its use.
While this document proposes extensions, it does not state how these
extensions are implemented in routing protocols such as OSPF or
IS-IS. The documents that do state how routing protocols implement
these extensions [<a href="#ref-GMPLS-OSPF" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">GMPLS-OSPF</a>, <a href="#ref-GMPLS-ISIS" title=""Intermediate System to Intermediate System (IS-IS) Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">GMPLS-ISIS</a>] must also state how the
information is to be secured.
<span class="grey">Kompella & Rekhter Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative References</span>
[<a id="ref-GMPLS-OSPF">GMPLS-OSPF</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-GMPLS-SIG">GMPLS-SIG</a>] Berger, L., "Generalized Multi-Protocol Label
Switching (GMPLS) Signaling Functional
Description", <a href="./rfc3471">RFC 3471</a>, January 2003.
[<a id="ref-GMPLS-SONET-SDH">GMPLS-SONET-SDH</a>] Mannie, E. and D. Papadimitriou, "Generalized
Multi-Protocol Label Switching (GMPLS) Extensions
for Synchronous Optical Network (SONET) and
Synchronous Digital Hierarchy (SDH) Control", <a href="./rfc3946">RFC</a>
<a href="./rfc3946">3946</a>, October 2004.
[<a id="ref-IEEE">IEEE</a>] IEEE, "IEEE Standard for Binary Floating-Point
Arithmetic", Standard 754-1985, 1985 (ISBN 1-5593-
7653-8).
[<a id="ref-LINK-BUNDLE">LINK-BUNDLE</a>] Kompella, K., Rekhter, Y., and L. Berger, "Link
Bundling in MPLS Traffic Engineering (TE)", <a href="./rfc4201">RFC</a>
<a href="./rfc4201">4201</a>, October 2005.
[<a id="ref-LMP">LMP</a>] Lang, J., Ed., "Link Management Protocol (LMP)",
<a href="./rfc4204">RFC 4204</a>, October 2005.
[<a id="ref-LSP-HIER">LSP-HIER</a>] Kompella, K. and Y. Rekhter, "Label Switched Paths
(LSP) Hierarchy with Generalized Multi-Protocol
Label Switching (GMPLS) Traffic Engineering (TE))",
<a href="./rfc4206">RFC 4206</a>, October 2005.
[<a id="ref-OSPF-TE">OSPF-TE</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-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-RFC3032">RFC3032</a>] Rosen, E., Tappan, D., Fedorkow, G., Rekhter, Y.,
Farinacci, D., Li, T., and A. Conta, "MPLS Label
Stack Encoding", <a href="./rfc3032">RFC 3032</a>, January 2001.
<span class="grey">Kompella & Rekhter Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Informative References</span>
[<a id="ref-GMPLS-ISIS">GMPLS-ISIS</a>] Kompella, K., Ed. and Y. Rekhter, Ed.,
"Intermediate System to Intermediate System (IS-IS)
Extensions in Support of Generalized Multi-Protocol
Label Switching (GMPLS)", <a href="./rfc4205">RFC 4205</a>, October 2005.
[<a id="ref-ISIS-TE">ISIS-TE</a>] Smit, H. and T. Li, "Intermediate System to
Intermediate System (IS-IS) Extensions for Traffic
Engineering (TE)", <a href="./rfc3784">RFC 3784</a>, June 2004.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Contributors</span>
Ayan Banerjee
Calient Networks
5853 Rue Ferrari
San Jose, CA 95138
Phone: +1.408.972.3645
EMail: abanerjee@calient.net
John Drake
Calient Networks
5853 Rue Ferrari
San Jose, CA 95138
Phone: (408) 972-3720
EMail: jdrake@calient.net
Greg Bernstein
Ciena Corporation
10480 Ridgeview Court
Cupertino, CA 94014
Phone: (408) 366-4713
EMail: greg@ciena.com
Don Fedyk
Nortel Networks Corp.
600 Technology Park Drive
Billerica, MA 01821
Phone: +1-978-288-4506
EMail: dwfedyk@nortelnetworks.com
<span class="grey">Kompella & Rekhter Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
Eric Mannie
Libre Exaministe
EMail: eric_mannie@hotmail.com
Debanjan Saha
Tellium Optical Systems
2 Crescent Place
P.O. Box 901
Ocean Port, NJ 07757
Phone: (732) 923-4264
EMail: dsaha@tellium.com
Vishal Sharma
Metanoia, Inc.
335 Elan Village Lane, Unit 203
San Jose, CA 95134-2539
Phone: +1 408-943-1794
EMail: v.sharma@ieee.org
Debashis Basak
AcceLight Networks,
70 Abele Rd, Bldg 1200
Bridgeville PA 15017
EMail: dbasak@accelight.com
Lou Berger
Movaz Networks, Inc.
7926 Jones Branch Drive
Suite 615
McLean VA, 22102
EMail: lberger@movaz.com
<span class="grey">Kompella & Rekhter Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
Authors' Addresses
Kireeti Kompella
Juniper Networks, Inc.
1194 N. Mathilda Ave
Sunnyvale, CA 94089
EMail: kireeti@juniper.net
Yakov Rekhter
Juniper Networks, Inc.
1194 N. Mathilda Ave
Sunnyvale, CA 94089
EMail: yakov@juniper.net
<span class="grey">Kompella & Rekhter Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc4202">RFC 4202</a> Routing Extensions for GMPLS October 2005</span>
Full Copyright Statement
Copyright (C) The Internet Society (2005).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Kompella & Rekhter Standards Track [Page 27]
</pre>
|