summaryrefslogtreecommitdiff
path: root/doc/rfc/rfc6053.txt
blob: af4b1e4e0fa8dfe1a064e84f4a021f764209d95a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
Internet Engineering Task Force (IETF)                     E. Haleplidis
Request for Comments: 6053                          University of Patras
Category: Informational                                         K. Ogawa
ISSN: 2070-1721                                          NTT Corporation
                                                                 W. Wang
                                           Zhejiang Gongshang University
                                                           J. Hadi Salim
                                                       Mojatatu Networks
                                                           November 2010


                       Implementation Report for
           Forwarding and Control Element Separation (ForCES)

Abstract

   Forwarding and Control Element Separation (ForCES) defines an
   architectural framework and associated protocols to standardize
   information exchange between the control plane and the forwarding
   plane in a ForCES network element (ForCES NE).  RFC 3654 has defined
   the ForCES requirements, and RFC 3746 has defined the ForCES
   framework.

   This document is an implementation report for the ForCES Protocol,
   Model, and the Stream Control Transmission Protocol-based Transport
   Mapping Layer (SCTP TML) documents, and includes a report on
   interoperability testing and the current state of ForCES
   implementations.

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 Section 2 of RFC 5741.

   Information about the current status of this document, any errata,
   and how to provide feedback on it may be obtained at
   http://www.rfc-editor.org/info/rfc6053.







Haleplidis, et al.            Informational                     [Page 1]
^L
RFC 6053            Implementation Report for ForCES       November 2010


