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
|
Network Working Group B. Thomas
Request for Comments: 5038 Cisco Systems, Inc.
Category: Informational L. Andersson
Acreo AB
October 2007
The Label Distribution Protocol (LDP) Implementation Survey Results
Status of This Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Abstract
Multiprotocol Label Switching (MPLS), described in RFC 3031, is a
method for forwarding packets that uses short, fixed-length values
carried by packets, called labels, to determine packet next hops. A
fundamental concept in MPLS is that two Label Switching Routers
(LSRs) must agree on the meaning of the labels used to forward
traffic between and through them. This common understanding is
achieved by using a set of procedures, called a Label Distribution
Protocol (as described in RFC 3036) , by which one LSR informs
another of label bindings it has made. One such protocol, called
LDP, is used by LSRs to distribute labels to support MPLS forwarding
along normally routed paths. This document reports on a survey of
LDP implementations conducted in August 2002 as part of the process
of advancing LDP from Proposed to Draft Standard.
Table of Contents
1. Introduction ....................................................2
1.1. The LDP Survey Form ........................................2
1.2. LDP Survey Highlights ......................................3
2. Survey Results for LDP Features .................................4
3. Security Considerations .........................................7
4. References ......................................................7
Appendix A. Full LDP Survey Results ................................8
Appendix B. LDP Implementation Survey Form ........................13
Thomas & Andersson Informational [Page 1]
^L
RFC 5038 LDP Implementation Survey Results October 2007
1. Introduction
Multiprotocol Label Switching (MPLS) is a method for forwarding
packets that uses short fixed-length values carried by packets,
called labels, to determine packet next hops [RFC3031]. A
fundamental MPLS concept is that two Label Switching Routers (LSRs)
must agree on the meaning of the labels used to forward traffic
between and through them. This common understanding is achieved by
using a set of procedures by which one LSR informs another of label
bindings it has made.
Label Distribution Protocol (LDP) specifies a set of procedures LSRs
use to distribute labels to support MPLS forwarding along normally
routed paths. LDP was specified originally by [RFC3036]. The
current LDP specification is [RFC5036], which obsoletes [RFC3036].
[RFC3037] describes the applicability of LDP.
This document reports on a survey of LDP implementations conducted in
August 2002 as part of the process of advancing LDP from Proposed to
Draft standard.
This section highlights some of the survey results. Section 2
presents the survey results for LDP features, and Appendix A presents
the survey results in full. Appendix B contains a copy of the survey
form.
1.1. The LDP Survey Form
The LDP implementation survey requested the following information
about LDP implementation:
- Responding organization. Provisions were made to accommodate
organizations that wished to respond anonymously.
- The status, availability, and origin of the LDP implementation.
- The LDP features implemented and for each whether it was tested
against an independent implementation. The survey form listed
each LDP feature defined by [RFC3036] and requested one of the
following as the status of the feature:
t: Tested against another independent implementation
y: Implemented but not tested against independent
implementation
n: Not implemented
x: Not applicable to this type of implementation
Thomas & Andersson Informational [Page 2]
^L
RFC 5038 LDP Implementation Survey Results October 2007
In addition, for the 'n' status, the responder could optionally
provide the following additional information:
s: RFC specification inadequate, unclear, or confusing
u: Utility of feature unclear
r: Feature not required for feature set implemented
This document uses the following conventions for reporting survey
results for a feature:
At By Cn indicates:
- A responders implemented the feature and tested it against
another independent implementation (t)
- B responders implemented the feature but have not tested it
against an independent implemented (y)
- C responders did not implement the feature (n)
(Ds Eu Fr) indicates optional responses:
- D responders thought the RFC 3036 specification of the feature
inadequate, unclear, or confusing (s).
- E responders thought the utility of the feature unclear (u).
- F responders considered the feature not required for the
feature set implemented (combines x and r).
1.2. LDP Survey Highlights
This section presents some highlights from the implementation survey.
- There were 12 responses to the survey, 2 of which were
anonymous. At the time of the survey, 10 of the implementation
were available as products and 2 were in beta test. Eleven of
the implementations were available for sale; the remaining
implementation had been done by a company no longer in
business.
- Seven implementations were independently written from the RFC
3036 specification. Four implementations combined purchased or
free code with code written by the responder.
One of the implementations was fully purchased code ported to
the vendor's platform.
- Every LDP feature in the survey questionnaire was implemented
by at least 2 respondents.
Thomas & Andersson Informational [Page 3]
^L
RFC 5038 LDP Implementation Survey Results October 2007
- Each of the 8 LDP Label Distribution Modes implemented and
tested:
8t 2y 2n DU, Ord Cntl, Lib reten
7t 1y 4n DU, Ind Cntl, Lib reten
7t 1y 4n DoD Ord Cntl, Cons reten
6t 1y 5n DoD, Ind Cntl, Cons reten
6t 1y 5n DU, Ord Cntl, Cons reten
6t 0y 6n DU, Ind Cntl, Cons reten
4t 3y 5n DoD, Ord Cntl, Lib reten
4t 2y 6n DoD, Ind Cntl, Lib reten
- Platform and Interface Label Spaces were both widely supported.
12t 0y 0n Per platform
7t 1y 4n Per interface
- LDP Basic and Targeted Sessions were both widely supported.
12t 0y 0n Basic/Directly Connected
11t 1y 0n Targeted
- The TCP MD5 Option for LDP session TCP connections was not
widely implemented.
3t 1y 8n
2. Survey Results for LDP Features
This section presents the survey results for LDP features using the
notational convention described in Section 1.2. It omits the
optional status responses (s, u, r); complete results may be found in
Appendix A.
Feature
Survey Result
Interface types
12t 0y 0n Packet
2t 3y 7n Frame Relay
6t 2y 4n ATM
Label Spaces
12t 0y 0n Per platform
7t 1y 4n Per interface
LDP Discovery
12t 0y 0n Basic
11t 1y 0n Targeted
Thomas & Andersson Informational [Page 4]
^L
RFC 5038 LDP Implementation Survey Results October 2007
LDP Sessions
12t 0y 0n Directly Connected
11t 1y 0n Targeted
LDP Modes
7t 1y 4n DU, Ind Cntl, Lib reten
8t 2y 2n DU, Ord Cntl, Lib reten
6t 0y 6n DU, Ind Cntl, Cons reten
6t 1y 5n DU, Ord Cntl Cons reten
4t 2y 6n DoD, Ind Cntl, Lib reten
4t 3y 5n DoD, Ord Cntl, Lib reten
6t 1y 5n DoD, Ind Cntl, Cons reten
7t 1y 4n DoD, Ord Cntl, Cons reten
Loop Detection
9t 2y 1n
TCP MD5 Option
3t 1y 8n
LDP TLVs
7t 4y 0n U-bit
7t 4y 0n F-bit
12t 0y 0n FEC TLV
6t 5y 1n Wildcard
12t 0y 0n Prefix
10t 0y 2n Host
12t 0y 0n Address List TLV
10t 1y 1n Hop Count TLV
9t 2y 1n Path Vector TLV
12t 0y 0n Generic Label TLV
6t 2y 4n ATM Label TLV
2t 3y 7n Frame Relay Label TLV
12t 0y 0n Status TLV
9t 3y 0n Extended Status TLV
6t 4y 2n Returned PDU TLV
6t 4y 2n Returned Message TLV
12t 0y 0n Common Hello Param TLV
12t 0y 0n T-bit
11t 0y 1n R-bit
11t 1y 0n Hold Time
12t 0y 0n IPv4 Transport Addr TLV
7t 2y 3n Config Sequence Num TLV
1t 1y 1n IPv6 Transport Addr TLV
12t 0y 0n Common Session Param TLV
12t 0y 0n KeepAlive Time
11t 0y 1n PVLim
11t 1y 0n PDU Max Length
6t 2y 2n ATM Session Param TLV
M values
5t 3y 4n 0 No Merge
3t 3y 6n 1 VP Merge
Thomas & Andersson Informational [Page 5]
^L
RFC 5038 LDP Implementation Survey Results October 2007
5t 3y 4n 2 VC Merge
3t 3y 6n 3 VP & VC Merge
6t 2y 4n D-bit
6t 2y 4n ATM Label Range Component
2t 3y 7n FR Session Param TLV
M values
2t 3y 7n 0 No Merge
2t 3y 7n 1 Merge
2t 3y 7n D-bit
2t 3y 7n FR Label Range Component
10t 0y 2n Label Request Msg ID TLV
2t 5y 5n Vendor-Private TLV
1t 5y 6n Experimental TLV
LDP Messages
12t 0y 0n Notification Msg
12t 0y 0n Hello Msg
12t 0y 0n Initialization Msg
12t 0y 0n KeepAlive Msg
12t 0y 0n Address Msg
12t 0y 0n Address Withdraw Msg
12t 0y 0n Label Mapping Msg
10t 0y 2n Label Request Msg Id TLV
10t 1y 1n Hop Count TLV
10t 1y 1n Path Vect TLV
9t 0y 3n Label Request Msg
9t 0y 3n Hop Count TLV
9t 0y 3n Path Vect TLV
12t 0y 0n Label Withdraw Msg
12t 0y 0n Label TLV
11t 0y 1n Label Release Msg
10t 1y 1n Label TLV
9t 2y 1n Label Abort Req Msg
2t 5y 5n Vendor-Private Msg
1t 5y 6n Experimental Msg
LDP Status Codes
9t 3y 0n Success
8t 4y 0n Bad LDP Id
7t 5y 0n Bad Ptcl Version
7t 5y 0n Bad PDU Length
7t 5y 0n Unknown Message Type
7t 5y 0n Bad Message Length
7t 4y 0n Unknown TLV
7t 5y 0n Bad TLV length
7t 5y 0n Malformed TLV Value
11t 1y 0n Hold Timer Expired
11t 1y 0n Shutdown
10t 1y 1n Loop Detected
7t 5y 0n Unknown FEC
Thomas & Andersson Informational [Page 6]
^L
RFC 5038 LDP Implementation Survey Results October 2007
11t 1y 0n No Route
9t 3y 0n No Label Resources
8t 3y 1n Label Resources Available
Session Rejected
7t 5y 0n No Hello
9t 2y 1n Param Advert Mode
9t 2y 1n Param PDUMax Len
8t 3y 1n Param Label Range
7t 5y 0n Bad KA Time
11t 1y 0n KeepAlive Timer Expired
9t 1y 2n Label Request Aborted
6t 5y 1n Missing Message Params
7t 5y 0n Unsupported Addr Family
7t 5y 0n Internal Error
3. Security Considerations
This document is a survey of existing LDP implementations; it does
not specify any protocol behavior. Thus, security issues introduced
by the document are not discussed.
4. Informative References
[RFC3031] Rosen, E., Viswanathan, A., and R. Callon, "Multiprotocol
Label Switching Architecture", RFC 3031, January 2001.
[RFC3036] Andersson, L., Doolan, P., Feldman, N., Fredette, A., and
B. Thomas, "LDP Specification", RFC 3036, January 2001.
[RFC3037] Thomas, B. and E. Gray, "LDP Applicability", RFC 3037,
January 2001.
[RFC5036] Andersson, L., Ed., Minei, I., Ed., and B. Thomas, Ed.,
"LDP Specification", RFC 5036, October 2007.
Thomas & Andersson Informational [Page 7]
^L
RFC 5038 LDP Implementation Survey Results October 2007
Appendix A. Full LDP Survey Results
LDP Implementation Survey Form (V 1.0)
=======================================================================
A. General Information
Responders:
Anonymous: 2
Public: 10
Agilent Technologies
Celox Networks, Inc.
Cisco Systems, Inc.
Data Connection Ltd.
NetPlane Systems, Inc
Redback Networks
Riverstone Networks
Trillium, An Intel Company
Vivace Networks, Inc.
Wipro Technologies
Thomas & Andersson Informational [Page 8]
^L
RFC 5038 LDP Implementation Survey Results October 2007
=======================================================================
B. LDP Implementation Status, Availability, Origin
Status:
[ ] Development
[ ] Alpha
[ 2] Beta
[10] Product
[ ] Other (describe):
Availability:
[ ] Public and free
[ ] Only to selected organizations/companies but free
[11] On sale
[ ] For internal company use only
[ 1] Other:
Implementation based on: (check all that apply)
[ 1] Purchased code
(please list source if possible)
[ ] Free code
(please list source if possible)
[ 7] Internal implementation
(no outside code, just from specs)
[ 4] Internal implementation on top of purchased
or free code
Thomas & Andersson Informational [Page 9]
^L
RFC 5038 LDP Implementation Survey Results October 2007
=======================================================================
C. LDP Feature Survey
For each feature listed, please indicate the status of the
implementation using one of the following:
't' tested against another independent implementation
'y' implemented but not tested against independent
implementation
'n' not implemented
'x' not applicable to this type of implementation
Optional: For 'n' status, indicate reason for not implementing
using one of the following:
's' RFC specification inadequate, unclear, or confusing
'u' utility of feature unclear
'r' feature not required for feature set implemented
Feature RFC 3036 Section(s)
Survey Result
Interface types 2.2.1, 2.5.3,
2.8.2, 3.4.2
12t 0y 0n Packet
2t 3y 7n(3r 1x) Frame Relay
6t 2y 4n(3r) ATM
Label Spaces 2.2.1, 2.2.2
12t 0y 0n Per platform
7t 1y 4n(4r) Per interface
LDP Discovery 2.4
12t 0y 0n Basic 2.4.1
11t 1y 0n Targeted 2.4.2
LDP Sessions 2.2.3
12t 0y 0n Directly Connected --
11t 1y 0n Targeted 2.3
LDP Modes 2.6
7t 1y 4n(2u 1r) DU, Ind cntl, Lib reten 2.6
8t 2y 2n(1r) DU, Ord cntl, Lib reten 2.6
6t 0y 6n(2u 2r) DU, Ind cntl, Cons reten 2.6
6t 1y 5n(1u 2r) DU, Ord cntl, Cons reten 2.6
4t 2y 6n(2u 2r) DoD, Ind cntl, Lib reten 2.6
4t 3y 5n(2r) DoD, Ord cntl, Lib reten 2.6
6t 1y 5n(2u 2r) DoD, Ind cntl, Cons reten 2.6
7t 1y 4n(1u 2r) DoD, Ord cntl, Cons reten 2.6
Loop Detection 2.8
9t 2y 1n
Thomas & Andersson Informational [Page 10]
^L
RFC 5038 LDP Implementation Survey Results October 2007
TCP MD5 Option 2.9
3t 1y 8n(1u 1r 1x)
LDP TLVs 3.3, 3.4, throughout
7t 4y 0n(1 noreply) U-bit 3.3
7t 4y 0n(1 noreply) F-bit 3.3
FEC TLV 1, 2.1, 3.4.1
6t 5y 1n(1r) Wildcard 3.4.1
12t 0y 0n Prefix 3.4.1
10t 0y 2n(s1 1u 1r) Host 2.1, 3.4.1
12t 0y 0n Address List TLV 3.4.3
10t 1y 1n Hop Count TLV 3.4.4
9t 2y 1n Path Vector TLV 3.4.5
12t 0y 0n Generic Label TLV 3.4.2.1
6t 2y 4n(2r) ATM Label TLV 3.4.2.2
2t 3y 7n(1u 2r 1x) Frame Relay Label TLV 3.4.2.3
12t 0y 0n Status TLV 3.4.6
9t 3y 0n Extended Status TLV 3.5.1
6t 4y 2n Returned PDU TLV 3.5.1
6t 4y 2n Returned Message TLV 3.5.1
12t 0y 0n Common Hello Param TLV 3.5.2
12t 0y 0n T-bit 3.5.2
11t 0y 1n R-bit 3.5.2
11t 1y 0n Hold Time 3.5.2
12t 0y 0n IPv4 Transport Addr TLV 3.5.2
7t 2y 3n Config Sequence Num TLV 3.5.2
1t 1y 1n(1u 4r 1x) IPv6 Transport Addr TLV 3.5.2
12t 0y 0n Common Session Param TLV 3.5.3
12t 0y 0n KeepAlive Time 3.5.3
11t 0y 1n PVLim 3.5.3
11t 1y 0n PDU Max Length 3.5.3
6t 2y 2n(1r 1x) ATM Session Param TLV 3.5.3
M values
5t 3y 4n(1r 1x) 0 No Merge 3.5.3
3t 3y 6n(s 1 1r 1x) 1 VP Merge 3.5.3
5t 3y 4n(1r 1x) 2 VC Merge 3.5.3
3t 3y 6n(s1 1r 1x) 3 VP & VC Merge 3.5.3
6t 2y 4n(1r 1x) D-bit 3.5.3
6t 2y 4n(1r 1x) ATM Label Range 3.5.3
Component
2t 3y 7n(1u 1r 2x) FR Session Param TLV 3.5.3
M values
2t 3y 7n(1u 1r 2x) 0 No Merge 3.5.3
2t 3y 7n 1 Merge 3.5.3
2t 3y 7n(1u 1r 2x) D-bit 3.5.3
2t 3y 7n(1u 1r 2x) FR Label Range 3.5.3
Component
10t 0y 2n Label Request Msg Id TLV 3.5.7
2t 5y 5n(1u 1r) Vendor-Private TLV 3.6.1.1
Thomas & Andersson Informational [Page 11]
^L
RFC 5038 LDP Implementation Survey Results October 2007
1t 5y 6n(2r) Experimental TLV 3.6.2
LDP Messages 3.5, throughout
12t 0y 0n Notification Msg 3.5.1
12t 0y 0n Hello Msg 3.5.2
12t 0y 0n Initialization Msg 3.5.3
12t 0y 0n KeepAlive Msg 3.5.4
12t 0y 0n Address Msg 3.5.5
12t 0y 0n Address Withdraw Msg 3.5.6
12t 0y 0n Label Mapping Msg 3.5.7
10t 0y 2n(1r) Label Request Msg Id TLV 3.5.7
10t 1y 1n Hop Count TLV 3.5.7
10t 1y 1n Path Vect TLV 3.5.7
9t 0y 3n(1x) Label Request Msg 3.5.8
9t 0y 3n(1x) Hop Count TLV 3.5.8
9t 0y 3n(1x) Path Vect TLV 3.5.8
12t 0y 0n Label Withdraw Msg 3.5.10
12t 0y 0n Label TLV 3.5.10
11t 0y 1n Label Release Msg 3.5.11
10t 1y 1n Label TLV 3.5.11
9t 2y 1n Label Abort Req Msg 3.5.9
2t 5y 5n(1u 1r) Vendor-Private Msg 3.6.1.2
1t 5y 6n(2r) Experimental Msg 3.6.2
LDP Status Codes 3.4.6
9t 3y 0n Success 3.4.6, 3.9
8t 4y 0n Bad LDP Id 3.5.1.2.1
7t 5y 0n Bad Ptcl Version 3.5.1.2.1
7t 5y 0n Bad PDU Length 3.5.1.2.1
7t 5y 0n Unknown Message Type 3.5.1.2.1
7t 5y 0n Bad Message Length 3.5.1.2.1
7t 4y 0n(1 noreply) Unknown TLV 3.5.1.2.2
7t 5y 0n Bad TLV Length 3.5.1.2.2
7t 5y 0n Malformed TLV Value 3.5.1.2.2
11t 1y 0n Hold Timer Expired 3.5.1.2.3
11t 1y 0n Shutdown 3.5.1.2.4
10t 1y 1n Loop Detected 3.4.5.1.2, 3.5.8.1
7t 5y 0n Unknown FEC 3.4.1.1
11t 1y 0n No Route 3.5.8.1
9t 3y 0n No Label Resources 3.5.8.1
8t 3y 1n Label Resources Available 3.5.8.1
Session Rejected 2.5.3, 3.5.3
7t 5y 0n No Hello 2.5.3, 3.5.3
9t 2y 1n Param Advert Mode 2.5.3, 3.5.3
9t 2y 1n Param PDU Max Len 2.5.3, 3.5.3
8t 3y 1n Param Label Range 2.5.3, 3.5.3
7t 5y 0n Bad KA Time 3.5.1.2.5, 3.5.3
11t 1y 0n KeepAlive Timer Expired 2.5.6, 3.5.1.2.3
9t 1y 2n Label Request Aborted 3.5.9.1
6t 5y 1n Missing Message Params 3.5.1.2.1
Thomas & Andersson Informational [Page 12]
^L
RFC 5038 LDP Implementation Survey Results October 2007
7t 5y 0n Unsupported Addr Family 3.4.1.1, 3.5.5.1
7t 5y 0n Internal Error 3.5.1.2.7
Appendix B. LDP Implementation Survey Form
LDP Implementation Survey Form (V 1.0)
The purpose of this form is to gather information about implementations
of LDP as defined by RFC 3036. The information is being requested as
part of the process of advancing LDP from Proposed to Draft Standard.
The form is patterned after the implementation report form used for
HTTP/1.1; see:
http://www.ietf.org/IESG/Implementations/http1.1-implementations.txt
=======================================================================
A. General Information
Please provide the following information.
----------------------------------------------------------------
Organization:
Organization url(s):
----------------------------------------------------------------
Product title(s):
Brief description(s):
----------------------------------------------------------------
Contact for LDP information
Name:
Title:
E-mail:
Organization/department:
Postal address:
Phone:
Fax:
Thomas & Andersson Informational [Page 13]
^L
RFC 5038 LDP Implementation Survey Results October 2007
=======================================================================
B. LDP Implementation Status, Availability, Origin
Please check [x] the boxes that apply.
----------------------------------------------------------------
Status:
[ ] Development
[ ] Alpha
[ ] Beta
[ ] Product
[ ] Other (describe):
Availability
[ ] Public and free
[ ] Only to selected organizations/companies but free
[ ] On sale.
[ ] For internal company use only
[ ] Other:
Implementation based on: (check all that apply)
[ ] Purchased code
(please list source if possible)
[ ] Free code
(please list source if possible)
[ ] Internal implementation
(no outside code, just from specs)
[ ] Internal implementation on top of purchased
or free code
List portions from external source:
List portions developed internally:
Thomas & Andersson Informational [Page 14]
^L
RFC 5038 LDP Implementation Survey Results October 2007
=======================================================================
C. LDP Feature Survey
For each feature listed, please indicate the status of the
implementation using one of the following:
't' tested against another independent implementation
'y' implemented but not tested against independent implementation
'n' not implemented
'-' not applicable to this type of implementation
Optional: For 'n' status, indicate reason for not implementing using
one of the following:
's' RFC specification inadequate, unclear, or confusing
'u' utility of feature unclear
'r' feature not required for feature set implemented
------------------+-----------------------------+-----------------------
| | Status
| | (one of t, y, n, -;
| | if n, optionally
Feature | RFC 3036 Section(s) | one of s, u, r)
==================+=============================+=======================
Interface types | 2.2.1, 2.5.3, 2.8.2, 3.4.2
----------------+-----------------------------+-----------------------
Packet | |
----------------+-----------------------------+-----------------------
Frame Relay | |
----------------+-----------------------------+-----------------------
ATM | |
==================+=============================+=======================
Label Spaces | 2.2.1, 2.2.2
----------------+-----------------------------+-----------------------
Per platform | |
----------------+-----------------------------+-----------------------
Per interface | |
==================+=============================+=======================
LDP Discovery | 2.4
----------------+-----------------------------+-----------------------
Basic | 2.4.1 |
----------------+-----------------------------+-----------------------
Targeted | 2.4.2 |
Thomas & Andersson Informational [Page 15]
^L
RFC 5038 LDP Implementation Survey Results October 2007
------------------+-----------------------------+-----------------------
LDP Sessions | 2.2.3
----------------+-----------------------------+-----------------------
Directly | -- |
Connected | |
----------------+-----------------------------+-----------------------
Targeted | 2.3 |
==================+=============================+=======================
LDP Modes | 2.6
----------------+-----------------------------+-----------------------
DU, Ind cntl, | 2.6 |
Lib retention | |
----------------+-----------------------------+-----------------------
DU, Ord cntl, | 2.6 |
Lib retention | |
----------------+-----------------------------+-----------------------
DU, Ind cntl, | 2.6 |
Cons retention | |
----------------+-----------------------------+-----------------------
DU, Ord cntl, | 2.6 |
Cons retention | |
----------------+-----------------------------+-----------------------
DoD, Ind cntl, | 2.6 |
Lib retention | |
----------------+-----------------------------+-----------------------
DoD, Ord cntl, | 2.6 |
Lib retention | |
----------------+-----------------------------+-----------------------
DoD, Ind cntl, | 2.6 |
Cons retention | |
----------------+-----------------------------+-----------------------
DoD, Ord cntl, | 2.6 |
Cons retention | |
==================+=============================+=======================
Loop Detection | 2.8 |
==================+=============================+=======================
TCP MD5 Option | 2.9 |
==================+=============================+=======================
LDP TLVs | 3.3, 3.4, throughout
----------------+-----------------------------+-----------------------
U-bit | 3.3 |
----------------+-----------------------------+-----------------------
F-bit | 3.3 |
------------------+-----------------------------+-----------------------
FEC | 1., 2.1, 3.4.1 |
Thomas & Andersson Informational [Page 16]
^L
RFC 5038 LDP Implementation Survey Results October 2007
----------------+-----------------------------+-----------------------
Wildcard | 3.4.1 |
----------------+-----------------------------+-----------------------
Prefix | 2.1, 3.4.1 |
----------------+-----------------------------+-----------------------
Host | 2.1, 3.4.1 |
------------------+-----------------------------+-----------------------
Address List | 3.4.3 |
------------------+-----------------------------+-----------------------
Hop Count | 3.4.4 |
------------------+-----------------------------+-----------------------
Path Vector | 3.4.5 |
------------------+-----------------------------+-----------------------
Generic Label | 3.4.2.1 |
------------------+-----------------------------+-----------------------
ATM Label | 3.4.2.2 |
------------------+-----------------------------+-----------------------
Frame Relay | 3.4.2.3 |
Label | |
------------------+-----------------------------+-----------------------
Status | 3.4.6 |
------------------+-----------------------------+-----------------------
Extended Status | 3.5.1 |
------------------+-----------------------------+-----------------------
Returned PDU | 3.5.1 |
------------------+-----------------------------+-----------------------
Returned Message| 3.5.1 |
------------------+-----------------------------+-----------------------
Common Hello | 3.5.2 |
Parameters | |
----------------+-----------------------------+-----------------------
T-bit | 3.5.2 |
----------------+-----------------------------+-----------------------
R-bit | 3.5.2 |
----------------+-----------------------------+-----------------------
Hold Time | 3.5.2 |
------------------+-----------------------------+-----------------------
IPv4 Transport | 3.5.2 |
Address | |
------------------+-----------------------------+-----------------------
Configuration | 3.5.2 |
Sequence Number | |
------------------+-----------------------------+-----------------------
IPv6 Transport | 3.5.2 |
Address | |
------------------+-----------------------------+-----------------------
Common Session | 3.5.3 |
Parameters | |
Thomas & Andersson Informational [Page 17]
^L
RFC 5038 LDP Implementation Survey Results October 2007
----------------+-----------------------------+-----------------------
KeepAlive Time| 3.5.3 |
----------------+-----------------------------+-----------------------
PVLim | 3.5.3 |
----------------+-----------------------------+-----------------------
Max PDU Length| 3.5.3 |
------------------+-----------------------------+-----------------------
ATM Session | 3.5.3 |
Parameters | |
----------------+-----------------------------+-----------------------
M values | |
0 No Merge | 3.5.3 |
------------+-----------------------------+-----------------------
1 VP Merge | 3.5.3 |
------------+-----------------------------+-----------------------
2 VC Merge | 3.5.3 |
------------+-----------------------------+-----------------------
3 VP & | 3.5.3 |
VC Merge | |
----------------+-----------------------------+-----------------------
D-bit | 3.5.3 |
----------------+-----------------------------+-----------------------
ATM Label | 3.5.3 |
Range | |
Component | |
------------------+-----------------------------+-----------------------
Frame Relay | 3.5.3 |
Session | |
Parameters | |
------------------+-----------------------------+-----------------------
M values | |
0 No Merge | 3.5.3 |
------------+-----------------------------+-----------------------
1 Merge | 3.5.3 |
----------------+-----------------------------+-----------------------
D-bit | 3.5.3 |
----------------+-----------------------------+-----------------------
Frame Relay | 3.5.3 |
Label Range | |
Component | |
----------------+-----------------------------+-----------------------
Label Request | 3.5.7 |
Message Id | |
------------------+-----------------------------+-----------------------
Vendor-Private | 3.6.1.1 |
------------------+-----------------------------+-----------------------
Experimental | 3.6.2 |
Thomas & Andersson Informational [Page 18]
^L
RFC 5038 LDP Implementation Survey Results October 2007
==================+=============================+=======================
LDP Messages | 3.5, throughout
------------------+-----------------------------+-----------------------
Notification | 3.5.1 |
------------------+-----------------------------+-----------------------
Hello | 3.5.2 |
------------------+-----------------------------+-----------------------
Initialization | 3.5.3 |
------------------+-----------------------------+-----------------------
KeepAlive | 3.5.4 |
------------------+-----------------------------+-----------------------
Address | 3.5.5 |
------------------+-----------------------------+-----------------------
Address Withdraw| 3.5.6 |
------------------+-----------------------------+-----------------------
Label Mapping | 3.5.7 |
----------------+-----------------------------+-----------------------
Label Request | 3.5.7 |
Message Id TLV| |
----------------+-----------------------------+-----------------------
Hop Count TLV | 3.5.7 |
----------------+-----------------------------+-----------------------
Path Vect TLV | 3.5.7 |
------------------+-----------------------------+-----------------------
Label Request | 3.5.8 |
----------------+-----------------------------+-----------------------
Hop Count TLV | 3.5.8 |
----------------+-----------------------------+-----------------------
Path Vect TLV | 3.5.8 |
------------------+-----------------------------+-----------------------
Label Withdraw | 3.5.10 |
----------------+-----------------------------+-----------------------
Label TLV | 3.5.10 |
------------------+-----------------------------+-----------------------
Label Release | 3.5.11 |
----------------+-----------------------------+-----------------------
Label TLV | 3.5.11 |
------------------+-----------------------------+-----------------------
Label Abort Req | 3.5.9 |
------------------+-----------------------------+-----------------------
Vendor-Private | 3.6.1.2 |
------------------+-----------------------------+-----------------------
Experimental | 3.6.2 |
Thomas & Andersson Informational [Page 19]
^L
RFC 5038 LDP Implementation Survey Results October 2007
==================+=============================+=======================
LDP Status Codes | 3.4.6
------------------+-----------------------------+-----------------------
Success | 3.4.6, 3.9 |
------------------+-----------------------------+-----------------------
Bad LDP Id | 3.5.1.2.1 |
------------------+-----------------------------+-----------------------
Bad Ptcl Version| 3.5.1.2.1 |
------------------+-----------------------------+-----------------------
Bad PDU Length | 3.5.1.2.1 |
------------------+-----------------------------+-----------------------
Unknown Message | 3.5.1.2.1 |
Type | |
------------------+-----------------------------+-----------------------
Bad Message | 3.5.1.2.1 |
Length | |
------------------+-----------------------------+-----------------------
Unknown TLV | 3.5.1.2.2 |
------------------+-----------------------------+-----------------------
Bad TLV length | 3.5.1.2.2 |
------------------+-----------------------------+-----------------------
Malformed TLV | 3.5.1.2.2 |
Value | |
------------------+-----------------------------+-----------------------
Hold Timer | 3.5.1.2.3 |
Expired | |
------------------+-----------------------------+-----------------------
Shutdown | 3.5.1.2.4 |
------------------+-----------------------------+-----------------------
Loop Detected | 3.4.5.1.2, 3.5.8.1 |
------------------+-----------------------------+-----------------------
Unknown FEC | 3.4.1.1 |
------------------+-----------------------------+-----------------------
No Route | 3.5.8.1 |
------------------+-----------------------------+-----------------------
No Label | 3.5.8.1 |
Resources | |
------------------+-----------------------------+-----------------------
Label Resources | 3.5.8.1 |
Available | |
------------------+-----------------------------+-----------------------
Session Rejected| 2.5.3, 3.5.3 |
No Hello | |
Thomas & Andersson Informational [Page 20]
^L
RFC 5038 LDP Implementation Survey Results October 2007
------------------+-----------------------------+-----------------------
Session Rejected| 2.5.3, 3.5.3 |
Parameters | |
Advert Mode | |
------------------+-----------------------------+-----------------------
Session Rejected| 2.5.3, 3.5.3 |
Parameters | |
Max PDU Length | |
------------------+-----------------------------+-----------------------
Session Rejected| 2.5.3, 3.5.3 |
Parameters | |
Label Range | |
------------------+-----------------------------+-----------------------
KeepAlive Timer | 2.5.6, 3.5.1.2.3 |
Expired | |
------------------+-----------------------------+-----------------------
Label Request | 3.5.9.1 |
Aborted | |
------------------+-----------------------------+-----------------------
Missing Message | 3.5.1.2.1 |
Parameters | |
------------------+-----------------------------+-----------------------
Unsupported | 3.4.1.1, 3.5.5.1 |
Address Family | |
------------------+-----------------------------+-----------------------
Session Rejected| 3.5.1.2.5, 3.5.3 |
Bad KeepAlive | |
Time | |
------------------+-----------------------------+-----------------------
Internal Error | 3.5.1.2.7 |
==================+=============================+=======================
Thomas & Andersson Informational [Page 21]
^L
RFC 5038 LDP Implementation Survey Results October 2007
Author's Addresses
Bob Thomas
Cisco Systems, Inc.
1414 Massachusetts Ave.
Boxborough MA 01719
EMail: rhthomas@cisco.com
Loa Andersson
Acreo AB
Isafjordsgatan 22
Kista, Sweden
EMail: loa.andersson@acreo.se
loa@pi.se
Thomas & Andersson Informational [Page 22]
^L
RFC 5038 LDP Implementation Survey Results October 2007
Full Copyright Statement
Copyright (C) The IETF Trust (2007).
This document is subject to the rights, licenses and restrictions
contained in BCP 78, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in BCP 78 and BCP 79.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
http://www.ietf.org/ipr.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Thomas & Andersson Informational [Page 23]
^L
|