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
|
<pre>Internet Engineering Task Force (IETF) F. Zhang, Ed.
Request for Comments: 7062 D. Li
Category: Informational Huawei
ISSN: 2070-1721 H. Li
CMCC
S. Belotti
Alcatel-Lucent
D. Ceccarelli
Ericsson
November 2013
<span class="h1">Framework for GMPLS and PCE Control of</span>
<span class="h1">G.709 Optical Transport Networks</span>
Abstract
This document provides a framework to allow the development of
protocol extensions to support Generalized Multi-Protocol Label
Switching (GMPLS) and Path Computation Element (PCE) control of
Optical Transport Networks (OTNs) as specified in ITU-T
Recommendation G.709 as published in 2012.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
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>.
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/rfc7062">http://www.rfc-editor.org/info/rfc7062</a>.
<span class="grey">Zhang, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
Copyright Notice
Copyright (c) 2013 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.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-2">2</a>. Terminology .....................................................<a href="#page-3">3</a>
<a href="#section-3">3</a>. G.709 Optical Transport Network .................................<a href="#page-4">4</a>
<a href="#section-3.1">3.1</a>. OTN Layer Network ..........................................<a href="#page-5">5</a>
<a href="#section-3.1.1">3.1.1</a>. Client Signal Mapping ...............................<a href="#page-6">6</a>
<a href="#section-3.1.2">3.1.2</a>. Multiplexing ODUj onto Links ........................<a href="#page-7">7</a>
<a href="#section-3.1.2.1">3.1.2.1</a>. Structure of MSI Information ...............<a href="#page-9">9</a>
<a href="#section-4">4</a>. Connection Management in OTN ...................................<a href="#page-10">10</a>
<a href="#section-4.1">4.1</a>. Connection Management of the ODU ..........................<a href="#page-11">11</a>
<a href="#section-5">5</a>. GMPLS/PCE Implications .........................................<a href="#page-13">13</a>
<a href="#section-5.1">5.1</a>. Implications for Label Switched Path (LSP) Hierarchy ......<a href="#page-13">13</a>
<a href="#section-5.2">5.2</a>. Implications for GMPLS Signaling ..........................<a href="#page-14">14</a>
<a href="#section-5.3">5.3</a>. Implications for GMPLS Routing ............................<a href="#page-16">16</a>
<a href="#section-5.4">5.4</a>. Implications for Link Management Protocol .................<a href="#page-18">18</a>
<a href="#section-5.5">5.5</a>. Implications for Control-Plane Backward Compatibility .....<a href="#page-19">19</a>
<a href="#section-5.6">5.6</a>. Implications for Path Computation Elements ................<a href="#page-20">20</a>
<a href="#section-5.7">5.7</a>. Implications for Management of GMPLS Networks .............<a href="#page-20">20</a>
<a href="#section-6">6</a>. Data-Plane Backward Compatibility Considerations ...............<a href="#page-21">21</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-21">21</a>
<a href="#section-8">8</a>. Acknowledgments ................................................<a href="#page-22">22</a>
<a href="#section-9">9</a>. Contributors ...................................................<a href="#page-22">22</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-23">23</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-23">23</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-24">24</a>
<span class="grey">Zhang, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Optical Transport Networks (OTNs) have become a mainstream layer 1
technology for the transport network. Operators want to introduce
control-plane capabilities based on GMPLS to OTN to realize the
benefits associated with a high-function control plane (e.g.,
improved network resiliency, resource usage efficiency, etc.).
GMPLS extends Multi-Protocol Label Switching (MPLS) to encompass Time
Division Multiplexing (TDM) networks (e.g., Synchronous Optical
NETwork (SONET) / Synchronous Digital Hierarchy (SDH), Plesiochronous
Digital Hierarchy (PDH), and G.709 sub-lambda), lambda switching
optical networks, and spatial switching (e.g., incoming port or fiber
to outgoing port or fiber). The GMPLS architecture is provided in
[<a href="./rfc3945" title=""Generalized Multi-Protocol Label Switching (GMPLS) Architecture"">RFC3945</a>], signaling function and Resource Reservation Protocol -
Traffic Engineering (RSVP-TE) extensions are described in [<a href="./rfc3471" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">RFC3471</a>]
and [<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol-Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>], routing and Open Shortest Path First (OSPF) extensions
are described in [<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 the Link Management
Protocol (LMP) is described in [<a href="./rfc4204" title=""Link Management Protocol (LMP)"">RFC4204</a>].
The GMPLS signaling extensions defined in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>] provide the
mechanisms for basic GMPLS control of OTN based on the 2001 revision
of the G.709 specification. The 2012 revision of the G.709
specification, [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>], includes new features, for example,
various multiplexing structures, two types of Tributary Slots (TSs)
(i.e., 1.25 Gbps and 2.5G bps), and extension of the Optical channel
Data Unit-j (ODUj) definition to include the ODUflex function.
This document reviews relevant aspects of OTN technology evolution
that affect the GMPLS control-plane protocols and examines why and
how to update the mechanisms described in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>]. This document
additionally provides a framework for GMPLS control of OTN and
includes a discussion of the implications for the use of the PCE
[<a href="./rfc4655" title=""A Path Computation Element (PCE)-Based Architecture"">RFC4655</a>].
For the purposes of the control plane, the OTN can be considered to
be comprised of ODU and wavelength (Optical Channel (OCh)) layers.
This document focuses on the control of the ODU layer, with control
of the wavelength layer considered out of the scope. Please refer to
[<a href="./rfc6163" title=""Framework for GMPLS and Path Computation Element (PCE) Control of Wavelength Switched Optical Networks (WSONs)"">RFC6163</a>] for further information about the wavelength layer.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
OTN: Optical Transport Network
OPU: Optical Channel Payload Unit
ODU: Optical Channel Data Unit
<span class="grey">Zhang, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
OTU: Optical Channel Transport Unit
OMS: Optical Multiplex Section
MSI: Multiplex Structure Identifier
TPN: Tributary Port Number
LO ODU: Lower Order ODU. The LO ODUj (j can be 0, 1, 2, 2e, 3, 4, or
flex) represents the container transporting a client of the OTN that
is either directly mapped into an OTUk (k = j) or multiplexed into a
server HO ODUk (k > j) container.
HO ODU: Higher Order ODU. The HO ODUk (k can be 1, 2, 2e, 3, or 4)
represents the entity transporting a multiplex of LO ODUj tributary
signals in its OPUk area.
ODUflex: Flexible ODU. A flexible ODUk can have any bit rate and a
bit rate tolerance of +/-100 ppm (parts per million).
In general, throughout this document, "ODUj" is used to refer to ODU
entities acting as an LO ODU, and "ODUk" is used to refer to ODU
entities being used as an HO ODU.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. G.709 Optical Transport Network</span>
This section provides an informative overview of the aspects of the
OTN impacting control-plane protocols. This overview is based on the
ITU-T Recommendations that contain the normative definition of the
OTN. Technical details regarding OTN architecture and interfaces are
provided in the relevant ITU-T Recommendations.
Specifically, [<a href="#ref-G872-2012" title=""Architecture of optical transport networks"">G872-2012</a>] describes the functional architecture of
optical transport networks providing optical signal transmission,
multiplexing, routing, supervision, performance assessment, and
network survivability. The legacy OTN referenced by [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>]
defines the interfaces of the optical transport network to be used
within and between subnetworks of the optical network. With the
evolution and deployment of OTN technology, many new features have
been specified in ITU-T recommendations, including, for example, new
ODU0, ODU2e, ODU4, and ODUflex containers as described in
[<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>].
<span class="grey">Zhang, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. OTN Layer Network</span>
The simplified signal hierarchy of OTN is shown in Figure 1, which
illustrates the layers that are of interest to the control plane.
Other layers below OCh (e.g., Optical Transmission Section (OTS)) are
not included in this figure. The full signal hierarchy is provided
in [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>].
Client signal
|
ODUj
|
OTU/OCh
OMS
Figure 1: Basic OTN Signal Hierarchy
Client signals are mapped into ODUj containers. These ODUj
containers are multiplexed onto the OTU/OCh. The individual OTU/OCh
signals are combined in the OMS using Wavelength Division
Multiplexing (WDM), and this aggregated signal provides the link
between the nodes.
<span class="grey">Zhang, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Client Signal Mapping</span>
The client signals are mapped into an LO ODUj. The current values of
j defined in [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] are: 0, 1, 2, 2e, 3, 4, and flex. The
approximate bit rates of these signals are defined in [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] and
are reproduced in Tables 1 and 2.
+-----------------------+-----------------------------------+
| ODU Type | ODU nominal bit rate |
+-----------------------+-----------------------------------+
| ODU0 | 1,244,160 Kbps |
| ODU1 | 239/238 x 2,488,320 Kbps |
| ODU2 | 239/237 x 9,953,280 Kbps |
| ODU3 | 239/236 x 39,813,120 Kbps |
| ODU4 | 239/227 x 99,532,800 Kbps |
| ODU2e | 239/237 x 10,312,500 Kbps |
| | |
| ODUflex for | |
|Constant Bit Rate (CBR)| 239/238 x client signal bit rate |
| Client signals | |
| | |
| ODUflex for Generic | |
| Framing Procedure | Configured bit rate |
| - Framed (GFP-F) | |
| Mapped client signal | |
+-----------------------+-----------------------------------+
Table 1: ODU Types and Bit Rates
NOTE: The nominal ODUk rates are approximately: 2,498,775.126 Kbps
(ODU1), 10,037,273.924 Kbps (ODU2), 40,319,218.983 Kbps (ODU3),
104,794,445.815 Kbps (ODU4), and 10,399,525.316 Kbps (ODU2e).
<span class="grey">Zhang, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
+-----------------------+-----------------------------------+
| ODU Type | ODU bit rate tolerance |
+-----------------------+-----------------------------------+
| ODU0 | +/-20 ppm |
| ODU1 | +/-20 ppm |
| ODU2 | +/-20 ppm |
| ODU3 | +/-20 ppm |
| ODU4 | +/-20 ppm |
| ODU2e | +/-100 ppm |
| | |
| ODUflex for CBR | |
| Client signals | +/-100 ppm |
| | |
| ODUflex for GFP-F | |
| Mapped client signal | +/-100 ppm |
+-----------------------+-----------------------------------+
Table 2: ODU Types and Tolerance
One of two options is for mapping client signals into ODUflex
depending on the client signal type:
- Circuit clients are proportionally wrapped. Thus, the bit rate is
defined by the client signal, and the tolerance is fixed to +/-100
ppm.
- Packet clients are mapped using the Generic Framing Procedure
(GFP). [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] recommends that the ODUflex(GFP) will fill an
integral number of tributary slots of the smallest HO ODUk path
over which the ODUflex(GFP) may be carried, and the tolerance
should be +/-100 ppm.
Note that additional information on G.709 client mapping can be found
in [<a href="#ref-G7041" title=""Generic framing procedure"">G7041</a>].
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. Multiplexing ODUj onto Links</span>
The links between the switching nodes are provided by one or more
wavelengths. Each wavelength carries one OCh, which carries one OTU,
which carries one ODU. Since all of these signals have a 1:1:1
relationship, we only refer to the OTU for clarity. The ODUjs are
mapped into the TSs (Tributary Slots) of the OPUk. Note that in the
case where j=k, the ODUj is mapped into the OTU/OCh without
multiplexing.
<span class="grey">Zhang, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
The initial versions of G.709 referenced by [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>] only provided a
single TS granularity, nominally 2.5 Gbps. [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] added an
additional TS granularity, nominally 1.25 Gbps. The number and type
of TS provided by each of the currently identified OTUk are provided
below:
Tributary Slot Granularity
2.5 Gbps 1.25 Gbps Nominal Bit Rate
OTU1 1 2 2.5 Gbps
OTU2 4 8 10 Gbps
OTU3 16 32 40 Gbps
OTU4 -- 80 100 Gbps
To maintain backward compatibility while providing the ability to
interconnect nodes that support a 1.25 Gbps TS at one end of a link
and a 2.5 Gbps TS at the other, [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] requires 'new' equipment
to fall back to the use of a 2.5 Gbps TS when connected to legacy
equipment. This information is carried in band by the payload type.
The actual bit rate of the TS in an OTUk depends on the value of k.
Thus, the number of TSs occupied by an ODUj may vary depending on the
values of j and k. For example, an ODU2e uses 9 TSs in an OTU3 but
only 8 in an OTU4. Examples of the number of TSs used for various
cases are provided below (referring to Tables 7-9 of [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>]):
- ODU0 into ODU1, ODU2, ODU3, or ODU4 multiplexing with 1.25 Gbps TS
granularity
o ODU0 occupies 1 of the 2, 8, 32, or 80 TSs for ODU1, ODU2,
ODU3, or ODU4
- ODU1 into ODU2, ODU3, or ODU4 multiplexing with 1.25 Gbps TS
granularity
o ODU1 occupies 2 of the 8, 32, or 80 TSs for ODU2, ODU3, or ODU4
- ODU1 into ODU2 or ODU3 multiplexing with 2.5 Gbps TS granularity
o ODU1 occupies 1 of the 4 or 16 TSs for ODU2 or ODU3
- ODU2 into ODU3 or ODU4 multiplexing with 1.25 Gbps TS granularity
o ODU2 occupies 8 of the 32 or 80 TSs for ODU3 or ODU4
- ODU2 into ODU3 multiplexing with 2.5 Gbps TS granularity
o ODU2 occupies 4 of the 16 TSs for ODU3
- ODU3 into ODU4 multiplexing with 1.25 Gbps TS granularity
o ODU3 occupies 31 of the 80 TSs for ODU4
<span class="grey">Zhang, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
- ODUflex into ODU2, ODU3, or ODU4 multiplexing with 1.25 Gbps TS
granularity
o ODUflex occupies n of the 8, 32, or 80 TSs for ODU2, ODU3, or
ODU4 (n <= Total TS number of ODUk)
- ODU2e into ODU3 or ODU4 multiplexing with 1.25 Gbps TS granularity
o ODU2e occupies 9 of the 32 TSs for ODU3 or 8 of the 80 TSs for
ODU4
In general, the mapping of an ODUj (including ODUflex) into a
specific OTUk TS is determined locally, and it can also be explicitly
controlled by a specific entity (e.g., head end or Network Management
System (NMS)) through Explicit Label Control [<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol-Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>].
<span class="h5"><a class="selflink" id="section-3.1.2.1" href="#section-3.1.2.1">3.1.2.1</a>. Structure of MSI Information</span>
When multiplexing an ODUj into an HO ODUk (k>j), G.709 specifies the
information that has to be transported in-band in order to allow for
correct demultiplexing. This information, known as MSI, is
transported in the OPUk overhead and is local to each link. In case
of bidirectional paths, the association between the TPN and TS must
be the same in both directions.
The MSI information is organized as a set of entries, with one entry
for each HO ODUj TS. The information carried by each entry is:
- Payload Type: the type of the transported payload.
- TPN: the port number of the ODUj transported by the HO ODUk. The
TPN is the same for all the TSs assigned to the transport of the
same ODUj instance.
For example, an ODU2 carried by an HO ODU3 is described by 4 entries
in the OPU3 overhead when the TS granularity is 2.5 Gbps, and by 8
entries when the TS granularity is 1.25 Gbps.
On each node and on every link, two MSI values have to be provisioned
(referring to [<a href="#ref-G798" title=""Characteristics of optical transport network hierarchy equipment functional blocks"">G798</a>]):
- The Transmitted MSI (TxMSI) information inserted in OPU (e.g.,
OPU3) overhead by the source of the HO ODUk trail.
- The Expected MSI (ExMSI) information that is used to check the
Accepted MSI (AcMSI) information. The AcMSI information is the
MSI valued received in-band, after a three-frame integration.
<span class="grey">Zhang, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
As described in [<a href="#ref-G798" title=""Characteristics of optical transport network hierarchy equipment functional blocks"">G798</a>], the sink of the HO ODU trail checks the
complete content of the AcMSI information against the ExMSI. If the
AcMSI is different from the ExMSI, then the traffic is dropped, and a
payload mismatch alarm is generated.
Provisioning of TPN can be performed by either a network management
system or control plane. In the last case, the control plane is also
responsible for negotiating the provisioned values on a link-by-link
basis.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Connection Management in OTN</span>
OTN-based connection management is concerned with controlling the
connectivity of ODU paths and OCh. This document focuses on the
connection management of ODU paths. The management of OCh paths is
described in [<a href="./rfc6163" title=""Framework for GMPLS and Path Computation Element (PCE) Control of Wavelength Switched Optical Networks (WSONs)"">RFC6163</a>].
While [<a href="#ref-G872-2001" title=""Architecture of optical transport networks"">G872-2001</a>] considered the ODU to be a set of layers in the
same way as SDH has been modeled, recent ITU-T OTN architecture
progress [<a href="#ref-G872-2012" title=""Architecture of optical transport networks"">G872-2012</a>] includes an agreement to model the ODU as a
single-layer network with the bit rate as a parameter of links and
connections. This allows the links and nodes to be viewed in a
single topology as a common set of resources that are available to
provide ODUj connections independent of the value of j. Note that
when the bit rate of ODUj is less than the server bit rate, ODUj
connections are supported by HO ODU (which has a one-to-one
relationship with the OTU).
From an ITU-T perspective, the ODU connection topology is represented
by that of the OTU link layer, which has the same topology as that of
the OCh layer (independent of whether the OTU supports an HO ODU,
where multiplexing is utilized, or an LO ODU in the case of direct
mapping).
Thus, the OTU and OCh layers should be visible in a single
topological representation of the network, and from a logical
perspective, the OTU and OCh may be considered as the same logical,
switchable entity.
Note that the OTU link-layer topology may be provided via various
infrastructure alternatives, including point-to-point optical
connections, optical connections fully in the optical domain, and
optical connections involving hybrid sub-lambda/lambda nodes
involving 3R, etc. See [<a href="./rfc6163" title=""Framework for GMPLS and Path Computation Element (PCE) Control of Wavelength Switched Optical Networks (WSONs)"">RFC6163</a>] for additional information.
<span class="grey">Zhang, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Connection Management of the ODU</span>
An LO ODUj can be either mapped into the OTUk signal (j = k) or
multiplexed with other LO ODUjs into an OTUk (j < k), and the OTUk is
mapped into an OCh.
From the perspective of the control plane, there are two kinds of
network topology to be considered.
(1) ODU layer
In this case, the ODU links are presented between adjacent OTN nodes,
as illustrated in Figure 2. In this layer, there are ODU links with
a variety of TSs available, and nodes that are Optical Digital Cross
Connects (ODXCs). LO ODU connections can be set up based on the
network topology.
Link #5 +--+---+--+ Link #4
+--------------------------| |--------------------------+
| | ODXC | |
| +---------+ |
| Node E |
| |
+-++---+--+ +--+---+--+ +--+---+--+ +--+---+-++
| |Link #1 | |Link #2 | |Link #3 | |
| |--------| |--------| |--------| |
| ODXC | | ODXC | | ODXC | | ODXC |
+---------+ +---------+ +---------+ +---------+
Node A Node B Node C Node D
Figure 2: Example Topology for LO ODU Connection Management
If an ODUj connection is requested between Node C and Node E,
routing/path computation must select a path that has the required
number of TSs available and that offers the lowest cost. Signaling
is then invoked to set up the path and to provide the information
(e.g., selected TSs) required by each transit node to allow the
configuration of the ODUj-to-OTUk mapping (j = k) or multiplexing (j
< k) and demapping (j = k) or demultiplexing (j < k).
(2) ODU layer with OCh switching capability
In this case, the OTN nodes interconnect with wavelength switched
nodes (e.g., Reconfiguration Optical Add/Drop Multiplexer (ROADM) or
Optical Cross-Connect (OXC)) that are capable of OCh switching; this
is illustrated in Figures 3 and 4. There are the ODU layer and the
OCh layer, so it is simply a Multi-Layer Network (MLN) (see
<span class="grey">Zhang, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
[<a href="./rfc6001" title=""Generalized MPLS (GMPLS) Protocol Extensions for Multi-Layer and Multi-Region Networks (MLN/MRN)"">RFC6001</a>]). OCh connections may be created on demand, which is
described in <a href="#section-5.1">Section 5.1</a>.
In this case, an operator may choose to allow the underlying OCh
layer to be visible to the ODU routing/path computation process, in
which case the topology would be as shown in Figure 4. In Figure 3,
however, a cloud representing OCh-capable switching nodes is
represented. In Figure 3, the operator choice is to hide the real
OCh-layer network topology.
Node E
Link #5 +--------+ Link #4
+------------------------| |------------------------+
| ------ |
| // \\ |
| || || |
| | OCh domain | |
+-+-----+ +------ || || ------+ +-----+-+
| | | \\ // | | |
| |Link #1 | -------- |Link #3 | |
| +--------+ | | +--------+ +
| ODXC | | ODXC +--------+ ODXC | | ODXC |
+-------+ +---------+Link #2 +---------+ +-------+
Node A Node B Node C Node D
Figure 3: OCh Hidden Topology for LO ODU Connection Management
Link #5 +---------+ Link #4
+------------------------| |-----------------------+
| +----| ODXC |----+ |
| +-++ +---------+ ++-+ |
| Node f | | Node E | | Node g |
| +-++ ++-+ |
| | +--+ | |
+-+-----+ +----+----+--| |--+-----+---+ +-----+-+
| |Link #1 | | +--+ | |Link #3 | |
| +--------+ | Node h | +--------+ |
| ODXC | | ODXC +--------+ ODXC | | ODXC |
+-------+ +---------+ Link #2+---------+ +-------+
Node A Node B Node C Node D
Figure 4: OCh Visible Topology for LO ODUj Connection Management
<span class="grey">Zhang, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
In Figure 4, the cloud in the previous figure is substituted by the
real topology. The nodes f, g, and h are nodes with OCh switching
capability.
In the examples (i.e., Figures 3 and 4), we have considered the case
in which LO ODUj connections are supported by an OCh connection and
the case in which the supporting underlying connection can also be
made by a combination of HO ODU/OCh connections.
In this case, the ODU routing/path selection process will request an
HO ODU/OCh connection between node C and node E from the OCh domain.
The connection will appear at the ODU level as a Forwarding
Adjacency, which will be used to create the ODU connection.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. GMPLS/PCE Implications</span>
The purpose of this section is to provide a set of requirements to be
evaluated for extensions of the current GMPLS protocol suite and the
PCE applications and protocols to encompass OTN enhancements and
connection management.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Implications for Label Switched Path (LSP) Hierarchy</span>
The path computation for an ODU connection request is based on the
topology of the ODU layer.
The OTN path computation can be divided into two layers. One layer
is OCh/OTUk; the other is ODUj. [<a href="./rfc4206" title=""Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE)"">RFC4206</a>] and [<a href="./rfc6107" title=""Procedures for Dynamically Signaled Hierarchical Label Switched Paths"">RFC6107</a>] define the
mechanisms to accomplish creating the hierarchy of LSPs. The LSP
management of multiple layers in OTN can follow the procedures
defined in [<a href="./rfc4206" title=""Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE)"">RFC4206</a>], [<a href="./rfc6001" title=""Generalized MPLS (GMPLS) Protocol Extensions for Multi-Layer and Multi-Region Networks (MLN/MRN)"">RFC6001</a>], and [<a href="./rfc6107" title=""Procedures for Dynamically Signaled Hierarchical Label Switched Paths"">RFC6107</a>].
As discussed in <a href="#section-4">Section 4</a>, the route path computation for OCh is in
the scope of the Wavelength Switched Optical Network (WSON)
[<a href="./rfc6163" title=""Framework for GMPLS and Path Computation Element (PCE) Control of Wavelength Switched Optical Networks (WSONs)"">RFC6163</a>]. Therefore, this document only considers the ODU layer for
an ODU connection request.
The LSP hierarchy can also be applied within the ODU layers. One of
the typical scenarios for ODU layer hierarchy is to maintain
compatibility with introducing new [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] services (e.g., ODU0
and ODUflex) into a legacy network configuration (i.e., the legacy
OTN referenced by [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>]). In this scenario, it may be necessary
to consider introducing hierarchical multiplexing capability in
specific network transition scenarios. One method for enabling
multiplexing hierarchy is by introducing dedicated boards in a few
specific places in the network and tunneling these new services
through the legacy containers (ODU1, ODU2, ODU3), thus postponing the
need to upgrade every network element to [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] capabilities.
<span class="grey">Zhang, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
In such cases, one ODUj connection can be nested into another ODUk
(j<k) connection, which forms the LSP hierarchy in the ODU layer.
The creation of the outer ODUk connection can be triggered via
network planning or by the signaling of the inner ODUj connection.
For the former case, the outer ODUk connection can be created in
advance based on network planning. For the latter case, the multi-
layer network signaling described in [<a href="./rfc4206" title=""Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE)"">RFC4206</a>], [<a href="./rfc6107" title=""Procedures for Dynamically Signaled Hierarchical Label Switched Paths"">RFC6107</a>], and
[<a href="./rfc6001" title=""Generalized MPLS (GMPLS) Protocol Extensions for Multi-Layer and Multi-Region Networks (MLN/MRN)"">RFC6001</a>] (including related modifications, if needed) is relevant to
create the ODU connections with multiplexing hierarchy. In both
cases, the outer ODUk connection is advertised as a Forwarding
Adjacency (FA).
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Implications for GMPLS Signaling</span>
The signaling function and RSVP-TE extensions are described in
[<a href="./rfc3471" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">RFC3471</a>] and [<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol-Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>]. For OTN-specific control, [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>] defines
signaling extensions to support control for the legacy G.709 Optical
Transport Networks.
As described in <a href="#section-3">Section 3</a>, [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] introduced some new features
that include the ODU0, ODU2e, ODU4, and ODUflex containers. The
mechanisms defined in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>] do not support such new OTN features,
and protocol extensions will be necessary to allow them to be
controlled by a GMPLS control plane.
[<a id="ref-RFC4328">RFC4328</a>] defines the LSP Encoding Type, the Switching Type, and the
Generalized Protocol Identifier (Generalized-PID) constituting the
common part of the Generalized Label Request. The G.709 traffic
parameters are also defined in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>]. In addition, the following
signaling aspects not included in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>] should be considered:
- Support for specifying new signal types and related traffic
information
The traffic parameters should be extended in a signaling message
to support the new ODUj, including:
- ODU0
- ODU2e
- ODU4
- ODUflex
For the ODUflex signal type, the bit rate must be carried
additionally in the traffic parameter to set up an ODUflex
connection.
For other ODU signal types, the bit rates and tolerances are fixed
and can be deduced from the signal types.
<span class="grey">Zhang, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
- Support for LSP setup using different TS granularity
The signaling protocol should be able to identify the TS
granularity (i.e., the 2.5 Gbps TS granularity and the new 1.25
Gbps TS granularity) to be used for establishing a Hierarchical
LSP that will be used to carry service LSP(s) requiring a specific
TS granularity.
- Support for LSP setup of new ODUk/ODUflex containers with related
mapping and multiplexing capabilities
A new label format must be defined to carry the exact TS's
allocation information related to the extended mapping and
multiplexing hierarchy (for example, ODU0 into ODU2 multiplexing
(with 1.25 Gbps TS granularity)), in order to set up the ODU
connection.
- Support for TPN allocation and negotiation
TPN needs to be configured as part of the MSI information (see
more information in <a href="#section-3.1.2.1">Section 3.1.2.1</a>). A signaling mechanism must
be identified to carry TPN information if the control plane is
used to configure MSI information.
- Support for ODU Virtual Concatenation (VCAT) and Link Capacity
Adjustment Scheme (LCAS)
GMPLS signaling should support the creation of Virtual
Concatenation of an ODUk signal with k=1, 2, 3. The signaling
should also support the control of dynamic capacity changing of a
VCAT container using LCAS ([<a href="#ref-G7042" title=""Link capacity adjustment scheme (LCAS) for virtual concatenated signals"">G7042</a>]). [<a href="./rfc6344" title=""Operating Virtual Concatenation (VCAT) and the Link Capacity Adjustment Scheme (LCAS) with Generalized Multi-Protocol Label Switching (GMPLS)"">RFC6344</a>] has a clear
description of VCAT and LCAS control in SONET/SDH and OTN.
- Support for Control of Hitless Adjustment of ODUflex (GFP)
[<a id="ref-G7044">G7044</a>] has been created in ITU-T to specify hitless adjustment of
ODUflex (GFP) (HAO) that is used to increase or decrease the
bandwidth of an ODUflex (GFP) that is transported in an OTN.
The procedure of ODUflex (GFP) adjustment requires the
participation of every node along the path. Therefore, it is
recommended to use control-plane signaling to initiate the
adjustment procedure in order to avoid manual configuration at
each node along the path.
<span class="grey">Zhang, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
From the perspective of the control plane, control of ODUflex
resizing is similar to control of bandwidth increasing and
decreasing as described in [<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels"">RFC3209</a>]. Therefore, the Shared
Explicit (SE) style can be used for control of HAO.
All the extensions above should consider the extensibility to match
future evolvement of OTN.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Implications for GMPLS Routing</span>
The path computation process needs to select a suitable route for an
ODUj connection request. In order to perform the path computation,
it needs to evaluate the available bandwidth on each candidate link.
The routing protocol should be extended to convey sufficient
information to represent ODU Traffic Engineering (TE) topology.
The Interface Switching Capability Descriptors defined in [<a href="./rfc4202" title=""Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4202</a>]
present a new constraint for LSP path computation. [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>] defines
the Switching Capability, related Maximum LSP Bandwidth, and
Switching Capability specific information. When the Switching
Capability field is TDM, the Switching Capability specific
information field includes Minimum LSP Bandwidth, an indication
whether the interface supports Standard or Arbitrary SONET/SDH, and
padding. Hence, a new Switching Capability value needs to be defined
for [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] ODU switching in order to allow the definition of a
new Switching Capability specific information field. The following
requirements should be considered:
- Support for carrying the link multiplexing capability
As discussed in <a href="#section-3.1.2">Section 3.1.2</a>, many different types of ODUj can be
multiplexed into the same OTUk. For example, both ODU0 and ODU1
may be multiplexed into ODU2. An OTU link may support one or more
types of ODUj signals. The routing protocol should be capable of
carrying this multiplexing capability.
- Support any ODU and ODUflex
The bit rate (i.e., bandwidth) of each TS is dependent on the TS
granularity and the signal type of the link. For example, the
bandwidth of a 1.25 Gbps TS in an OTU2 is about 1.249409620 Gbps,
while the bandwidth of a 1.25 Gbps TS in an OTU3 is about
1.254703729 Gbps.
One LO ODU may need a different number of TSs when multiplexed
into different HO ODUs. For example, for ODU2e, 9 TSs are needed
when multiplexed into an ODU3, while only 8 TSs are needed when
<span class="grey">Zhang, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
multiplexed into an ODU4. For ODUflex, the total number of TSs to
be reserved in an HO ODU equals the maximum of [bandwidth of
ODUflex / bandwidth of TS of the HO ODU].
Therefore, the routing protocol should be capable of carrying the
necessary link bandwidth information for performing accurate route
computation for any of the fixed rate ODUs as well as ODUflex.
- Support for differentiating between terminating and switching
capability
Due to internal constraints and/or limitations, the type of signal
being advertised by an interface could be restricted to switched
(i.e., forwarded to switching matrix without
multiplexing/demultiplexing actions), restricted to terminated
(demuxed), or both. The capability advertised by an interface
needs further distinction in order to separate termination and
switching capabilities.
Therefore, to allow the required flexibility, the routing protocol
should clearly distinguish the terminating and switching
capability.
- Support for Tributary Slot Granularity advertisement
[<a id="ref-G709-2012">G709-2012</a>] defines two types of TSs, but each link can only
support a single type at a given time. In order to perform a
correct path computation (i.e., the LSP endpoints have matching
Tributary Slot Granularity values) the Tributary Slot Granularity
needs to be advertised.
- Support different priorities for resource reservation
How many priority levels should be supported depends on the
operator's policy. Therefore, the routing protocol should be
capable of supporting up to 8 priority levels as defined in
[<a href="./rfc4202" title=""Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4202</a>].
- Support link bundling
As described in [<a href="./rfc4201" title=""Link Bundling in MPLS Traffic Engineering (TE)"">RFC4201</a>], link bundling can improve routing
scalability by reducing the number of TE links that have to be
handled by the routing protocol. The routing protocol should be
capable of supporting the bundling of multiple OTU links, at the
same line rate and muxing hierarchy, between a pair of nodes that
a TE link does. Note that link bundling is optional and is
implementation dependent.
<span class="grey">Zhang, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
- Support for Control of Hitless Adjustment of ODUflex (GFP)
The control plane should support hitless adjustment of ODUflex, so
the routing protocol should be capable of differentiating whether
or not an ODU link can support hitless adjustment of ODUflex (GFP)
and how many resources can be used for resizing. This can be
achieved by introducing a new signal type "ODUflex(GFP-F),
resizable" that implies the support for hitless adjustment of
ODUflex (GFP) by that link.
As mentioned in <a href="#section-5.1">Section 5.1</a>, one method of enabling multiplexing
hierarchy is via usage of dedicated boards to allow tunneling of new
services through legacy ODU1, ODU2, and ODU3 containers. Such
dedicated boards may have some constraints with respect to switching
matrix access; detection and representation of such constraints is
for further study.
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Implications for Link Management Protocol</span>
As discussed in <a href="#section-5.3">Section 5.3</a>, path computation needs to know the
interface switching capability of links. The switching capability of
two ends of the link may be different, so the link capability of two
ends should be correlated.
LMP [<a href="./rfc4204" title=""Link Management Protocol (LMP)"">RFC4204</a>] provides a control-plane protocol for exchanging and
correlating link capabilities.
Note that LO ODU type information can be, in principle, discovered by
routing. Since in certain cases, routing is not present (e.g., in
the case of a User-Network Interface (UNI)), we need to extend link
management protocol capabilities to cover this aspect. If routing is
present, discovery via LMP could also be optional.
- Correlating the granularity of the TS
As discussed in <a href="#section-3.1.2">Section 3.1.2</a>, the two ends of a link may support
different TS granularity. In order to allow interconnection, the
node with 1.25 Gbps granularity should fall back to 2.5 Gbps
granularity.
Therefore, it is necessary for the two ends of a link to correlate
the granularity of the TS. This ensures the correct use of the TE
link.
<span class="grey">Zhang, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
- Correlating the supported LO ODU signal types and multiplexing
hierarchy capability
Many new ODU signal types have been introduced in [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>],
such as ODU0, ODU4, ODU2e, and ODUflex. It is possible that
equipment does not support all the LO ODU signal types introduced
by new standards or documents. Furthermore, since multiplexing
hierarchy may not be supported by the legacy OTNs, it is possible
that only one end of an ODU link can support multiplexing
hierarchy capability or that the two ends of the link support
different multiplexing hierarchy capabilities (e.g., one end of
the link supports ODU0 into ODU1 into ODU3 multiplexing while the
other end supports ODU0 into ODU2 into ODU3 multiplexing).
For control and management consideration, it is necessary for the
two ends of an HO ODU link to correlate the types of LO ODU that
can be supported and the multiplexing hierarchy capabilities that
can be provided by the other end.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Implications for Control-Plane Backward Compatibility</span>
With the introduction of [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>], there may be OTN composed of a
mixture of nodes, some of which support the legacy OTN and run the
control-plane protocols defined in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>], while others support
[<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] and the new OTN control plane characterized in this
document. Note that a third case, for the sake of completeness,
consists of nodes supporting the legacy OTN referenced by [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>]
with a new OTN control plane, but such nodes can be considered new
nodes with limited capabilities.
This section discusses the compatibility of nodes implementing the
control-plane procedures defined in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>] in support of the
legacy OTN and the control-plane procedures defined to support
[<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] as outlined by this document.
Compatibility needs to be considered only when controlling an ODU1,
ODU2, or ODU3 connection because the legacy OTN only supports these
three ODU signal types. In such cases, there are several possible
options, including:
- A node supporting [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] could support only the control-plane
procedures related to [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>], in which case both types of
nodes would be unable to jointly control an LSP for an ODU type
that both nodes support in the data plane.
- A node supporting [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] could support both the control plane
related to [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] and the control plane defined in [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>].
<span class="grey">Zhang, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
o Such a node could identify which set of procedures to follow
when initiating an LSP based on the Switching Capability value
advertised in routing.
o Such a node could follow the set of procedures based on the
Switching Type received in signaling messages from an upstream
node.
o Such a node, when processing a transit LSP, could select which
signaling procedures to follow based on the Switching
Capability value advertised in routing by the next-hop node.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. Implications for Path Computation Elements</span>
[<a id="ref-RFC7025">RFC7025</a>] describes the requirements for GMPLS applications of PCE in
order to establish GMPLS LSP. PCE needs to consider the GMPLS TE
attributes appropriately once a Path Computation Client (PCC) or
another PCE requests a path computation. The TE attributes that can
be contained in the path calculation request message from the PCC or
the PCE defined in [<a href="./rfc5440" title=""Path Computation Element (PCE) Communication Protocol (PCEP)"">RFC5440</a>] include switching capability, encoding
type, signal type, etc.
As described in <a href="#section-5.2">Section 5.2</a>, new signal types and new signals with
variable bandwidth information need to be carried in the extended
signaling message of path setup. For the same consideration, the PCE
Communication Protocol (PCECP) also has a desire to be extended to
carry the new signal type and related variable bandwidth information
when a PCC requests a path computation.
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. Implications for Management of GMPLS Networks</span>
From the management perspective, the management function should be
capable of managing not only the legacy OTN referenced by [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>],
but also new management functions introduced by the new features as
specified in [<a href="#ref-G709-2012" title=""Interface for the Optical Transport Network (OTN)"">G709-2012</a>] (for more information, see Sections <a href="#section-3">3</a> and
4). OTN Operations, Administration, and Maintenance (OAM)
configuration could be done through either Network Management Systems
(NMS) or the GMPLS control plane as defined in [<a href="#ref-TDM-OAM" title=""GMPLS RSVP-TE Extensions for SONET/SDH and OTN OAM Configuration"">TDM-OAM</a>]. For
further details on management aspects for GMPLS networks, refer to
[<a href="./rfc3945" title=""Generalized Multi-Protocol Label Switching (GMPLS) Architecture"">RFC3945</a>].
In case PCE is used to perform path computation in OTN, the PCE
manageability should be considered (for more information, see
<a href="./rfc5440#section-8">Section 8 of [RFC5440]</a>).
<span class="grey">Zhang, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Data-Plane Backward Compatibility Considerations</span>
If MI AUTOpayloadtype is activated (see [<a href="#ref-G798" title=""Characteristics of optical transport network hierarchy equipment functional blocks"">G798</a>]), a node supporting
1.25 Gbps TS can interwork with the other nodes that support 2.5 Gbps
TS by combining specific TSs together in the data plane. The control
plane must support this TS combination.
Path
+----------+ ------------> +----------+
| TS1==|===========\--------+--TS1 |
| TS2==|=========\--\-------+--TS2 |
| TS3==|=======\--\--\------+--TS3 |
| TS4==|=====\--\--\--\-----+--TS4 |
| | \ \ \ \----+--TS5 |
| | \ \ \------+--TS6 |
| | \ \--------+--TS7 |
| | \----------+--TS8 |
+----------+ <------------ +----------+
node A Resv node B
Figure 5: Interworking between 1.25 Gbps TS and 2.5 Gbps TS
Take Figure 5 as an example. Assume that there is an ODU2 link
between node A and B, where node A only supports the 2.5 Gbps TS
while node B supports the 1.25 Gbps TS. In this case, the TS#i and
TS#i+4 (where i<=4) of node B are combined together. When creating
an ODU1 service in this ODU2 link, node B reserves the TS#i and
TS#i+4 with the granularity of 1.25 Gbps. But in the label sent from
B to A, it is indicated that the TS#i with the granularity of 2.5
Gbps is reserved.
In the opposite direction, when receiving a label from node A
indicating that the TS#i with the granularity of 2.5 Gbps is
reserved, node B will reserve the TS#i and TS#i+4 with the
granularity of 1.25 Gbps in its data plane.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
The use of control-plane protocols for signaling, routing, and path
computation opens an OTN to security threats through attacks on those
protocols. However, this is not greater than the risks presented by
the existing OTN control plane as defined by [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>] and [<a href="./rfc4328" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control"">RFC4328</a>].
Meanwhile, the Data Communication Network (DCN) for OTN GMPLS
control-plane protocols is likely to be in the in-fiber overhead,
which, together with access lists at the network edges, provides a
significant security feature. For further details of specific
security measures, refer to the documents that define the protocols
<span class="grey">Zhang, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
([<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol-Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>], [<a href="./rfc4203" title=""OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC4203</a>], [<a href="./rfc5307" title=""IS-IS Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)"">RFC5307</a>], [<a href="./rfc4204" title=""Link Management Protocol (LMP)"">RFC4204</a>], and [<a href="./rfc5440" title=""Path Computation Element (PCE) Communication Protocol (PCEP)"">RFC5440</a>]).
[<a href="./rfc5920" title=""Security Framework for MPLS and GMPLS Networks"">RFC5920</a>] provides an overview of security vulnerabilities and
protection mechanisms for the GMPLS control plane.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Acknowledgments</span>
We would like to thank Maarten Vissers and Lou Berger for their
reviews and useful comments.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Contributors</span>
Jianrui Han
Huawei Technologies Co., Ltd.
F3-5-B R&D Center, Huawei Base
Bantian, Longgang District
Shenzhen 518129
P.R. China
Phone: +86-755-28972913
EMail: hanjianrui@huawei.com
Malcolm Betts
EMail: malcolm.betts@rogers.com
Pietro Grandi
Alcatel-Lucent
Optics CTO
Via Trento 30
20059 Vimercate (Milano)
Italy
Phone: +39 039 6864930
EMail: pietro_vittorio.grandi@alcatel-lucent.it
Eve Varma
Alcatel-Lucent
1A-261, 600-700 Mountain Av
PO Box 636
Murray Hill, NJ 07974-0636
USA
EMail: eve.varma@alcatel-lucent.com
<span class="grey">Zhang, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
<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-G709-2012">G709-2012</a>] ITU-T, "Interface for the Optical Transport Network
(OTN)", G.709/Y.1331 Recommendation, February 2012.
[<a id="ref-RFC3209">RFC3209</a>] Awduche, D., Berger, L., Gan, D., Li, T., Srinivasan, V.,
and G. Swallow, "RSVP-TE: Extensions to RSVP for LSP
Tunnels", <a href="./rfc3209">RFC 3209</a>, December 2001.
[<a id="ref-RFC3471">RFC3471</a>] Berger, L., Ed., "Generalized Multi-Protocol Label
Switching (GMPLS) Signaling Functional Description", <a href="./rfc3471">RFC</a>
<a href="./rfc3471">3471</a>, January 2003.
[<a id="ref-RFC3473">RFC3473</a>] Berger, L., Ed., "Generalized Multi-Protocol Label
Switching (GMPLS) Signaling Resource ReserVation
Protocol-Traffic Engineering (RSVP-TE) Extensions", <a href="./rfc3473">RFC</a>
<a href="./rfc3473">3473</a>, January 2003.
[<a id="ref-RFC4201">RFC4201</a>] Kompella, K., Rekhter, Y., and L. Berger, "Link Bundling
in MPLS Traffic Engineering (TE)", <a href="./rfc4201">RFC 4201</a>, October
2005.
[<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-RFC4204">RFC4204</a>] Lang, J., Ed., "Link Management Protocol (LMP)", <a href="./rfc4204">RFC</a>
<a href="./rfc4204">4204</a>, October 2005.
[<a id="ref-RFC4206">RFC4206</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-RFC4328">RFC4328</a>] Papadimitriou, D., Ed., "Generalized Multi-Protocol Label
Switching (GMPLS) Signaling Extensions for G.709 Optical
Transport Networks Control", <a href="./rfc4328">RFC 4328</a>, January 2006.
[<a id="ref-RFC5307">RFC5307</a>] Kompella, K., Ed., and Y. Rekhter, Ed., "IS-IS Extensions
in Support of Generalized Multi-Protocol Label Switching
(GMPLS)", <a href="./rfc5307">RFC 5307</a>, October 2008.
<span class="grey">Zhang, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
[<a id="ref-RFC5440">RFC5440</a>] Vasseur, JP., Ed., and JL. Le Roux, Ed., "Path
Computation Element (PCE) Communication Protocol (PCEP)",
<a href="./rfc5440">RFC 5440</a>, March 2009.
[<a id="ref-RFC6001">RFC6001</a>] Papadimitriou, D., Vigoureux, M., Shiomoto, K., Brungard,
D., and JL. Le Roux, "Generalized MPLS (GMPLS) Protocol
Extensions for Multi-Layer and Multi-Region Networks
(MLN/MRN)", <a href="./rfc6001">RFC 6001</a>, October 2010.
[<a id="ref-RFC6107">RFC6107</a>] Shiomoto, K., Ed., and A. Farrel, Ed., "Procedures for
Dynamically Signaled Hierarchical Label Switched Paths",
<a href="./rfc6107">RFC 6107</a>, February 2011.
[<a id="ref-RFC6344">RFC6344</a>] Bernstein, G., Ed., Caviglia, D., Rabbat, R., and H. van
Helvoort, "Operating Virtual Concatenation (VCAT) and the
Link Capacity Adjustment Scheme (LCAS) with Generalized
Multi-Protocol Label Switching (GMPLS)", <a href="./rfc6344">RFC 6344</a>, August
2011.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-G798">G798</a>] ITU-T, "Characteristics of optical transport network
hierarchy equipment functional blocks", G.798
Recommendation, December 2012.
[<a id="ref-G872-2001">G872-2001</a>] ITU-T, "Architecture of optical transport networks",
G.872 Recommendation, November 2001.
[<a id="ref-G872-2012">G872-2012</a>] ITU-T, "Architecture of optical transport networks",
G.872 Recommendation, October 2012.
[<a id="ref-G7041">G7041</a>] ITU-T, "Generic framing procedure", G.7041/Y.1303, April
2011.
[<a id="ref-G7042">G7042</a>] ITU-T, "Link capacity adjustment scheme (LCAS) for
virtual concatenated signals", G.7042/Y.1305, March 2006.
[<a id="ref-G7044">G7044</a>] ITU-T, "Hitless adjustment of ODUflex (HAO)",
G.7044/Y.1347, October 2011.
[<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-RFC4655">RFC4655</a>] Farrel, A., Vasseur, J.-P., and J. Ash, "A Path
Computation Element (PCE)-Based Architecture", <a href="./rfc4655">RFC 4655</a>,
August 2006.
<span class="grey">Zhang, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
[<a id="ref-RFC6163">RFC6163</a>] Lee, Y., Ed., Bernstein, G., Ed., and W. Imajuku,
"Framework for GMPLS and Path Computation Element (PCE)
Control of Wavelength Switched Optical Networks (WSONs)",
<a href="./rfc6163">RFC 6163</a>, April 2011.
[<a id="ref-RFC5920">RFC5920</a>] Fang, L., Ed., "Security Framework for MPLS and GMPLS
Networks", <a href="./rfc5920">RFC 5920</a>, July 2010.
[<a id="ref-RFC7025">RFC7025</a>] Otani, T., Ogaki, K., Caviglia, D., Zhang, F., and C.
Margaria, "Requirements for GMPLS Applications of PCE",
<a href="./rfc7025">RFC 7025</a>, September 2013.
[<a id="ref-TDM-OAM">TDM-OAM</a>] Kern, A., and A. Takacs, "GMPLS RSVP-TE Extensions for
SONET/SDH and OTN OAM Configuration", Work in Progress,
November 2013.
<span class="grey">Zhang, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7062">RFC 7062</a> OTN Framework November 2013</span>
Authors' Addresses
Fatai Zhang (editor)
Huawei Technologies
F3-5-B R&D Center, Huawei Base
Bantian, Longgang District
Shenzhen 518129
P.R. China
Phone: +86-755-28972912
EMail: zhangfatai@huawei.com
Dan Li
Huawei Technologies
F3-5-B R&D Center, Huawei Base
Bantian, Longgang District
Shenzhen 518129
P.R. China
Phone: +86-755-28973237
EMail: huawei.danli@huawei.com
Han Li
China Mobile Communications Corporation
53 A Xibianmennei Ave. Xuanwu District
Beijing 100053
P.R. China
Phone: +86-10-66006688
EMail: lihan@chinamobile.com
Sergio Belotti
Alcatel-Lucent
Optics CTO
Via Trento 30
20059 Vimercate (Milano)
Italy
Phone: +39 039 6863033
EMail: sergio.belotti@alcatel-lucent.it
Daniele Ceccarelli
Ericsson
Via A. Negrone 1/A
Genova - Sestri Ponente
Italy
EMail: daniele.ceccarelli@ericsson.com
Zhang, et al. Informational [Page 26]
</pre>
|