Copyright Notice

   Copyright (c) 2010 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to BCP 78 and the IETF Trust's Legal
   Provisions Relating to IETF Documents
   (http://trustee.ietf.org/license-info) in effect on the date of
   publication of this document.  Please review these documents
   carefully, as they describe your rights and restrictions with respect
   to this document.  Code Components extracted from this document must
   include Simplified BSD License text as described in Section 4.e of
   the Trust Legal Provisions and are provided without warranty as
   described in the Simplified BSD License.





































Haleplidis, et al.            Informational                     [Page 2]
^L
RFC 6053            Implementation Report for ForCES       November 2010


Table of Contents

   1.  Introduction . . . . . . . . . . . . . . . . . . . . . . . . .  4
     1.1.  ForCES Protocol  . . . . . . . . . . . . . . . . . . . . .  4
     1.2.  ForCES Model . . . . . . . . . . . . . . . . . . . . . . .  4
     1.3.  Transport Mapping Layer  . . . . . . . . . . . . . . . . .  4
   2.  Terminology and Conventions  . . . . . . . . . . . . . . . . .  4
     2.1.  Requirements Language  . . . . . . . . . . . . . . . . . .  4
     2.2.  Definitions  . . . . . . . . . . . . . . . . . . . . . . .  5
   3.  Summary  . . . . . . . . . . . . . . . . . . . . . . . . . . .  6
   4.  Methodology  . . . . . . . . . . . . . . . . . . . . . . . . .  6
   5.  Exceptions . . . . . . . . . . . . . . . . . . . . . . . . . .  7
   6.  Detail Section . . . . . . . . . . . . . . . . . . . . . . . .  7
     6.1.  Implementation Experience  . . . . . . . . . . . . . . . .  7
       6.1.1.  ForCES Protocol Features . . . . . . . . . . . . . . .  9
         6.1.1.1.  Protocol Messages  . . . . . . . . . . . . . . . .  9
         6.1.1.2.  MainHeader Handling  . . . . . . . . . . . . . . . 10
         6.1.1.3.  TLV Handling . . . . . . . . . . . . . . . . . . . 11
         6.1.1.4.  Operation Types Supported  . . . . . . . . . . . . 12
         6.1.1.5.  ForCES Protocol Advanced Features  . . . . . . . . 13
       6.1.2.  ForCES Model Features  . . . . . . . . . . . . . . . . 14
         6.1.2.1.  Basic Atomic Types Supported . . . . . . . . . . . 14
         6.1.2.2.  Compound Types Supported . . . . . . . . . . . . . 15
         6.1.2.3.  LFBs Supported . . . . . . . . . . . . . . . . . . 15
       6.1.3.  ForCES SCTP TML Features . . . . . . . . . . . . . . . 19
         6.1.3.1.  TML Priority Ports . . . . . . . . . . . . . . . . 19
         6.1.3.2.  Message Handling at Specific Priorities  . . . . . 19
         6.1.3.3.  TML Security Feature . . . . . . . . . . . . . . . 20
     6.2.  Interoperability Report  . . . . . . . . . . . . . . . . . 20
       6.2.1.  Scenarios  . . . . . . . . . . . . . . . . . . . . . . 21
         6.2.1.1.  Scenario 1 - Pre-Association Setup . . . . . . . . 21
         6.2.1.2.  Scenario 2 - TML Priority Channels Connection  . . 22
         6.2.1.3.  Scenario 3 - Association Setup - Association
                   Complete . . . . . . . . . . . . . . . . . . . . . 22
         6.2.1.4.  Scenario 4 - CE Query  . . . . . . . . . . . . . . 23
         6.2.1.5.  Scenario 5 - Heartbeat Monitoring  . . . . . . . . 23
         6.2.1.6.  Scenario 6 - Simple Config Command . . . . . . . . 23
         6.2.1.7.  Scenario 7 - Association Teardown  . . . . . . . . 24
       6.2.2.  Tested Features  . . . . . . . . . . . . . . . . . . . 25
         6.2.2.1.  ForCES Protocol Features . . . . . . . . . . . . . 25
         6.2.2.2.  ForCES Model Features  . . . . . . . . . . . . . . 28
         6.2.2.3.  ForCES SCTP TML Features . . . . . . . . . . . . . 30
       6.2.3.  Interoperability Results . . . . . . . . . . . . . . . 31
   7.  Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . 32
   8.  Security Considerations  . . . . . . . . . . . . . . . . . . . 33
   9.  References . . . . . . . . . . . . . . . . . . . . . . . . . . 33
     9.1.  Normative References . . . . . . . . . . . . . . . . . . . 33
     9.2.  Informative References . . . . . . . . . . . . . . . . . . 33



Haleplidis, et al.            Informational                     [Page 3]
^L
RFC 6053            Implementation Report for ForCES       November 2010


1.  Introduction

   This document is an implementation report for the ForCES protocol,
   model, and the SCTP TML documents, and includes an interoperability
   report.

   It follows the outline suggested by [RFC5657].

   ForCES defines an architectural framework and associated protocols to
   standardize information exchange between the control plane and the
   forwarding plane in a ForCES network element (ForCES NE).  [RFC3654]
   has defined the ForCES requirements, and [RFC3746] has defined the
   ForCES framework.

1.1.  ForCES Protocol

   The ForCES protocol works in a master-slave mode in which forwarding
   elements (FEs) are slaves and control elements (CEs) are masters.
   The protocol includes commands for transport of Logical Functional
   Block (LFB) configuration information, association setup, status,
   event notifications, etc.  The reader is encouraged to read the
   ForCES Protocol Specification [RFC5810] for further information.

1.2.  ForCES Model

   The ForCES Model [RFC5812] presents a formal way to define FE Logical
   Functional Blocks (LFBs) using XML.  LFB configuration components,
   capabilities, and associated events are defined when the LFB is
   formally created.  The LFBs within the FE are accordingly controlled
   in a standardized way by the ForCES protocol.

1.3.  Transport Mapping Layer

   The TML transports the protocol layer (PL) messages [RFC5810].  The
   TML is where the issues of how to achieve transport-level
   reliability, congestion control, multicast, ordering, etc. are
   handled.  All ForCES protocol layer implementations MUST be portable
   across all TMLs.  Although more than one TML may be standardized for
   the ForCES protocol, all implementations MUST implement SCTP TML
   [RFC5811].

2.  Terminology and Conventions

2.1.  Requirements Language

   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 [RFC2119].



Haleplidis, et al.            Informational                     [Page 4]
^L
RFC 6053            Implementation Report for ForCES       November 2010


2.2.  Definitions

   This document follows the terminology defined by the ForCES
   requirements in [RFC3654] and by the ForCES framework in [RFC3746].
   The definitions are repeated below for clarity.

      Control Element (CE) - A logical entity that implements the ForCES
      protocol and uses it to instruct one or more FEs on how to process
      packets.  CEs handle functionality such as the execution of
      control and signaling protocols.

      Forwarding Element (FE) - A logical entity that implements the
      ForCES protocol.  FEs use the underlying hardware to provide
      per-packet processing and handling as directed/controlled by one
      or more CEs via the ForCES protocol.

      LFB (Logical Functional Block) - The basic building block that is
      operated on by the ForCES protocol.  The LFB is a well defined,
      logically separable functional block that resides in an FE and is
      controlled by the CE via the ForCES protocol.  The LFB may reside
      at the FE's datapath and process packets or may be purely an FE
      control or configuration entity that is operated on by the CE.
      Note that the LFB is a functionally accurate abstraction of the
      FE's processing capabilities, but not a hardware-accurate
      representation of the FE implementation.

      LFB Class and LFB Instance - LFBs are categorized by LFB Classes.
      An LFB Instance represents an LFB Class (or Type) existence.
      There may be multiple instances of the same LFB Class (or Type) in
      an FE.  An LFB Class is represented by an LFB Class ID, and an LFB
      Instance is represented by an LFB Instance ID.  As a result, an
      LFB Class ID associated with an LFB Instance ID uniquely specifies
      an LFB existence.

      LFB Metadata - Metadata is used to communicate per-packet state
      from one LFB to another, but is not sent across the network.  The
      FE model defines how such metadata is identified, produced, and
      consumed by the LFBs.  It defines the functionality but not how
      metadata is encoded within an implementation.

      LFB Components - Operational parameters of the LFBs that must be
      visible to the CEs are conceptualized in the FE model as the LFB
      components.  The LFB components include, for example, flags,
      single-parameter arguments, complex arguments, and tables that the
      CE can read and/or write via the ForCES protocol (see below).






Haleplidis, et al.            Informational                     [Page 5]
^L
RFC 6053            Implementation Report for ForCES       November 2010


      ForCES Protocol - While there may be multiple protocols used
      within the overall ForCES architecture, the term "ForCES protocol"
      and "protocol" refer to the "Fp" reference points in the ForCES
      framework in [RFC3746].  This protocol does not apply to CE-to-CE
      communication, FE-to-FE communication, or to communication between
      FE and CE managers.  Basically, the ForCES protocol works in a
      master-slave mode in which FEs are slaves and CEs are masters.

      ForCES Protocol Transport Mapping Layer (ForCES TML) - A layer in
      ForCES protocol architecture that uses the capabilities of
      existing transport protocols to specifically address protocol
      message transportation issues, such as how the protocol messages
      are mapped to different transport media (like TCP, IP, ATM,
      Ethernet, etc.), and how to achieve and implement reliability,
      multicast, ordering, etc.  The ForCES TML specifications are
      detailed in separate ForCES documents, one for each TML.

3.  Summary

   Three independent implementations, NTT Japan, the University of
   Patras, and Zhejiang Gongshang University, were surveyed and found to
   already implement all the major features.  All implementors mentioned
   they will be implementing all missing features in the future.

   An interop test was conducted in July 2009 for all three
   implementations.  Two other organizations, Mojatatu Networks and
   Hangzhou Baud Information and Networks Technology Corporation, which
   independently extended two different well known public domain
   protocol analyzers, Ethereal/Wireshark and tcpdump, also participated
   in the interop for a total of five independent organizations
   implementing.  The two protocol analyzers were used to verify the
   validity of ForCES protocol messages (and in some cases semantics).

   There were no notable difficulties in the interoperability test, and
   almost all issues were code bugs that were dealt with mostly on site;
   tests repeated successfully, as stated in Section 6.2.3.

4.  Methodology

   This report describes an implementation experience survey as well as
   the results of the interoperability test.

   The survey information was gathered after implementors answered a
   brief questionnaire regarding all ForCES Protocol, Model, and SCTP
   TML features.  The results can be seen in Section 6.1.






Haleplidis, et al.            Informational                     [Page 6]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   The interoperability results were part of the interoperability test.
   Extended Ethereal and extended tcpdump were used to verify the
   results.  The results can be seen in Section 6.2.

5.  Exceptions

   The core features of the ForCES Protocol, Model, and SCTP TML were
   implemented and assessed in an interop test in July 2009.  The
   intention of the interop testing was to validate that all the main
   features of the three core documents were interoperable amongst
   different implementations.  The tested features can be seen in
   Section 6.2.2.

   Different organizations surveyed have implemented certain features
   but not others.  This approach is driven by the presence of different
   LFBs that the different organizations currently implement.  All
   organizations surveyed have indicated their intention to implement
   all outstanding features in due time.  The implemented features can
   be seen in Section 6.1.

   The mandated TML security requirement, IP security (IPsec), was not
   validated during the interop and is not discussed in this document.
   Since IPsec is well known and widely deployed, not testing in the
   presence of IPsec does not invalidate the tests done.  Note that
   Section 6.1.3.3 indicates that none of the implementations reporting
   included support for IPsec, but all indicated their intention to
   implement it.

   Although the SCTP priority ports have changed since the
   interoperability test with the version of the SCTP TML draft
   available prior to the publication of RFC 5811, the change has no
   impact on the validity of the interoperability test.

6.  Detail Section

6.1.  Implementation Experience

   Three different organizations have implemented the ForCES Protocol,
   Model, and SCTP TML and answered a questionnaire.  These are:

   o  NTT Japan

   o  University of Patras

   o  Zhejiang Gongshang University






Haleplidis, et al.            Informational                     [Page 7]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   Extensions to protocol analyzers capable of understanding ForCES
   protocol messages are considered part of an implementation, since
   these analyzers can now understand and validate ForCES protocol
   message that have been exchanged.  Two such extensions have been
   created:

   o  Extension to Ethereal/Wireshark [ethereal].

   o  Extension to tcpdump [tcpdump].

   All implementors were asked about the ForCES features they have
   implemented.  For every item listed, the respondents indicated
   whether they had implemented, will implement, or won't implement at
   all.





































Haleplidis, et al.            Informational                     [Page 8]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.1.  ForCES Protocol Features

6.1.1.1.  Protocol Messages

   +------------------+-------------+---------------+------------------+
   | Protocol Message |  NTT Japan  | University of |     Zhejiang     |
   |                  |             |     Patras    |     Gongshang    |
   |                  |             |               |    University    |
   +------------------+-------------+---------------+------------------+
   |    Association   | Implemented |  Implemented  |    Implemented   |
   |       Setup      |             |               |                  |
   |                  |             |               |                  |
   |    Association   | Implemented |  Implemented  |    Implemented   |
   |  Setup Response  |             |               |                  |
   |                  |             |               |                  |
   |    Association   | Implemented |  Implemented  |    Implemented   |
   |     Teardown     |             |               |                  |
   |                  |             |               |                  |
   |      Config      | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |  Config Response | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |       Query      | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |  Query Response  | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |       Event      | Implemented |      Will     |    Implemented   |
   |   Notification   |             |   Implement   |                  |
   |                  |             |               |                  |
   |  Packet Redirect | Implemented |      Will     |    Implemented   |
   |                  |             |   Implement   |                  |
   |                  |             |               |                  |
   |     Heartbeat    | Implemented |  Implemented  |    Implemented   |
   +------------------+-------------+---------------+------------------+

                         ForCES Protocol Messages















Haleplidis, et al.            Informational                     [Page 9]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.1.2.  MainHeader Handling

   +-----------------+-------------+----------------+------------------+
   |   Header Field  |  NTT Japan  |  University of |     Zhejiang     |
   |                 |             |     Patras     |     Gongshang    |
   |                 |             |                |    University    |
   +-----------------+-------------+----------------+------------------+
   |    Correlator   | Implemented |   Implemented  |    Implemented   |
   |                 |             |                |                  |
   |  ACK Indicator  | Implemented |   Implemented  |    Implemented   |
   |       Flag      |             |                |                  |
   |                 |             |                |                  |
   |  Priority Flag  |     Will    |   Implemented  |    Implemented   |
   |                 |  Implement  |                |                  |
   |                 |             |                |                  |
   |  Execution Mode |     Will    | Will Implement |    Implemented   |
   |       Flag      |  Implement  |                |                  |
   |                 |             |                |                  |
   |      Atomic     |     Will    | Will Implement |    Implemented   |
   |   Transaction   |  Implement  |                |                  |
   |       Flag      |             |                |                  |
   |                 |             |                |                  |
   |   Transaction   |     Will    | Will Implement |    Implemented   |
   |    Phase Flag   |  Implement  |                |                  |
   +-----------------+-------------+----------------+------------------+

                            MainHeader Handling
























Haleplidis, et al.            Informational                    [Page 10]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.1.3.  TLV Handling

   +------------------+-------------+---------------+------------------+
   |        TLV       |  NTT Japan  | University of |     Zhejiang     |
   |                  |             |     Patras    |     Gongshang    |
   |                  |             |               |    University    |
   +------------------+-------------+---------------+------------------+
   |   REDIRECT-TLV   | Implemented |      Will     |    Implemented   |
   |                  |             |   Implement   |                  |
   |                  |             |               |                  |
   |   ASResult-TLV   | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |   ASTReason-TLV  | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |   LFBSelect-TLV  | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |     OPER-TLV     | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |   PATH-DATA-TLV  | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |    KEYINFO-TLV   |     Will    |      Will     |    Implemented   |
   |                  |  Implement  |   Implement   |                  |
   |                  |             |               |                  |
   |   FULLDATA-TLV   | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |  SPARSEDATA-TLV  |     Will    |      Will     |    Implemented   |
   |                  |  Implement  |   Implement   |                  |
   |                  |             |               |                  |
   |        ILV       |     Will    |      Will     |    Implemented   |
   |                  |  Implement  |   Implement   |                  |
   |                  |             |               |                  |
   |   METADATA-TLV   |     Will    |      Will     |    Implemented   |
   |                  |  Implement  |   Implement   |                  |
   |                  |             |               |                  |
   |    RESULT-TLV    | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   | REDIRECTDATA-TLV | Implemented |      Will     |    Implemented   |
   |                  |             |   Implement   |                  |
   +------------------+-------------+---------------+------------------+

                              TLVs Supported










Haleplidis, et al.            Informational                    [Page 11]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.1.4.  Operation Types Supported

   +-------------------+-------------+---------------+-----------------+
   |     Operation     |  NTT Japan  | University of |     Zhejiang    |
   |                   |             |     Patras    |    Gongshang    |
   |                   |             |               |    University   |
   +-------------------+-------------+---------------+-----------------+
   |        SET        | Implemented |  Implemented  |   Implemented   |
   |                   |             |               |                 |
   |      SET-PROP     |     Will    |      Will     |   Implemented   |
   |                   |  Implement  |   Implement   |                 |
   |                   |             |               |                 |
   |    SET-RESPONSE   | Implemented |  Implemented  |   Implemented   |
   |                   |             |               |                 |
   | SET-PROP-RESPONSE |     Will    |      Will     |   Implemented   |
   |                   |  Implement  |   Implement   |                 |
   |                   |             |               |                 |
   |        DEL        | Implemented |      Will     |   Implemented   |
   |                   |             |   Implement   |                 |
   |                   |             |               |                 |
   |    DEL-RESPONSE   | Implemented |      Will     |   Implemented   |
   |                   |             |   Implement   |                 |
   |                   |             |               |                 |
   |        GET        | Implemented |  Implemented  |   Implemented   |
   |                   |             |               |                 |
   |      GET-PROP     |     Will    |      Will     |   Implemented   |
   |                   |  Implement  |   Implement   |                 |
   |                   |             |               |                 |
   |    GET-RESPONSE   | Implemented |  Implemented  |   Implemented   |
   |                   |             |               |                 |
   | GET-PROP-RESPONSE |     Will    |      Will     |   Implemented   |
   |                   |  Implement  |   Implement   |                 |
   |                   |             |               |                 |
   |       REPORT      | Implemented |  Implemented  |   Implemented   |
   |                   |             |               |                 |
   |       COMMIT      |     Will    |      Will     |   Implemented   |
   |                   |  Implement  |   Implement   |                 |
   |                   |             |               |                 |
   |  COMMIT-RESPONSE  |     Will    |      Will     |   Implemented   |
   |                   |  Implement  |   Implement   |                 |
   |                   |             |               |                 |
   |       TRCOMP      |     Will    |      Will     |   Implemented   |
   |                   |  Implement  |   Implement   |                 |
   +-------------------+-------------+---------------+-----------------+

                         Operation Types Supported





Haleplidis, et al.            Informational                    [Page 12]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.1.5.  ForCES Protocol Advanced Features

   +---------------+-------------+----------------+--------------------+
   |    Feature    |  NTT Japan  |  University of | Zhejiang Gongshang |
   |               |             |     Patras     |     University     |
   +---------------+-------------+----------------+--------------------+
   |  Execute Mode |     Will    | Will Implement |     Implemented    |
   |               |  Implement  |                |                    |
   |               |             |                |                    |
   |  Transaction  |     Will    | Will Implement |     Implemented    |
   |               |  Implement  |                |                    |
   |               |             |                |                    |
   |    Batching   |     Will    |   Implemented  |     Implemented    |
   |               |  Implement  |                |                    |
   |               |             |                |                    |
   |    Command    |     Will    | Will Implement |   Will Implement   |
   |   Pipelining  |  Implement  |                |                    |
   |               |             |                |                    |
   |   Heartbeats  | Implemented |   Implemented  |     Implemented    |
   +---------------+-------------+----------------+--------------------+

                     ForCES Protocol Advanced Features





























Haleplidis, et al.            Informational                    [Page 13]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.2.  ForCES Model Features

6.1.2.1.  Basic Atomic Types Supported

   +----------------+-------------+---------------+--------------------+
   |   Atomic Type  |  NTT Japan  | University of | Zhejiang Gongshang |
   |                |             |     Patras    |     University     |
   +----------------+-------------+---------------+--------------------+
   |      char      | Implemented |  Implemented  |   Will Implement   |
   |                |             |               |                    |
   |      uchar     | Implemented |  Implemented  |     Implemented    |
   |                |             |               |                    |
   |      int16     | Implemented |  Implemented  |   Will Implement   |
   |                |             |               |                    |
   |     uint16     | Implemented |  Implemented  |   Will Implement   |
   |                |             |               |                    |
   |      int32     | Implemented |  Implemented  |     Implemented    |
   |                |             |               |                    |
   |     uint32     | Implemented |  Implemented  |     Implemented    |
   |                |             |               |                    |
   |      int64     | Implemented |  Implemented  |   Will Implement   |
   |                |             |               |                    |
   |     uint64     | Implemented |  Implemented  |   Will Implement   |
   |                |             |               |                    |
   |     boolean    | Implemented |  Implemented  |     Implemented    |
   |                |             |               |                    |
   |    string[N]   | Implemented |  Implemented  |     Implemented    |
   |                |             |               |                    |
   |     string     | Implemented |  Implemented  |     Implemented    |
   |                |             |               |                    |
   |     byte[N]    | Implemented |  Implemented  |     Implemented    |
   |                |             |               |                    |
   | octetstring[N] | Implemented |  Implemented  |   Will Implement   |
   |                |             |               |                    |
   |     float32    | Implemented |  Implemented  |   Will Implement   |
   |                |             |               |                    |
   |     float64    | Implemented |  Implemented  |   Will Implement   |
   +----------------+-------------+---------------+--------------------+

                       Basic Atomic Types Supported











Haleplidis, et al.            Informational                    [Page 14]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.2.2.  Compound Types Supported

   +------------+-------------+-----------------+----------------------+
   |  Compound  |  NTT Japan  |  University of  |  Zhejiang Gongshang  |
   |    Type    |             |      Patras     |      University      |
   +------------+-------------+-----------------+----------------------+
   |   structs  | Implemented |   Implemented   |      Implemented     |
   |            |             |                 |                      |
   |   arrays   | Implemented |   Implemented   |      Implemented     |
   +------------+-------------+-----------------+----------------------+

                         Compound Types Supported

6.1.2.3.  LFBs Supported

6.1.2.3.1.  FE Protocol LFB

   +------------------+-------------+----------------+-----------------+
   |     Protocol     |  NTT Japan  |  University of |     Zhejiang    |
   |     Datatypes    |             |     Patras     |    Gongshang    |
   |                  |             |                |    University   |
   +------------------+-------------+----------------+-----------------+
   |    CEHBPolicy    | Implemented |   Implemented  |   Implemented   |
   |                  |             |                |                 |
   |    FEHBPolicy    | Implemented |   Implemented  |   Implemented   |
   |                  |             |                |                 |
   |  FERestartPolicy | Implemented |   Implemented  |   Implemented   |
   |                  |             |                |                 |
   | CEFailoverPolicy | Implemented |   Implemented  |   Implemented   |
   |                  |             |                |                 |
   |     FEHACapab    | Implemented |   Implemented  |  Will Implement |
   +------------------+-------------+----------------+-----------------+

                         FE Protocol LFB Datatypes

















Haleplidis, et al.            Informational                    [Page 15]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   +-----------------------+-------------+-------------+---------------+
   |  Protocol Components  |  NTT Japan  |  University |    Zhejiang   |
   |                       |             |  of Patras  |   Gongshang   |
   |                       |             |             |   University  |
   +-----------------------+-------------+-------------+---------------+
   | CurrentRunningVersion | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |          FEID         | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |     MulticastFEIDs    | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |       CEHBPolicy      | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |         CEHDI         | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |       FEHBPolicy      | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |          FEHI         | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |          CEID         | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |       BackupCEs       | Implemented |     Will    |      Will     |
   |                       |             |  Implement  |   Implement   |
   |                       |             |             |               |
   |    CEFailoverPolicy   | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |         CEFTI         | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |    FERestartPolicy    | Implemented | Implemented |      Will     |
   |                       |             |             |   Implement   |
   |                       |             |             |               |
   |        LastCEID       | Implemented | Implemented |      Will     |
   |                       |             |             |   Implement   |
   +-----------------------+-------------+-------------+---------------+

                        FE Protocol LFB Components

   +---------------------+-------------+-------------+-----------------+
   |     Capabilities    |  NTT Japan  |  University |     Zhejiang    |
   |                     |             |  of Patras  |    Gongshang    |
   |                     |             |             |    University   |
   +---------------------+-------------+-------------+-----------------+
   | SupportableVersions | Implemented | Implemented |   Implemented   |
   |                     |             |             |                 |
   |    HACapabilities   | Implemented | Implemented |  Will Implement |
   +---------------------+-------------+-------------+-----------------+

                          Capabilities Supported



Haleplidis, et al.            Informational                    [Page 16]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   +---------------+------------+----------------+---------------------+
   |     Events    |  NTT Japan |  University of |  Zhejiang Gongshang |
   |               |            |     Patras     |      University     |
   +---------------+------------+----------------+---------------------+
   | PrimaryCEDown |    Will    | Will Implement |    Will Implement   |
   |               |  Implement |                |                     |
   +---------------+------------+----------------+---------------------+

                             Events Supported

6.1.2.3.2.  FE Object LFB

  +--------------------------+-------------+-------------+-------------+
  |     Object Datatypes     |  NTT Japan  |  University |   Zhejiang  |
  |                          |             |  of Patras  |  Gongshang  |
  |                          |             |             |  University |
  +--------------------------+-------------+-------------+-------------+
  |  LFBAdjacencyLimitType   | Implemented | Implemented | Implemented |
  |                          |             |             |             |
  |    PortGroupLimitType    | Implemented | Implemented | Implemented |
  |                          |             |             |             |
  |     SupportedLFBType     | Implemented | Implemented | Implemented |
  |                          |             |             |             |
  |      FEStateValues       | Implemented | Implemented | Implemented |
  |                          |             |             |             |
  | FEConfiguredNeighborType | Implemented | Implemented | Implemented |
  |                          |             |             |             |
  |     LFBSelectorType      | Implemented | Implemented | Implemented |
  |                          |             |             |             |
  |       LFBLinkType        | Implemented | Implemented | Implemented |
  +--------------------------+-------------+-------------+-------------+

                          FE Object LFB Datatypes


















Haleplidis, et al.            Informational                    [Page 17]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   +--------------+-------------+----------------+---------------------+
   |    Object    |  NTT Japan  |  University of |  Zhejiang Gongshang |
   |  Components  |             |     Patras     |      University     |
   +--------------+-------------+----------------+---------------------+
   |  LFBTopology | Implemented |   Implemented  |     Implemented     |
   |              |             |                |                     |
   | LFBSelectors | Implemented |   Implemented  |     Implemented     |
   |              |             |                |                     |
   |    FEName    | Implemented |   Implemented  |     Implemented     |
   |              |             |                |                     |
   |     FEID     | Implemented |   Implemented  |     Implemented     |
   |              |             |                |                     |
   |   FEVendor   | Implemented |   Implemented  |     Implemented     |
   |              |             |                |                     |
   |    FEModel   | Implemented |   Implemented  |     Implemented     |
   |              |             |                |                     |
   |    FEState   | Implemented |   Implemented  |     Implemented     |
   |              |             |                |                     |
   |  FENeighbors | Implemented |   Implemented  |     Implemented     |
   +--------------+-------------+----------------+---------------------+

                         FE Object LFB Components

   +-----------------------+-------------+-------------+---------------+
   |      Capabilities     |  NTT Japan  |  University |    Zhejiang   |
   |                       |             |  of Patras  |   Gongshang   |
   |                       |             |             |   University  |
   +-----------------------+-------------+-------------+---------------+
   | ModifiableLFBTopology | Implemented | Implemented |  Implemented  |
   |                       |             |             |               |
   |     SupportedLFBs     | Implemented | Implemented |  Implemented  |
   +-----------------------+-------------+-------------+---------------+

                          Capabilities Supported

















Haleplidis, et al.            Informational                    [Page 18]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.1.3.  ForCES SCTP TML Features

6.1.3.1.  TML Priority Ports

   +----------------+-------------+---------------+--------------------+
   |      Port      |  NTT Japan  | University of | Zhejiang Gongshang |
   |                |             |     Patras    |     University     |
   +----------------+-------------+---------------+--------------------+
   |  High priority | Implemented |  Implemented  |     Implemented    |
   |     (6700)     |             |               |                    |
   |                |             |               |                    |
   |     Medium     | Implemented |  Implemented  |     Implemented    |
   |    priority    |             |               |                    |
   |     (6701)     |             |               |                    |
   |                |             |               |                    |
   |  Low priority  | Implemented |  Implemented  |     Implemented    |
   |     (6702)     |             |               |                    |
   +----------------+-------------+---------------+--------------------+

                              Priority Ports

6.1.3.2.  Message Handling at Specific Priorities

   +------------------+-------------+---------------+------------------+
   |  ForCES Message  |  NTT Japan  | University of |     Zhejiang     |
   |                  |             |     Patras    |     Gongshang    |
   |                  |             |               |    University    |
   +------------------+-------------+---------------+------------------+
   |    Association   | Implemented |  Implemented  |    Implemented   |
   |       Setup      |             |               |                  |
   |                  |             |               |                  |
   |    Association   | Implemented |  Implemented  |    Implemented   |
   |  Setup Response  |             |               |                  |
   |                  |             |               |                  |
   |    Association   | Implemented |  Implemented  |    Implemented   |
   |     Teardown     |             |               |                  |
   |                  |             |               |                  |
   |      Config      | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |  Config Response | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |       Query      | Implemented |  Implemented  |    Implemented   |
   |                  |             |               |                  |
   |  Query Response  | Implemented |  Implemented  |    Implemented   |
   +------------------+-------------+---------------+------------------+

               Message Handling at High-Priority (6700) Port




Haleplidis, et al.            Informational                    [Page 19]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   +---------------+-------------+----------------+--------------------+
   |     ForCES    |  NTT Japan  |  University of | Zhejiang Gongshang |
   |    Message    |             |     Patras     |     University     |
   +---------------+-------------+----------------+--------------------+
   |     Event     | Implemented |   Implemented  |     Implemented    |
   |  Notification |             |                |                    |
   +---------------+-------------+----------------+--------------------+

              Message Handling at Medium-Priority (6701) Port

   +-------------+-------------+-----------------+---------------------+
   |    ForCES   |  NTT Japan  |  University of  |  Zhejiang Gongshang |
   |   Message   |             |      Patras     |      University     |
   +-------------+-------------+-----------------+---------------------+
   |    Packet   | Implemented |   Implemented   |     Implemented     |
   |   Redirect  |             |                 |                     |
   |             |             |                 |                     |
   |  Heartbeat  | Implemented |   Implemented   |     Implemented     |
   +-------------+-------------+-----------------+---------------------+

               Message Handling at Low-Priority (6702) Port

6.1.3.3.  TML Security Feature

   +--------------+------------+-----------------+---------------------+
   |   Security   |  NTT Japan |  University of  |  Zhejiang Gongshang |
   |    Feature   |            |      Patras     |      University     |
   +--------------+------------+-----------------+---------------------+
   |     IPsec    |    Will    |  Will Implement |    Will Implement   |
   |              |  Implement |                 |                     |
   +--------------+------------+-----------------+---------------------+

                         Security Feature Support

6.2.  Interoperability Report

   The interoperability test took place at the University of Patras, in
   the Department of Electrical and Computer Engineering.

   There were two options for participation in the interoperability
   test.

   1.  Locally, on the University of Patras premises.

   2.  Remotely, via Internet.






Haleplidis, et al.            Informational                    [Page 20]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   Implementations from NTT and the University of Patras were present
   locally on the University of Patras premises in Greece, while the
   implementation from Zhejiang Gongshang University, which was behind a
   NAT, connected remotely from China.

   The interoperability test validated the basic functionality of the
   ForCES protocol, mainly message exchanging and handling.

   The following scenarios were tested.

6.2.1.  Scenarios

   The main goal of the interoperability test was to validate the basic
   protocol functionality; the test parameters were limited.

   1.  In the Association Setup message, all report messages were
       ignored.

   2.  In the Association Setup stage, the FEO OperEnable Event (FE to
       CE), Config FEO Adminup (CE to FE), and FEO Config-Resp (FE to
       CE) messages were ignored.  The CEs assumed that the FEs were
       enabled once the LFB selectors had been queried.

   3.  Only FULLDATA-TLVs were used and not SPARSEDATA-TLVs.

   4.  There were no transaction operations.

   5.  Each message had only one LFBSelect-TLV, one OPER-TLV, and one
       PATH-DATA-TLV per message when these were used.

6.2.1.1.  Scenario 1 - Pre-Association Setup

   While the pre-association setup is not in the ForCES current scope,
   it is an essential step before CEs and FEs communicate.  As the first
   part in a successful CE-FE connection, the participating CEs and FEs
   had to be configurable.

   In the pre-association phase, the following configuration items were
   set up regarding the CEs:

   o  The CE ID.

   o  The FE IDs that were connected to this CE.

   o  The IP addresses of the FEs that connected to the CE.

   o  The TML priority ports.




Haleplidis, et al.            Informational                    [Page 21]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   In the pre-association phase, the following configuration items were
   set up regarding the FEs:

   o  The FE ID.

   o  The CE ID to which this FE was connecting.

   o  The IP address of the CE to which this FE was connecting.

   o  The TML priority ports.

6.2.1.2.  Scenario 2 - TML Priority Channels Connection

   For the interoperability test, the SCTP was used as TML.  The TML
   connection with the associating element was needed for Scenario 2 to
   be successful.

   SCTP TML [RFC5811] defines three priority channels, with specific
   ports:

   o  High priority - Port number: 6704

   o  Medium priority - Port number: 6705

   o  Lower priority - Port number: 6706

   However, at the time of the interoperability test, the SCTP ports of
   the three priority channels were the following:

   o  High priority - Port number: 6700

   o  Medium priority - Port number: 6701

   o  Lower priority - Port number: 6702

   As specified in Section 5, "Exceptions", this does not invalidate the
   results of the interoperability test.

6.2.1.3.  Scenario 3 - Association Setup - Association Complete

   Once the pre-association phase in the previous two scenarios had
   completed, CEs and FEs would be ready to communicate using the ForCES
   protocol and enter the Association Setup stage.  In this stage, the
   FEs would attempt to join the NE.  The following ForCES protocol
   messages would be exchanged for each CE-FE pair in the specified
   order:





Haleplidis, et al.            Informational                    [Page 22]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   o  Association Setup message (from FE to CE)

   o  Association Setup Response message (from CE to FE)

   o  Query message: FEO LFB selectors (from CE to FE)

   o  Query Response: FEO LFB selectors response (from FE to CE)

6.2.1.4.  Scenario 4 - CE Query

   Once the Association Setup stage had completed, the FEs and CEs would
   enter the Established stage.  In this stage, the FE will be
   continuously updated or queried.  The CE should query the FE for a
   specific value from the FE Object LFB and from the FE Protocol LFB.
   An example from the FE Protocol LFB is the FE Heartbeat Interval
   (FEHI), and an example from the FE Object LFB is the state of the LFB
   (FEState).

   The following ForCES protocol messages were exchanged:

   o  Query message

   o  Query Response message

6.2.1.5.  Scenario 5 - Heartbeat Monitoring

   The Heartbeat (HB) message is used for one ForCES element (FE or CE)
   to asynchronously notify one or more other ForCES elements in the
   same ForCES NE of its liveness.  The default configuration of the
   Heartbeat Policy of the FE is set to 0, which means that the FE
   should not generate any Heartbeat messages.  The CE is responsible
   for checking FE liveness by setting the PL header ACK flag of the
   message it sends to AlwaysACK.  In this scenario, the CE will send a
   Heartbeat message with the ACK flag set to AlwaysACK, and the FE
   should respond.

   The following type of ForCES protocol message was exchanged:

   o  Heartbeat message

6.2.1.6.  Scenario 6 - Simple Config Command

   A Config message is sent by the CE to the FE to configure LFB
   components in the FE.  A simple Config command, easily visible and
   metered, would be to change the Heartbeat configuration.  This was
   done in two steps:





Haleplidis, et al.            Informational                    [Page 23]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   1.  Change the FE Heartbeat Policy (FEHBPolicy) to value 1, to force
       the FE to send heartbeats.

   2.  After some heartbeats from the FE, the FE Heartbeat Interval
       (FEHI) was changed.

   The following ForCES protocol messages were exchanged:

   o  Config message

   o  Config Response message

6.2.1.7.  Scenario 7 - Association Teardown

   In the end, the association must be terminated.  There were three
   scenarios by which the association was terminated:

   1.  Normal teardown, by exchanging an Association Teardown message.

   2.  Irregular teardown, by stopping heartbeats from an FE or a CE.

   3.  Irregular teardown, by externally shutting down/rebooting an FE
       or a CE.

   All scenarios were investigated in the interoperability test.

   The following type of ForCES protocol message was exchanged:

   o  Association Teardown message






















Haleplidis, et al.            Informational                    [Page 24]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.2.2.  Tested Features

   The features that were tested are:

6.2.2.1.  ForCES Protocol Features

6.2.2.1.1.  Protocol Messages

                      +----------------------------+
                      |      Protocol Message      |
                      +----------------------------+
                      |      Association Setup     |
                      |                            |
                      | Association Setup Response |
                      |                            |
                      |    Association Teardown    |
                      |                            |
                      |           Config           |
                      |                            |
                      |       Config Response      |
                      |                            |
                      |            Query           |
                      |                            |
                      |       Query Response       |
                      |                            |
                      |          Heartbeat         |
                      +----------------------------+

                         ForCES Protocol Messages

   o  PASS: All implementations handled the protocol messages, and all
      protocol analyzers captured them.



















Haleplidis, et al.            Informational                    [Page 25]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.2.2.1.2.  MainHeader Handling

                          +--------------------+
                          |    Header Field    |
                          +--------------------+
                          |     Correlator     |
                          |                    |
                          | ACK Indicator Flag |
                          |                    |
                          |    Priority Flag   |
                          +--------------------+

                            MainHeader Handling

   o  PASS: All implementations handled these main header flags, and all
      protocol analyzers captured them.

6.2.2.1.3.  TLV Handling

                             +---------------+
                             |      TLV      |
                             +---------------+
                             |  ASResult-TLV |
                             |               |
                             | ASTReason-TLV |
                             |               |
                             | LFBSelect-TLV |
                             |               |
                             |    OPER-TLV   |
                             |               |
                             | PATH-DATA-TLV |
                             |               |
                             |  FULLDATA-TLV |
                             |               |
                             |   RESULT-TLV  |
                             +---------------+

                              TLVs Supported

   o  PASS: All implementations handled these TLVs, and all protocol
      analyzers captured them.










Haleplidis, et al.            Informational                    [Page 26]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.2.2.1.4.  Operation Types Supported

                             +--------------+
                             |   Operation  |
                             +--------------+
                             |      SET     |
                             |              |
                             | SET-RESPONSE |
                             |              |
                             |      GET     |
                             |              |
                             | GET-RESPONSE |
                             |              |
                             |    REPORT    |
                             +--------------+

                         Operation Types Supported

   o  PASS: All implementations handled these operations, and all
      protocol analyzers captured them.

6.2.2.1.5.  ForCES Protocol Advanced Features

                              +------------+
                              |   Feature  |
                              +------------+
                              |  Batching  |
                              |            |
                              | Heartbeats |
                              +------------+

                     ForCES Protocol Advanced Features

   Although batching was not initially intended to be tested, it was
   assessed during the interoperability test.

   o  PASS: Two implementations handled batching, and all handled
      heartbeats.  The protocol analyzers captured both.













Haleplidis, et al.            Informational                    [Page 27]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.2.2.2.  ForCES Model Features

6.2.2.2.1.  Basic Atomic Types Supported

                              +-------------+
                              | Atomic Type |
                              +-------------+
                              |    uchar    |
                              |             |
                              |    uint32   |
                              +-------------+

                       Basic Atomic Types Supported

   o  PASS: All implementations handled these basic atomic types.

6.2.2.2.2.  Compound Types Supported

                             +---------------+
                             | Compound Type |
                             +---------------+
                             |    structs    |
                             |               |
                             |     arrays    |
                             +---------------+

                         Compound Types Supported

   o  PASS: All implementations handled these compound types.

6.2.2.2.3.  LFBs Supported

6.2.2.2.3.1.  FE Protocol LFB

                          +--------------------+
                          | Protocol Datatypes |
                          +--------------------+
                          |     CEHBPolicy     |
                          |                    |
                          |     FEHBPolicy     |
                          +--------------------+

                         FE Protocol LFB Datatypes

   o  PASS: All implementations handled these FE Protocol LFB datatypes.






Haleplidis, et al.            Informational                    [Page 28]
^L
RFC 6053            Implementation Report for ForCES       November 2010


                          +---------------------+
                          | Protocol Components |
                          +---------------------+
                          |         FEID        |
                          |                     |
                          |      CEHBPolicy     |
                          |                     |
                          |        CEHDI        |
                          |                     |
                          |      FEHBPolicy     |
                          |                     |
                          |         FEHI        |
                          |                     |
                          |         CEID        |
                          +---------------------+

                        FE Protocol LFB Components

   o  PASS: All implementations handled these FE Protocol LFB
      components.

6.2.2.2.3.2.  FE Object LFB

                           +------------------+
                           | Object Datatypes |
                           +------------------+
                           |   FEStateValues  |
                           |                  |
                           |  LFBSelectorType |
                           +------------------+

                          FE Object LFB Datatypes

   o  PASS: All implementations handled these FE Object LFB datatypes.

                           +-------------------+
                           | Object Components |
                           +-------------------+
                           |    LFBSelectors   |
                           |                   |
                           |      FEState      |
                           +-------------------+

                         FE Object LFB Components

   o  PASS: All implementations handled these FE Object LFB components.





Haleplidis, et al.            Informational                    [Page 29]
^L
RFC 6053            Implementation Report for ForCES       November 2010


6.2.2.3.  ForCES SCTP TML Features

6.2.2.3.1.  TML Priority Ports

                        +------------------------+
                        |          Port          |
                        +------------------------+
                        |  High priority (6700)  |
                        |                        |
                        | Medium priority (6701) |
                        |                        |
                        |   Low priority (6702)  |
                        +------------------------+

                              Priority Ports

   o  PASS: All implementations opened and connected to all the SCTP
      priority ports.  The protocol analyzers captured all ports and
      their corresponding priority.

6.2.2.3.2.  Message Handling at Specific Priorities

                      +----------------------------+
                      |       ForCES Message       |
                      +----------------------------+
                      |      Association Setup     |
                      |                            |
                      | Association Setup Response |
                      |                            |
                      |    Association Teardown    |
                      |                            |
                      |           Config           |
                      |                            |
                      |       Config Response      |
                      |                            |
                      |            Query           |
                      |                            |
                      |       Query Response       |
                      +----------------------------+

               Message Handling at High-Priority (6700) Port

   o  PASS: All implementations handled these messages at this SCTP
      priority port.  The protocol analyzers captured these messages at
      this priority port.






Haleplidis, et al.            Informational                    [Page 30]
^L
RFC 6053            Implementation Report for ForCES       November 2010


                            +----------------+
                            | ForCES Message |
                            +----------------+
                            |   Heartbeats   |
                            +----------------+

               Message Handling at Low-Priority (6702) Port

   o  PASS: All implementations handled these messages at this SCTP
      priority port.  The protocol analyzers captured these messages at
      this priority port.

6.2.3.  Interoperability Results

   All implementations were found to be interoperable with each other.

   All scenarios were tested successfully.

   The following issues were found and dealt with.

   1.   Some messages were sent on the wrong priority channels.  There
        were some ambiguities in the SCTP TML document regarding how to
        deal with such a situation.  The possibilities were an FE
        response on the same (wrong) channel as a CE query; an FE
        response on the correctly documented channel for the message; or
        simply dropping the packet.  This has been corrected by
        mandating the message-to-channel mapping to be a MUST in the
        SCTP TML document [RFC5811] before it was published as an RFC.

   2.   At some point, a CE sent a Teardown message to the FE.  The CE
        expected the FE to shut down the connection, and the FE waited
        for the CE to shut down the connection; both were then caught in
        a deadlock.  This was a code bug and was fixed.

   3.   Sometimes, only when the CE and FE were remote to each other
        (one being in China and another in Greece), the Association
        Setup message was not received by the CE side, and therefore an
        association never completed.  This was not an implementation
        issue but rather a network issue.  This issue was solved with
        the retransmission of the non-delivered messages.

   4.   An implementation did not take into account that the padding in
        TLVs MUST NOT be included in the length of the TLV.  This was a
        code bug and was fixed.

   5.   The Execution Mode flag was set to Reserved by a CE and was not
        ignored by the FE.  This was a code bug and was fixed.




Haleplidis, et al.            Informational                    [Page 31]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   6.   After the FEHBPolicy was set to 1, the FE didn't send any
        heartbeats.  This was a code bug and was fixed.

   7.   Some FEs sent heartbeats with the ACK flag set to a value other
        than NoACK.  The CE responded.  This was a code bug and was
        fixed.

   8.   When a cable was disconnected, none of the TML implementations
        detected it.  The association was eventually dropped due to
        heartbeat detection; this test was a success, but this is an
        implementation issue that implementors should keep in mind.
        This is an SCTP options issue.  Nothing needed to be done.

   9.   A CE crashed due to unknown LFB selector values.  This was a
        code bug and was fixed.

   10.  With the remote connection from China (which was behind a NAT)
        to Greece, there were a lot of ForCES packet retransmissions.
        The problem was that packets like heartbeats were retransmitted.
        This was an implementation issue regarding SCTP usage that
        implementors should keep in mind.  The SCTP-PR option needed to
        be used.  Nothing needed to be done.

   The interoperability test went so well that an additional extended
   test was added to check for batching messages.  This test was also
   done successfully.

7.  Acknowledgements

   The authors would like to give thanks to Professors Odysseas
   Koufopavlou and Spyros Denazis, and the Department of Electrical and
   Computer Engineering at the University of Patras, who hosted the
   ForCES interoperability test.

   The authors would also like to give thanks to Chuanhuang Li, Ming
   Gao, and other participants from Zhejiang Gongshang University, which
   connected remotely.  This allowed the discovery of a series of issues
   that would have been uncaught otherwise.

   The authors would also like to thank Hideaki Iwata and Yoshinobu
   Morimoto of NTT Japan for participating locally at the
   interoperability test; as well as Hiroki Date and Hidefumi Otsuka,
   also of NTT Japan, for contributing to the interoperability test.

   Additionally, thanks are given to Xinping Wang for her help in
   writing the interoperability document and to Fenggen Jia for
   extending the Ethereal protocol analyzer.




Haleplidis, et al.            Informational                    [Page 32]
^L
RFC 6053            Implementation Report for ForCES       November 2010


8.  Security Considerations

   No security elements of the protocol or the SCTP TML [RFC5811]
   specification were tested.

   The survey indicated that no security elements were implemented, but
   all participants indicated their intention to implement them.

   For security considerations regarding the ForCES protocol and SCTP
   TML, please see [RFC5810] and [RFC5811].

9.  References

9.1.  Normative References

   [RFC2119]   Bradner, S., "Key words for use in RFCs to Indicate
               Requirement Levels", BCP 14, RFC 2119, March 1997.

   [RFC5810]   Doria, A., Hadi Salim, J., Haas, R., Khosravi, H., Wang,
               W., Dong, L., Gopal, R., and J. Halpern, "Forwarding and
               Control Element Separation (ForCES) Protocol
               Specification", RFC 5810, March 2010.

   [RFC5811]   Hadi Salim, J. and K. Ogawa, "SCTP-Based Transport
               Mapping Layer (TML) for the Forwarding and Control
               Element Separation (ForCES) Protocol", RFC 5811,
               March 2010.

   [RFC5812]   Halpern, J. and J. Hadi Salim, "Forwarding and Control
               Element Separation (ForCES) Forwarding Element Model",
               RFC 5812, March 2010.

9.2.  Informative References

   [RFC3654]   Khosravi, H. and T. Anderson, "Requirements for
               Separation of IP Control and Forwarding", RFC 3654,
               November 2003.

   [RFC3746]   Yang, L., Dantu, R., Anderson, T., and R. Gopal,
               "Forwarding and Control Element Separation (ForCES)
               Framework", RFC 3746, April 2004.

   [RFC5657]   Dusseault, L. and R. Sparks, "Guidance on Interoperation
               and Implementation Reports for Advancement to Draft
               Standard", BCP 9, RFC 5657, September 2009.






Haleplidis, et al.            Informational                    [Page 33]
^L
RFC 6053            Implementation Report for ForCES       November 2010


   [ethereal]  "Ethereal is a protocol analyzer.  The specific Ethereal
               that was used is an updated Ethereal, by Fenggen Jia,
               that can analyze and decode the ForCES protocol
               messages", <http://www.ietf.org/mail-archive/web/forces/
               current/msg03687.html>.

   [tcpdump]   "tcpdump is a Linux protocol analyzer.  The specific
               tcpdump that was used is a modified tcpdump, by Jamal
               Hadi Salim, that can analyze and decode the ForCES
               protocol messages", <http://www.ietf.org/mail-archive/
               web/forces/current/msg03811.html>.

Authors' Addresses

   Evangelos Haleplidis
   University of Patras
   Patras
   Greece

   EMail: ehalep@ece.upatras.gr


   Kentaro Ogawa
   NTT Corporation
   Tokyo
   Japan

   EMail: ogawa.kentaro@lab.ntt.co.jp


   Weiming Wang
   Zhejiang Gongshang University
   18, Xuezheng Str., Xiasha University Town
   Hangzhou,   310018
   P.R. China

   Phone: +86-571-28877721
   EMail: wmwang@mail.zjgsu.edu.cn


   Jamal Hadi Salim
   Mojatatu Networks
   Ottawa, Ontario
   Canada

   Phone:
   EMail: hadi@mojatatu.com




Haleplidis, et al.            Informational                    [Page 34]
^L