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
|
Internet Engineering Task Force (IETF) K. Ogawa
Request for Comments: 7121 NTT Corporation
Updates: 5810 W. Wang
Category: Standards Track Zhejiang Gongshang University
ISSN: 2070-1721 E. Haleplidis
University of Patras
J. Hadi Salim
Mojatatu Networks
February 2014
High Availability within a
Forwarding and Control Element Separation (ForCES) Network Element
Abstract
This document discusses Control Element (CE) High Availability (HA)
within a Forwarding and Control Element Separation (ForCES) Network
Element (NE). Additionally, this document updates RFC 5810 by
providing new normative text for the Cold Standby High Availability
mechanism.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in Section 2 of RFC 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/rfc7121.
Ogawa, et al. Standards Track [Page 1]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
Copyright Notice
Copyright (c) 2014 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.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 3
1.1. Quantifying Problem Scope . . . . . . . . . . . . . . . . 4
1.2. Definitions . . . . . . . . . . . . . . . . . . . . . . . 5
2. RFC 5810 CE HA Framework . . . . . . . . . . . . . . . . . . 7
2.1. RFC 5810 CE HA Support . . . . . . . . . . . . . . . . . 7
2.1.1. Cold Standby Interaction with the ForCES Protocol . . 8
2.1.2. Responsibilities for HA . . . . . . . . . . . . . . . 10
3. CE HA Hot Standby . . . . . . . . . . . . . . . . . . . . . . 11
3.1. Changes to the FEPO Model . . . . . . . . . . . . . . . . 11
3.2. FEPO Processing . . . . . . . . . . . . . . . . . . . . . 13
4. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 17
5. Security Considerations . . . . . . . . . . . . . . . . . . . 18
6. References . . . . . . . . . . . . . . . . . . . . . . . . . 19
6.1. Normative References . . . . . . . . . . . . . . . . . . 19
6.2. Informative References . . . . . . . . . . . . . . . . . 19
Appendix A. New FEPO Version . . . . . . . . . . . . . . . . . . 20
Ogawa, et al. Standards Track [Page 2]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
1. Introduction
Figure 1 illustrates a ForCES Network Element (NE) controlled by a
set of redundant Control Elements (CEs) with CE1 being active and CE2
and CEn being backups.
-----------------------------------------
| ForCES Network Element |
| +-----------+ |
| | CEn | |
| | (Backup) | |
-------------- Fc | +------------+ +------------+ | |
| CE Manager |--------+-| CE1 |------| CE2 |-+ |
-------------- | | (Active) | Fr | (Backup) | |
| | +-------+--+-+ +---+---+----+ |
| Fl | | | Fp / | |
| | | +---------+ / | |
| | Fp| |/ |Fp |
| | | | | |
| | | Fp /+--+ | |
| | | +-------+ | | |
| | | | | | |
-------------- Ff | --------+--+-- ----+---+----+ |
| FE Manager |--------+-| FE1 | Fi | FE2 | |
-------------- | | |------| | |
| -------------- -------------- |
| | | | | | | | | |
----+--+--+--+----------+--+--+--+-------
| | | | | | | |
| | | | | | | |
Fi/f Fi/f
Fp: CE-FE interface
Fi: FE-FE interface
Fr: CE-CE interface
Fc: Interface between the CE manager and a CE
Ff: Interface between the FE manager and an FE
Fl: Interface between the CE manager and the FE manager
Fi/f: FE external interface
Figure 1: ForCES Architecture
The ForCES architecture allows Forwarding Elements (FEs) to be aware
of multiple CEs but enforces that only one CE be the master
controller. This is known in the industry as 1+N redundancy. The
master CE controls the FEs via the ForCES protocol operating on the
Fp interface. If the master CE becomes faulty, i.e., crashes or
loses connectivity, a backup CE takes over and NE operation
Ogawa, et al. Standards Track [Page 3]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
continues. By definition, the current documented setup is known as
cold standby. The set of CEs controlling an FE is static and is
passed to the FE by the FE Manager (FEM) via the Ff interface and to
each CE by the CE Manager (CEM) in the Fc interface during the pre-
association phase.
From an FE perspective, the operational parameters for a CE set are
defined as components in the FEPO LFB in [RFC5810], Appendix B. In
Section 2.1 of this document, we discuss further details of these
parameters.
It is assumed that the reader is aware of the ForCES architecture to
make sense of the changes being described in this document. This
document provides background information to set the context of the
discussion in Section 3.
At the time of writing, the Fr interface is out of scope for the
ForCES architecture. However, it is expected that organizations
implementing a set of CEs will need to have the CEs communicate to
each other via the Fr interface in order to achieve the
synchronization necessary for controlling the FEs.
The problem scope addressed by this document falls into two areas:
1. To update the description of [RFC5810] with more clarity on how
the current cold standby approach operates within the NE cluster.
2. To describe how to evolve the [RFC5810] cold standby setup to a
hot standby redundancy setup to improve the failover time and NE
availability.
1.1. Quantifying Problem Scope
NE recovery and availability is dependent on several time-sensitive
metrics:
1. How fast the CE plane failure is detected by the FE.
2. How fast a backup CE becomes operational.
3. How fast the FEs associate with the new master CE.
4. How fast the FEs recover their state and become operational.
Each FE state is the collective state of all its instantiated
LFBs.
The design intent of [RFC5810] as well as this document to meet the
above goals is driven by desire for simplicity.
Ogawa, et al. Standards Track [Page 4]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
To quantify the above criteria with the current prescribed ForCES CE
setup in [RFC5810]:
1. How fast the FE side detects a CE failure is left undefined. To
illustrate an extreme scenario, we could have a human operator
acting as the monitoring entity to detect faulty CEs. How fast
such detection happens could be in the range of seconds to days.
A more active monitor on the Fp interface could improve this
detection. Usually, the FE will detect a CE failure either by
the TML if the Fp interface terminates or by the ForCES protocol
by utilizing the ForCES Heartbeat mechanism.
2. How fast the backup CE becomes operational is also currently out
of scope. In the current setup, a backup CE need not be
operational at all (for example, to save power), and therefore it
is feasible for a monitoring entity to boot up a backup CE after
it detects the failure of the master CE. In Section 3 of this
document, we suggest that at least one backup CE be online so as
to improve this metric.
3. How fast an FE associates with a new master CE is also currently
undefined. The cost of an FE connecting and associating adds to
the recovery overhead. As mentioned above, we suggest having at
least one backup CE online. In Section 3, we propose to remove
the connection and association cost on failover by having each FE
associate with all online backup CEs after associating to an
active/master CE. Note that if an FE pre-associates with at
least one backup CE, then the system will be technically
operating in hot standby mode.
4. Finally, how fast an FE recovers its state depends on how much NE
state exists. By the ForCES current definition, the new master
CE assumes zero state on the FE and starts from scratch to update
the FE. So, the larger the state, the longer the recovery.
1.2. Definitions
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].
The following definitions are taken from [RFC3654], [RFC3746], and
[RFC5810]. They are repeated here for convenience as needed, but the
normative definitions are found in the referenced RFCs:
Logical Functional Block (LFB): A template that represents fine-
grained, logically separate aspects of FE processing.
Ogawa, et al. Standards Track [Page 5]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
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 by a CE via the ForCES
protocol.
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.
ForCES Network Element (NE): An entity composed of one or more CEs
and one or more FEs. An NE usually hides its internal
organization from external entities and represents a single point
of management to entities outside the NE.
FE Manager (FEM): A logical entity that operates in the pre-
association phase and is responsible for determining to which
CE(s) an FE should communicate. This process is called CE
discovery and may involve the FE manager learning the capabilities
of available CEs.
CE Manager (CEM): A logical entity that operates in the pre-
association phase and is responsible for determining to which
FE(s) a CE should communicate. This process is called FE
discovery and may involve the CE manager learning the capabilities
of available FEs.
ForCES Protocol: The protocol used for communication between CEs and
FEs. This protocol does not apply to CE-to-CE communication, FE-
to-FE communication, or to communication between FE and CE
managers. The ForCES protocol is a master-slave protocol in which
FEs are slaves and CEs are masters. This protocol includes both
the management of the communication channel (e.g., connection
establishment and heartbeats) and the control messages themselves.
ForCES Protocol Layer (ForCES PL): A layer in the ForCES protocol
architecture that defines the ForCES protocol messages, the
protocol state transfer scheme, and the ForCES protocol
architecture itself (including requirements of ForCES Transport
Mapping Layer (TML) as shown below). Specifications of ForCES PL
are defined in [RFC5810].
ForCES Protocol Transport Mapping Layer (ForCES TML): A layer in the
ForCES protocol architecture that specifically addresses the
protocol message transportation issues, such as how the protocol
messages are mapped to different transport media (like Stream
Ogawa, et al. Standards Track [Page 6]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
Control Transmission Protocol (SCTP), IP, TCP, UDP, ATM, Ethernet,
etc.), and how to achieve and implement reliability, security,
etc.
2. RFC 5810 CE HA Framework
To achieve CE High Availability (HA), FEs and CEs MUST interoperate
per the definition in [RFC5810], which is repeated for contextual
reasons in Section 2.1. It should be noted that in this default
setup, which MUST be implemented by CEs and FEs requiring HA, the Fr
plane is out of scope (and if available, is proprietary to an
implementation).
2.1. RFC 5810 CE HA Support
As mentioned earlier, although there can be multiple redundant CEs,
only one CE actively controls FEs in a ForCES NE. In practice, there
may be only one backup CE. At any moment in time, only one master CE
can control an FE. In addition, the FE connects and associates to
only the master CE. The FE and the CE are aware of the primary and
one or more secondary CEs. This information (primary and secondary
CEs) is configured on the FE and the CE during pre-association by the
FEM and the CEM, respectively.
This section includes a new normative description that updates
[RFC5810] for the Cold Standby High Availability mechanism.
Figure 2 below illustrates the ForCES message sequences that the FE
uses to recover the connection in the currently defined cold standby
scheme.
Ogawa, et al. Standards Track [Page 7]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
FE CE Primary CE Secondary
| | |
| Association Establishment | |
| Capabilities Exchange | |
1 |<------------------------->| |
| | |
| State Update | |
2 |<------------------------->| |
| | |
| | |
| FAILURE |
| |
| Association Establishment, Capabilities Exchange|
3 |<----------------------------------------------->|
| |
| Event Report (primary CE down) |
4 |------------------------------------------------>|
| |
| State Update |
5 |<----------------------------------------------->|
Figure 2: CE Failover for Cold Standby
2.1.1. Cold Standby Interaction with the ForCES Protocol
HA parameterization in an FE is driven by configuring the FE Protocol
Object (FEPO) LFB.
The FEPO Control Element ID (CEID) component identifies the current
master CE, and the component table BackupCEs identifies the
configured backup CEs. The FEPO FE Heartbeat Interval (FEHI), CE
Heartbeat Dead Interval (CEHDI), and CE Heartbeat policy help in
detecting connectivity problems between an FE and CE. The CE
failover policy defines how the FE should react on a detected
failure. The FEObject FEState component [RFC5812] defines the
operational forwarding status and control. The CE can turn off the
FE's forwarding operations by setting the FEState to AdminDisable and
can turn it on by setting it to OperEnable. Note: Section 5.1 of
[RFC5812] has been updated by an erratum ([Err3487]) that describes
the FEState as read-only when it should be read-write.
Figure 3 illustrates the defined state machine that facilitates the
recovery of the connection state.
The FE connects to the CE specified on the FEPO CEID component. If
it fails to connect to the defined CE, it moves it to the bottom of
table BackupCEs and sets its CEID component to be the first CE
retrieved from table BackupCEs. The FE then attempts to associate
Ogawa, et al. Standards Track [Page 8]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
with the CE designated as the new primary CE. The FE continues
through this procedure until it successfully connects to one of the
CEs or until the CE Failover Timeout Interval (CEFTI) expires.
FE tries to associate
+-->-----+
| |
(CE changes master || | |
CE issues Teardown || +---+--------v----+
Lost association) && | Pre-association |
CE failover policy = 0 | (Association |
+------------>-->-->| in +<----+
| | progress) | |
| | | |
| +--------+--------+ |
| CE Association | | CEFTI
| Response V | timer
| +------------------+ | expires
| |FE issues CEPrimaryDown ^
| V |
+-+-----------+ +------+-----+
| | (CE changes master || | Not |
| | CE issues Teardown || | Associated |
| | Lost association) && | +->---+
| Associated | CE failover policy = 1 |(May | FE |
| | | Continue | try v
| |-------->------->------>| Forwarding)| assn|
| | Start CEFTI timer | |-<---+
| | | |
+-------------+ +-------+----+
^ |
| Successful V
| Association |
| Setup |
| (Cancel CEFTI timer) |
+_________________________________________+
FE issues CEPrimaryDown event
Figure 3: FE State Machine Considering HA
There are several events that trigger mastership changes. The master
CE may issue a mastership change (by changing the CEID component), it
may tear down an existing association, or connectivity may be lost
between the CE and FE.
When communication fails between the FE and CE (which can be caused
by either the CE or link failure but is not FE related), either the
TML on the FE will trigger the FE PL regarding this failure or it
Ogawa, et al. Standards Track [Page 9]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
will be detected using the Heartbeat messages between FEs and CEs.
The communication failure, regardless of how it is detected, MUST be
considered to be a loss of association between the CE and
corresponding FE.
If the FE's FEPO CE failover policy is configured to mode 0 (the
default), it will immediately transition to the pre-association
phase. This means that if association is later re-established with a
CE, all FE states will need to be re-created.
If the FE's FEPO CE failover policy is configured to mode 1, it
indicates that the FE will run in HA restart recovery. In such a
case, the FE transitions to the not associated state and the CEFTI
timer [RFC5810] is started. The FE may continue to forward packets
during this state, depending upon the value of the CEFailoverPolicy
component of the FEPO LFB. The FE recycles through any configured
backup CEs in a round-robin fashion. It first adds its primary CE to
the bottom of table BackupCEs and sets its CEID component to be the
first secondary retrieved from table BackupCEs. The FE then attempts
to associate with the CE designated as the new primary CE. If it
fails to re-associate with any CE and the CEFTI expires, the FE then
transitions to the pre-association state and the FE will
operationally bring down its forwarding path (and set the [RFC5812]
FEObject FEState component to OperDisable).
If the FE, while in the not associated state, manages to reconnect to
a new primary CE before the CEFTI expires, it transitions to the
associated state. Once re-associated, the CE may try to synchronize
any state that the FE may have lost during disconnection. How the CE
re-synchronizes such a state is out of scope for the current ForCES
architecture but would typically constitute the issuing of new Config
messages and queries.
An explicit message (a Config message setting the primary CE
component in the ForCES Protocol Object) from the primary CE can also
be used to change the primary CE for an FE during normal protocol
operation. In this case, the FE transitions to the not associated
state and attempts to associate with the new CE.
2.1.2. Responsibilities for HA
TML Level:
1. The TML controls logical connection availability and failover.
2. The TML also controls peer HA management.
Ogawa, et al. Standards Track [Page 10]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
At this level, control of all lower layers, for example, the
transport level (such as IP addresses, Media Access Control (MAC)
addresses, etc.), and associated links going down are the role of the
TML.
PL Level:
All other functionality, including configuring the HA behavior during
setup, Control Element IDs (CE IDs) used to identify primary and
secondary CEs, protocol messages used to report CE failure (event
report), Heartbeat messages used to detect association failure,
messages to change the primary CE (Config), and other HA-related
operations described in Section 2.1, are the PL's responsibility.
To put the two together, if a path to a primary CE is down, the TML
would help recover from a failure by switching over to a backup path,
if one is available. If the CE is totally unreachable, then the PL
would be informed and it would take the appropriate actions described
before.
3. CE HA Hot Standby
In this section, we describe small extensions to the existing scheme
to enable hot standby HA. To achieve hot standby HA, we aim to
improve the specific goals defined in Section 1.1, namely:
o How fast a backup CE becomes operational.
o How fast the FEs associate with the new master CE.
As described in Section 2.1, in the pre-association phase, the FEM
configures the FE to make it aware of all the CEs in the NE. The FEM
MUST configure the FE to make it aware of which CE is the master and
MAY specify any backup CE(s).
3.1. Changes to the FEPO Model
In order for the above to be achievable, there is a need to make a
few changes in the FEPO model. Appendix A contains the xml
definition of the new version 1.1 of the FEPO LFB.
Ogawa, et al. Standards Track [Page 11]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
Changes from version 1 of the FEPO are:
1. Added four new datatypes:
1. CEStatusType -- an unsigned char to specify the status of a
connection with a CE. Special values are:
+ 0 (Disconnected) represents that no connection attempt has
been made with the CE yet
+ 1 (Connected) represents that the FE connection with the
CE at the TML has completed successfully
+ 2 (Associated) represents that the FE has successfully
associated with the CE
+ 3 (IsMaster) represents that the FE has associated with
the CE and is the master of the FE
+ 4 (LostConnection) represents that the FE was associated
with the CE at one point but lost the connection
+ 5 (Unreachable) represents that the FE deems this CE
unreachable, i.e., the FE has tried over a period to
connect to it but has failed
2. HAModeValues -- an unsigned char to specify a selected HA
mode. Special values are:
+ 0 (No HA Mode) represents that the FE is not running in HA
mode
+ 1 (HA Mode - Cold Standby) represents that the FE is in HA
mode cold standby
+ 2 (HA Mode - Hot Standby) represents that the FE is in HA
mode hot standby
3. Statistics -- a complex structure representing the
communication statistics between the FE and CE. The
components are:
+ RecvPackets, representing the packet count received from
the CE
+ RecvBytes, representing the byte count received from the
CE
Ogawa, et al. Standards Track [Page 12]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
+ RecvErrPackets, representing the erroneous packets
received from the CE. This component logs badly formatted
packets as well as good packets sent to the FE by the CE
to set components whilst that CE is not the master.
Erroneous packets are dropped (i.e., not responded to).
+ RecvErrBytes, representing the RecvErrPackets byte count
received from the CE
+ TxmitPackets, representing the packet count transmitted to
the CE
+ TxmitErrPackets, representing the error packet count
transmitted to the CE. Typically, these would be failures
due to communication.
+ TxmitBytes, representing the byte count transmitted to the
CE
+ TxmitErrBytes, representing the byte count of errors from
transmit to the CE
4. AllCEType -- a complex structure constituting the CE IDs,
statistics, and CEStatusType to reflect connection
information for one CE. Used in the AllCE's component array.
2. Appended two new components:
1. Read-only AllCEs to hold the status for all CEs. AllCEs is
an array of the AllCEType.
2. Read-write HAMode of type HAModeValues to carry the HA mode
used by the FE.
3. Added one additional event, PrimaryCEChanged, reporting the new
master CE ID when there is a mastership change.
Since no component from FEPO v1 has been changed, FEPO v1.1 retains
backwards compatibility with CEs that know only version 1.0. These
CEs, however, cannot make use of the HA options that the new FEPO
provides.
3.2. FEPO Processing
The FE's FEPO LFB version 1.1 AllCEs table contains all the CE IDs
with which the FE may connect and associate. The ordering of the CE
IDs in this table defines the priority order in which an FE will
connect to the CEs. This table is provisioned initially from the
Ogawa, et al. Standards Track [Page 13]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
configuration plane (FEM). In the pre-association phase, the first
CE (lowest table index) in the AllCEs table MUST be the first CE with
which the FE will attempt to connect and associate. If the FE fails
to connect and associate with the first listed CE, it will attempt to
connect to the second CE and so forth, and it cycles back to the
beginning of the list until there is a successful association. The
FE MUST associate with at least one CE. Upon a successful
association, a component of the FEPO LFB, specifically the CEID
component, identifies the current associated master CE.
While it would be much simpler to have the FE not respond to any
messages from a CE other than the master, in practice it has been
found to be useful to respond to queries and heartbeats from backup
CEs. For this reason, we allow backup CEs to issue queries to the
FE. Configuration messages (SET/DEL) from backup CEs MUST be dropped
by the FE and logged as received errors.
Asynchronous events that the master CE has subscribed to, as well as
heartbeats, are sent to all associated CEs. Packet redirects
continue to be sent only to the master CE. The Heartbeat Interval,
the CE Heartbeat (CEHB) policy, and the FE Heartbeat (FEHB) policy
are global for all CEs (and changed only by the master CE).
Figure 4 illustrates the state machine that facilitates connection
recovery with HA enabled.
Ogawa, et al. Standards Track [Page 14]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
FE tries to associate
+-->-----+
| |
(CE changes master || | |
CE issues Teardown || +---+--------v----+
Lost association) && | Pre-association |
CE failover policy = 0 | (Association |
+------------>-->-->| in +<----+
| | progress) | |
| | | |
| +--------+--------+ |
| CE Association | | CEFTI
| Response V | timer
| +------------------+ | expires
| |FE issues CEPrimaryDown ^
| |FE issues PrimaryCEChanged ^
| V |
+-+-----------+ +------+-----+
| | (CE changes master || | Not |
| | CE issues Teardown || | Associated |
| | Lost association) && | +->----------+
| Associated | CE failover policy = 1 |(May | find first |
| | | Continue | associated v
| |-------->------->------>| Forwarding)| CE or retry|
| | Start CEFTI timer | | associating|
| | | |-<----------+
| | | |
+----+--------+ +-------+----+
| |
^ Found | associated CE
| or newly | associated CE
| V
| (Cancel CEFTI timer) |
+_________________________________________+
FE issues CEPrimaryDown event
FE issues PrimaryCEChanged event
Figure 4: FE State Machine Considering HA
Once the FE has associated with a master CE, it moves to the post-
association phase (associated state). It is assumed that the master
CE will communicate with other CEs within the NE for the purpose of
synchronization via the CE-CE interface. The CE-CE interface is out
of scope for this document. An election result amongst CEs may
result in the desire to change the mastership to a different
associated CE; at which point, the current assumed master CE will
instruct the FE to use a different master CE.
Ogawa, et al. Standards Track [Page 15]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
FE CE#1 CE#2 ... CE#N
| | | |
| Association Establishment | | |
| Capabilities Exchange | | |
1 |<------------------------->| | |
| | | |
| State Update | | |
2 |<------------------------->| | |
| | | |
| Association Establishment | |
| Capabilities Exchange | |
3I|<-------------------------------------->| |
... ... ... ...
|Association Establishment, Capabilities Exchange |
3N|<----------------------------------------------->|
| | | |
4 |<------------------------->| | |
. . . .
4x|<------------------------->| | |
| FAILURE | |
| | | |
| Event Report (LastCEID changed) | |
5 |--------------------------------------->|------->|
| Event Report (CE#2 is new master) | |
6 |--------------------------------------->|------->|
| | |
7 |<-------------------------------------->| |
. . . .
7x|<-------------------------------------->| |
. . . .
Figure 5: CE Failover for Hot Standby
While in the post-association phase, if the CE failover policy is set
to 1 and the HAMode is set to 2 (hot standby), then the FE, after
successfully associating with the master CE, MUST attempt to connect
and associate with all the CEs of which it is aware. Figure 5, steps
#1 and #2 illustrates the FE associating with CE#1 as the master, and
then proceeding to steps #3I to #3N, it shows the association with
backup CEs CE#2 to CE#N. If the FE fails to connect or associate
with some CEs, the FE MAY flag them as unreachable to avoid
continuous attempts to connect. The FE MAY try to re-associate with
unreachable CEs when possible.
When the master CE, for any reason, is considered to be down, then
the FE MUST try to find the first associated CE from the list of all
CEs in a round-robin fashion.
Ogawa, et al. Standards Track [Page 16]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
If the FE is unable to find an associated FE in its list of CEs, then
it MUST attempt to connect and associate with the first from the list
of all CEs and continue in a round-robin fashion until it connects
and associates with a CE or the CEFTI timer expires.
Once the FE selects an associated CE to use as the new master, the FE
issues a PrimaryCEDown Event Notification to all associated CEs to
notify them that the last primary CE went down (and what its identity
was); a second event, PrimaryCEChanged, identifying the new master CE
is sent as well to identify which CE the reporting FE considers to be
the new master.
In most HA architectures, there exists the possibility of split
brain. However, in our setup, since the FE will never accept any
configuration messages from any other than the master CE, we consider
the FE to be fenced against data corruption from the other CEs that
consider themselves as the master. The split-brain issue becomes
mostly a CE-CE communication problem, which is considered to be out
of scope.
By virtue of having multiple CE connections, the FE switchover to a
new master CE will be relatively much faster. The overall effect is
improving the NE recovery time in case of communication failure or
faults of the master CE. This satisfies the requirement we set to
fulfill.
4. IANA Considerations
Following the policies outlined in "Guidelines for Writing an IANA
Considerations Section in RFCs" [RFC5226], the "Logical Functional
Block (LFB) Class Names and Class Identifiers" namespace has been
updated.
A new column, LFB version, has been added to the table after the LFB
Class Name. The table now reads as follows:
+----------------+------------+-----------+-------------+-----------+
| LFB Class | LFB Class | LFB | Description | Reference |
| Identifier | Name | Version | | |
+----------------+------------+-----------+-------------+-----------+
Logical Functional Block (LFB) Class Names and Class Identifiers
The rules defined in [RFC5812] apply, with the addition that entries
must provide the LFB version as a string.
Ogawa, et al. Standards Track [Page 17]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
Upon publication of this document, all current entries are assigned a
value of 1.0.
New versions of already defined LFBs MUST NOT remove the previous
version entries.
It would make sense to have LFB versions appear in sequence in the
registry. The table SHOULD be sorted, and the sorting should be done
by Class ID first and then by version.
This document introduces the FE Protocol Object version 1.1 as
follows:
+------------+----------+---------+---------------------+-----------+
| LFB Class | LFB | LFB | Description | Reference |
| Identifier | Class | Version | | |
| | Name | | | |
+------------+----------+---------+---------------------+-----------+
| 2 | FE | 1.1 | Defines parameters | [RFC7121] |
| | Protocol | | for the ForCES | |
| | Object | | protocol operation | |
+------------+----------+---------+---------------------+-----------+
Logical Functional Block (LFB) Class Names and Class Identifiers
5. Security Considerations
Security considerations, as defined in Section 9 of [RFC5810], apply
to securing each CE-FE communication. Multiple CEs associated with
the same FE still require the same procedure to be followed on a per-
association basis.
It should be noted that since the FE is initiating the association
with a CE, a CE cannot initiate association with the FE and such
messages will be dropped. Thus, the FE is secured from rogue CEs
that are attempting to associate with it.
CE implementers should have in mind that once associated, the FE
cannot distinguish whether the CE has been compromised or has been
malfunctioning while not losing connectivity. Securing the CE is out
of scope of this document.
While the CE-CE plane is outside the current scope of ForCES, we
recognize that it may be subjected to attacks that may affect the CE-
FE communication.
Ogawa, et al. Standards Track [Page 18]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
The following considerations should be made:
1. Secure communication channels should be used between CEs for
coordination and keeping of state to at least avoid connection of
malicious CEs.
2. The master CE should take into account DoS and Distributed
Denial-of-Service (DDoS) attacks from malicious or malfunctioning
CEs.
3. CEs should take into account the split-brain issue. There are
currently two fail-safes in the FE: Firstly, the FE has the CEID
component that denotes which CE is the master. Secondly, the FE
does not allow BackupCEs to configure the FE. However, backup
CEs that consider that the master CE has dropped should, as
masters themselves, first do a sanity check and query the FE CEID
component.
6. References
6.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC5226] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", BCP 26, RFC 5226,
May 2008.
[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.
[RFC5812] Halpern, J. and J. Hadi Salim, "Forwarding and Control
Element Separation (ForCES) Forwarding Element Model", RFC
5812, March 2010.
6.2. Informative References
[Err3487] RFC Errata, Errata ID 3487, RFC 5812,
<http://www.rfc-editor.org>.
[RFC3654] Khosravi, H. and T. Anderson, "Requirements for Separation
of IP Control and Forwarding", RFC 3654, November 2003.
Ogawa, et al. Standards Track [Page 19]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
[RFC3746] Yang, L., Dantu, R., Anderson, T., and R. Gopal,
"Forwarding and Control Element Separation (ForCES)
Framework", RFC 3746, April 2004.
Ogawa, et al. Standards Track [Page 20]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
Appendix A. New FEPO Version
The xml has been validated against the schema defined in [RFC5812].
<LFBLibrary xmlns="urn:ietf:params:xml:ns:forces:lfbmodel:1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="lfb-schema.xsd" provides="FEPO">
<!-- XXX -->
<dataTypeDefs>
<dataTypeDef>
<name>CEHBPolicyValues</name>
<synopsis>
The possible values of the CE Heartbeat policy
</synopsis>
<atomic>
<baseType>uchar</baseType>
<specialValues>
<specialValue value="0">
<name>CEHBPolicy0</name>
<synopsis>
The CE will send heartbeats to the FE
every CEHDI timeout if no other messages
have been sent since.
</synopsis>
</specialValue>
<specialValue value="1">
<name>CEHBPolicy1</name>
<synopsis>
The CE will not send heartbeats to the FE
</synopsis>
</specialValue>
</specialValues>
</atomic>
</dataTypeDef>
<dataTypeDef>
<name>FEHBPolicyValues</name>
<synopsis>
The possible values of the FE Heartbeat policy
</synopsis>
<atomic>
<baseType>uchar</baseType>
<specialValues>
<specialValue value="0">
<name>FEHBPolicy0</name>
<synopsis>
The FE will not generate any heartbeats to the CE
</synopsis>
</specialValue>
Ogawa, et al. Standards Track [Page 21]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
<specialValue value="1">
<name>FEHBPolicy1</name>
<synopsis>
The FE generates heartbeats to the CE every FEHI
if no other messages have been sent to the CE.
</synopsis>
</specialValue>
</specialValues>
</atomic>
</dataTypeDef>
<dataTypeDef>
<name>FERestartPolicyValues</name>
<synopsis>
The possible values of the FE restart policy
</synopsis>
<atomic>
<baseType>uchar</baseType>
<specialValues>
<specialValue value="0">
<name>FERestartPolicy0</name>
<synopsis>
The FE restarts its state from scratch
</synopsis>
</specialValue>
</specialValues>
</atomic>
</dataTypeDef>
<dataTypeDef>
<name>HAModeValues</name>
<synopsis>
The possible values of HA modes
</synopsis>
<atomic>
<baseType>uchar</baseType>
<specialValues>
<specialValue value="0">
<name>NoHA</name>
<synopsis>
The FE is not running in HA mode
</synopsis>
</specialValue>
<specialValue value="1">
<name>ColdStandby</name>
<synopsis>
The FE is running in HA mode cold standby
</synopsis>
</specialValue>
<specialValue value="2">
Ogawa, et al. Standards Track [Page 22]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
<name>HotStandby</name>
<synopsis>
The FE is running in HA mode hot standby
</synopsis>
</specialValue>
</specialValues>
</atomic>
</dataTypeDef>
<dataTypeDef>
<name>CEFailoverPolicyValues</name>
<synopsis>
The possible values of the CE failover policy
</synopsis>
<atomic>
<baseType>uchar</baseType>
<specialValues>
<specialValue value="0">
<name>CEFailoverPolicy0</name>
<synopsis>
The FE should stop functioning immediately and
transition to the FE OperDisable state
</synopsis>
</specialValue>
<specialValue value="1">
<name>CEFailoverPolicy1</name>
<synopsis>
The FE should continue forwarding even without an
associated CE for CEFTI. The FE goes to FE
OperDisable when the CEFTI expires and there is no
association. Requires graceful restart support.
</synopsis>
</specialValue>
</specialValues>
</atomic>
</dataTypeDef>
<dataTypeDef>
<name>FEHACapab</name>
<synopsis>
The supported HA features
</synopsis>
<atomic>
<baseType>uchar</baseType>
<specialValues>
<specialValue value="0">
<name>GracefullRestart</name>
<synopsis>
The FE supports graceful restart
</synopsis>
Ogawa, et al. Standards Track [Page 23]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
</specialValue>
<specialValue value="1">
<name>HA</name>
<synopsis>
The FE supports HA
</synopsis>
</specialValue>
</specialValues>
</atomic>
</dataTypeDef>
<dataTypeDef>
<name>CEStatusType</name>
<synopsis>Status values. Status for each CE</synopsis>
<atomic>
<baseType>uchar</baseType>
<specialValues>
<specialValue value="0">
<name>Disconnected</name>
<synopsis>No connection attempt with the CE yet
</synopsis>
</specialValue>
<specialValue value="1">
<name>Connected</name>
<synopsis>The FE connection with the CE at the TML
has been completed
</synopsis>
</specialValue>
<specialValue value="2">
<name>Associated</name>
<synopsis>The FE has associated with the CE
</synopsis>
</specialValue>
<specialValue value="3">
<name>IsMaster</name>
<synopsis>The CE is the master (and associated)
</synopsis>
</specialValue>
<specialValue value="4">
<name>LostConnection</name>
<synopsis>The FE was associated with the CE but
lost the connection
</synopsis>
</specialValue>
<specialValue value="5">
<name>Unreachable</name>
<synopsis>The CE is deemed as unreachable by the FE
</synopsis>
</specialValue>
Ogawa, et al. Standards Track [Page 24]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
</specialValues>
</atomic>
</dataTypeDef>
<dataTypeDef>
<name>StatisticsType</name>
<synopsis>Statistics Definition</synopsis>
<struct>
<component componentID="1">
<name>RecvPackets</name>
<synopsis>Packets received</synopsis>
<typeRef>uint64</typeRef>
</component>
<component componentID="2">
<name>RecvErrPackets</name>
<synopsis>Packets received from the CE with errors
</synopsis>
<typeRef>uint64</typeRef>
</component>
<component componentID="3">
<name>RecvBytes</name>
<synopsis>Bytes received from the CE</synopsis>
<typeRef>uint64</typeRef>
</component>
<component componentID="4">
<name>RecvErrBytes</name>
<synopsis>Bytes received from the CE in Error</synopsis>
<typeRef>uint64</typeRef>
</component>
<component componentID="5">
<name>TxmitPackets</name>
<synopsis>Packets transmitted to the CE</synopsis>
<typeRef>uint64</typeRef>
</component>
<component componentID="6">
<name>TxmitErrPackets</name>
<synopsis>
Packets transmitted to the CE that
incurred errors
</synopsis>
<typeRef>uint64</typeRef>
</component>
<component componentID="7">
<name>TxmitBytes</name>
<synopsis>Bytes transmitted to the CE</synopsis>
<typeRef>uint64</typeRef>
</component>
<component componentID="8">
<name>TxmitErrBytes</name>
Ogawa, et al. Standards Track [Page 25]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
<synopsis>
Bytes transmitted to the CE that
incurred errors
</synopsis>
<typeRef>uint64</typeRef>
</component>
</struct>
</dataTypeDef>
<dataTypeDef>
<name>AllCEType</name>
<synopsis>Table type for the AllCE component</synopsis>
<struct>
<component componentID="1">
<name>CEID</name>
<synopsis>ID of the CE</synopsis>
<typeRef>uint32</typeRef>
</component>
<component componentID="2">
<name>Statistics</name>
<synopsis>Statistics per the CE</synopsis>
<typeRef>StatisticsType</typeRef>
</component>
<component componentID="3">
<name>CEStatus</name>
<synopsis>Status of the CE</synopsis>
<typeRef>CEStatusType</typeRef>
</component>
</struct>
</dataTypeDef>
</dataTypeDefs>
<LFBClassDefs>
<LFBClassDef LFBClassID="2">
<name>FEPO</name>
<synopsis>
The FE Protocol Object, with new CEHA
</synopsis>
<version>1.1</version>
<components>
<component componentID="1" access="read-only">
<name>CurrentRunningVersion</name>
<synopsis>Currently running the ForCES version</synopsis>
<typeRef>uchar</typeRef>
</component>
<component componentID="2" access="read-only">
<name>FEID</name>
<synopsis>Unicast FEID</synopsis>
<typeRef>uint32</typeRef>
</component>
Ogawa, et al. Standards Track [Page 26]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
<component componentID="3" access="read-write">
<name>MulticastFEIDs</name>
<synopsis>
The table of all multicast IDs
</synopsis>
<array type="variable-size">
<typeRef>uint32</typeRef>
</array>
</component>
<component componentID="4" access="read-write">
<name>CEHBPolicy</name>
<synopsis>
The CE Heartbeat policy
</synopsis>
<typeRef>CEHBPolicyValues</typeRef>
</component>
<component componentID="5" access="read-write">
<name>CEHDI</name>
<synopsis>
The CE Heartbeat Dead Interval in milliseconds
</synopsis>
<typeRef>uint32</typeRef>
</component>
<component componentID="6" access="read-write">
<name>FEHBPolicy</name>
<synopsis>
The FE Heartbeat policy
</synopsis>
<typeRef>FEHBPolicyValues</typeRef>
</component>
<component componentID="7" access="read-write">
<name>FEHI</name>
<synopsis>
The FE Heartbeat Interval in milliseconds
</synopsis>
<typeRef>uint32</typeRef>
</component>
<component componentID="8" access="read-write">
<name>CEID</name>
<synopsis>
The primary CE this FE is associated with
</synopsis>
<typeRef>uint32</typeRef>
</component>
<component componentID="9" access="read-write">
<name>BackupCEs</name>
Ogawa, et al. Standards Track [Page 27]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
<synopsis>
The table of all backup CEs other than the
primary
</synopsis>
<array type="variable-size">
<typeRef>uint32</typeRef>
</array>
</component>
<component componentID="10" access="read-write">
<name>CEFailoverPolicy</name>
<synopsis>
The CE failover policy
</synopsis>
<typeRef>CEFailoverPolicyValues</typeRef>
</component>
<component componentID="11" access="read-write">
<name>CEFTI</name>
<synopsis>
The CE Failover Timeout Interval in milliseconds
</synopsis>
<typeRef>uint32</typeRef>
</component>
<component componentID="12" access="read-write">
<name>FERestartPolicy</name>
<synopsis>
The FE restart policy
</synopsis>
<typeRef>FERestartPolicyValues</typeRef>
</component>
<component componentID="13" access="read-write">
<name>LastCEID</name>
<synopsis>
The primary CE this FE was last associated
with
</synopsis>
<typeRef>uint32</typeRef>
</component>
<component componentID="14" access="read-write">
<name>HAMode</name>
<synopsis>
The HA mode used
</synopsis>
<typeRef>HAModeValues</typeRef>
</component>
<component componentID="15" access="read-only">
<name>AllCEs</name>
<synopsis>The table of all CEs</synopsis>
<array type="variable-size">
Ogawa, et al. Standards Track [Page 28]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
<typeRef>AllCEType</typeRef>
</array>
</component>
</components>
<capabilities>
<capability componentID="30">
<name>SupportableVersions</name>
<synopsis>
The table of ForCES versions that FE supports
</synopsis>
<array type="variable-size">
<typeRef>uchar</typeRef>
</array>
</capability>
<capability componentID="31">
<name>HACapabilities</name>
<synopsis>
The table of HA capabilities the FE supports
</synopsis>
<array type="variable-size">
<typeRef>FEHACapab</typeRef>
</array>
</capability>
</capabilities>
<events baseID="61">
<event eventID="1">
<name>PrimaryCEDown</name>
<synopsis>
The primary CE has changed
</synopsis>
<eventTarget>
<eventField>LastCEID</eventField>
</eventTarget>
<eventChanged/>
<eventReports>
<eventReport>
<eventField>LastCEID</eventField>
</eventReport>
</eventReports>
</event>
<event eventID="2">
<name>PrimaryCEChanged</name>
<synopsis>A new primary CE has been selected
</synopsis>
<eventTarget>
<eventField>CEID</eventField>
</eventTarget>
<eventChanged/>
Ogawa, et al. Standards Track [Page 29]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
<eventReports>
<eventReport>
<eventField>CEID</eventField>
</eventReport>
</eventReports>
</event>
</events>
</LFBClassDef>
</LFBClassDefs>
</LFBLibrary>
Ogawa, et al. Standards Track [Page 30]
^L
RFC 7121 ForCES Intra-NE High Availability February 2014
Authors' Addresses
Kentaro Ogawa
NTT Corporation
3-9-11 Midori-cho
Musashino-shi, Tokyo 180-8585
Japan
EMail: k.ogawa@ntt.com
Weiming Wang
Zhejiang Gongshang University
18 Xuezheng Str., Xiasha University Town
Hangzhou 310018
P.R. China
Phone: +86 571 28877751
EMail: wmwang@zjsu.edu.cn
Evangelos Haleplidis
University of Patras
Department of Electrical and Computer Engineering
Patras 26500
Greece
EMail: ehalep@ece.upatras.gr
Jamal Hadi Salim
Mojatatu Networks
Suite 400, 303 Moodie Dr.
Ottawa, Ontario K2H 9R4
Canada
EMail: hadi@mojatatu.com
Ogawa, et al. Standards Track [Page 31]
^L
|