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


The Pseudowire (PW) and Virtual Circuit Connectivity Verification (VCCV)
                     Implementation Survey Results

Abstract

   The IETF Pseudowire Emulation Edge-to-Edge (PWE3) working group has
   defined many encapsulations of various layer 1 and layer 2 service-
   specific PDUs and circuit data.  In most of these encapsulations, use
   of the Pseudowire (PW) Control Word is required.  However, there are
   several encapsulations for which the Control Word is optional, and
   this optionality has been seen in practice to possibly introduce
   interoperability concerns between multiple implementations of those
   encapsulations.  This survey of the Pseudowire / Virtual Circuit
   Connectivity Verification (VCCV) user community was conducted to
   determine implementation trends and the possibility of always
   mandating the Control Word.

Status of This Memo

   This document is not an Internet Standards Track specification; it is
   published for informational purposes.

   This document is a product of the Internet Engineering Task Force
   (IETF).  It represents the consensus of the IETF community.  It has
   received public review and has been approved for publication by the
   Internet Engineering Steering Group (IESG).  Not all documents
   approved by the IESG are a candidate for any level of Internet
   Standard; see Section 2 of RFC 5741.

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












Del Regno & Malis             Informational                     [Page 1]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


Copyright Notice

   Copyright (c) 2013 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.





































Del Regno & Malis             Informational                     [Page 2]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


Table of Contents

   1. Introduction ....................................................4
      1.1. PW/VCCV Survey Overview ....................................5
      1.2. PW/VCCV Survey Form ........................................5
      1.3. PW/VCCV Survey Highlights ..................................7
   2. Survey Results ..................................................8
      2.1. Summary of Results .........................................8
      2.2. Respondents ................................................8
      2.3. Pseudowire Encapsulations Implemented ......................9
      2.4. Number of Pseudowires Deployed ............................10
      2.5. VCCV Control Channel in Use ...............................11
      2.6. VCCV Connectivity Verification Types in Use ...............14
      2.7. Control Word Support for Encapsulations for Which
           CW Is Optional ............................................16
      2.8. Open-Ended Question .......................................17
   3. Security Considerations ........................................18
   4. Acknowledgements ...............................................18
   5. Informative References .........................................19
   Appendix A. Survey Responses ......................................20
     A.1. Respondent 1 ...............................................20
     A.2. Respondent 2 ...............................................21
     A.3. Respondent 3 ...............................................22
     A.4. Respondent 4 ...............................................23
     A.5. Respondent 5 ...............................................24
     A.6. Respondent 6 ...............................................25
     A.7. Respondent 7 ...............................................27
     A.8. Respondent 8 ...............................................28
     A.9. Respondent 9 ...............................................29
     A.10. Respondent 10 .............................................30
     A.11. Respondent 11 .............................................31
     A.12. Respondent 12 .............................................32
     A.13. Respondent 13 .............................................33
     A.14. Respondent 14 .............................................35
     A.15. Respondent 15 .............................................36
     A.16. Respondent 16 .............................................38
     A.17. Respondent 17 .............................................39














Del Regno & Malis             Informational                     [Page 3]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


1.  Introduction

   Most Pseudowire Emulation Edge-to-Edge (PWE3) encapsulations mandate
   the use of the Control Word (CW) to carry information essential to
   the emulation, to inhibit Equal-Cost Multipath (ECMP) behavior, and
   to discriminate Operations, Administration, and Maintenance (OAM)
   from Pseudowire (PW) packets.  However, some encapsulations treat the
   Control Word as optional.  As a result, implementations of the CW,
   for encapsulations for which it is optional, vary by equipment
   manufacturer, equipment model, and service provider network.
   Similarly, Virtual Circuit Connectivity Verification (VCCV) supports
   three Control Channel (CC) types and multiple Connectivity
   Verification (CV) types.  This flexibility has led to reports of
   interoperability issues within deployed networks and associated
   documents to attempt to remedy the situation.

   The encapsulations and modes for which the Control Word is currently
   optional are:

   o  Ethernet Tagged Mode [RFC4448]

   o  Ethernet Raw Mode [RFC4448]

   o  Point-to-Point Protocol (PPP) [RFC4618]

   o  High-Level Data Link Control (HDLC) [RFC4618]

   o  Frame Relay Port Mode [RFC4618]

   o  ATM (N:1 Cell Mode) [RFC4717]

   Virtual Circuit Connectivity Verification (VCCV) [RFC5085] defines
   three Control Channel types for MPLS PWs: Type 1, using the PW
   Control Word; Type 2, using the Router Alert (RA) Label; and Type 3,
   using Time to Live (TTL) Expiration (e.g., MPLS PW Label with TTL ==
   1).  While Type 2 (RA Label) is indicated as being "the preferred
   mode of VCCV operation when the Control Word is not present", RFC
   5085 does not indicate a mandatory Control Channel to ensure
   interoperable implementations.  The closest it comes to mandating a
   control channel is the requirement to support Type 1 (Control Word)
   whenever the CW is present.  As such, the three options yield seven
   implementation permutations (assuming you have to support at least
   one Control Channel type to provide VCCV).  Due to these
   permutations, interoperability challenges have been identified by
   several VCCV users.






Del Regno & Malis             Informational                     [Page 4]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   In order to assess the best approach to address the observed
   interoperability issues, the PWE3 working group decided to solicit
   feedback from the PW and VCCV user community regarding
   implementation.  This document presents the survey questionnaire and
   the information returned by those in the user community who
   participated.

1.1.  PW/VCCV Survey Overview

   Per the direction of the PWE3 working group chairs, a survey was
   created to sample the nature of implementations of PWs, with specific
   emphasis on Control Word usage, and VCCV, with emphasis on Control
   Channel and Control Type usage.  The survey consisted of a series of
   questions based on direction of the WG chairs and the survey opened
   to the public on November 4, 2010.  The survey was conducted using
   the SurveyMonkey tool, http://www.surveymonkey.com.  The survey ran
   from November 4, 2010 until February 25, 2011 and was repeatedly
   publicized on the PWE3 email list over that period.

   The editors took precautions to ensure the validity of the sample and
   the data.  Specifically, only responses with recognizable non-vendor
   company-affiliated email addresses were accepted.  Unrecognizable or
   personal email addresses would have been contacted to determine their
   validity, but none were received.  Only one response was received
   from each responding company.  If multiple responses from a company
   had been received, they would have been contacted to determine
   whether the responses were duplicative or additive.  This, however,
   did not occur.

1.2.  PW/VCCV Survey Form

   The PW/VCCV Implementation Survey requested the following information
   about user implementations (the lists of implementation choices were
   taken verbatim from the survey):

   -  Responding Organization.  No provisions were made for anonymous
      responses, as all responses required a valid email address in
      order to validate the survey response.  However, the results
      herein are reported anonymously, except for an alphabetic list of
      participating organizations in Section 2.2.











Del Regno & Malis             Informational                     [Page 5]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   -  Of the various encapsulations (and options therein) known at the
      time, including the WG document, "Encapsulation Methods for
      Transport of Fibre Channel" (now [RFC6307]), which were
      implemented by the respondent.  These included:

      o  Ethernet Tagged Mode - RFC 4448

      o  Ethernet Raw Mode - RFC 4448

      o  Structure-Agnostic Time Division Multiplexing (TDM) over Packet
         (SAToP) - RFC 4553

      o  PPP - RFC 4618

      o  HDLC - RFC 4618

      o  Frame Relay (Port Mode) - RFC 4619

      o  Frame Relay (1:1 Mode) - RFC 4619

      o  ATM (N:1 Mode) - RFC 4717

      o  ATM (1:1 Mode) - RFC 4717

      o  ATM (AAL5 Service Data Unit (SDU) Mode) - RFC 4717

      o  ATM (AAL5 PDU Mode) - RFC 4717

      o  Circuit Emulation over Packet (CEP) - RFC 4842

      o  Circuit Emulation Service over Packet Switched Network
         (CESoPSN) - RFC 5086

      o  Time Division Multiplexing over IP (TDMoIP) - RFC 5087

      o  Fiber Channel (Port Mode) - "Encapsulation Methods for
         Transport of Fibre Channel" (now RFC 6307)

   -  Approximately how many PWs of each type were deployed.
      Respondents could list a number, or for the sake of privacy, could
      just respond "In-Use" instead.










Del Regno & Malis             Informational                     [Page 6]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   -  For each encapsulation listed above, the respondent could indicate
      which Control Channel [RFC5085] was in use.  (See Section 1 for a
      discussion of these Control Channels.)  The options listed were:

      o  Control Word (Type 1)

      o  Router Alert Label (Type 2)

      o  TTL Expiry (Type 3)

   -  For each encapsulation listed above, the respondent could indicate
      which Connectivity Verification types [RFC5085] were in use.  The
      options were:

      o  Internet Control Message Protocol (ICMP) Ping

      o  Label Switched Path (LSP) Ping

   -  For each encapsulation type for which the Control Word is
      optional, the respondents could indicate the encapsulation(s) for
      which Control Word was supported by the equipment vendor, and
      whether the CW was also in use in the network.  The encapsulations
      listed were:

      o  Ethernet (Tagged Mode)

      o  Ethernet (Raw Mode)

      o  PPP

      o  HDLC

      o  Frame Relay (Port Mode)

      o  ATM (N:1 Cell Mode)

   -  Finally, a free-form entry was provided for the respondent to
      provide feedback regarding PW and VCCV deployments, VCCV
      interoperability challenges, or the survey or any other network/
      vendor details they wished to share.

1.3.  PW/VCCV Survey Highlights

   There were seventeen responses to the survey that met the validity
   requirements in Section 1.1.  The responding companies are listed
   below in Section 2.2.





Del Regno & Malis             Informational                     [Page 7]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


2.  Survey Results

2.1.  Summary of Results

   Prior to this survey, there was considerable speculation about
   whether the Control Word could always be mandated, with several
   proposals to do so.  However, the survey showed that there was
   considerable deployment of PWs that did not use the CW.  The
   publication of this survey serves as a reminder of the extent of PWs
   without the CW in use, and hence a reminder that the CW-less modes
   cannot be deprecated in the near future.

2.2.  Respondents

   The following companies, listed here alphabetically as received in
   the survey responses, participated in the PW/VCCV Implementation
   Survey.  Responses were only solicited from non-vendors (users and
   service providers), and no vendors responded (although if they had,
   their response would not have been included).  The data provided has
   been aggregated.  No specific company's response will be detailed
   herein.

   o  AboveNet

   o  AMS-IX

   o  Bright House Networks

   o  Cox Communications

   o  Deutsche Telekom AG

   o  Easynet Global Services

   o  France Telecom Orange

   o  Internet Solution

   o  MTN South Africa

   o  OJSC MegaFon

   o  Superonline

   o  Telecom New Zealand

   o  Telstra Corporation




Del Regno & Malis             Informational                     [Page 8]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   o  Time Warner Cable

   o  Tinet

   o  Verizon

   o  Wipro Technologies

2.3.  Pseudowire Encapsulations Implemented

   The following request was made: "In your network in general, across
   all products, please indicate which pseudowire encapsulations your
   company has implemented."  Of all responses, the following list shows
   the percentage of responses for each encapsulation:

   o  Ethernet Tagged Mode - RFC 4448 = 76.5%

   o  Ethernet Raw Mode - RFC 4448 = 82.4%

   o  SAToP - RFC 4553 = 11.8%

   o  PPP - RFC 4618 = 11.8%

   o  HDLC - RFC 4618 = 5.9%

   o  Frame Relay (Port Mode) - RFC 4619 = 17.6%

   o  Frame Relay (1:1 Mode) - RFC 4619 = 41.2%

   o  ATM (N:1 Mode) - RFC 4717 = 5.9%

   o  ATM (1:1 Mode) - RFC 4717 = 17.6%

   o  ATM (AAL5 SDU Mode) - RFC 4717 = 5.9%

   o  ATM (AAL5 PDU Mode) - RFC 4717 = 0.0%

   o  CEP - RFC 4842 = 0.0%

   o  CESoPSN - RFC 5086 = 11.8%

   o  TDMoIP - RFC 5087 = 11.8%

   o  Fiber Channel (Port Mode) - "Encapsulation Methods for Transport
      of Fibre Channel" (now RFC 6307) = 5.9%






Del Regno & Malis             Informational                     [Page 9]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


2.4.  Number of Pseudowires Deployed

   The following question was asked: "Approximately how many pseudowires
   are deployed of each encapsulation type.  Note, this should be the
   number of pseudowires in service, carrying traffic, or pre-positioned
   to do so."  The following list shows the number of pseudowires in use
   for each encapsulation:

   o  Ethernet Tagged Mode = 93,861

   o  Ethernet Raw Mode = 94,231

   o  SAToP - RFC 4553 = 20,050

   o  PPP - RFC 4618 = 500

   o  HDLC - RFC 4618 = 0

   o  Frame Relay (Port Mode) - RFC 4619 = 5,002

   o  Frame Relay (1:1 Mode) - RFC 4619 = 50,959

   o  ATM (N:1 Mode) - RFC 4717 = 50,000

   o  ATM (1:1 Mode) - RFC 4717 = 70,103

   o  ATM (AAL5 SDU Mode) - RFC 4717 = 0

   o  ATM (AAL5 PDU Mode) - RFC 4717 = 0

   o  CEP - RFC 4842 = 0

   o  CESoPSN - RFC 5086 = 21,600

   o  TDMoIP - RFC 5087 = 20,000

   o  Fiber Channel (Port Mode) - "Encapsulation Methods for Transport
      of Fibre Channel" (now RFC 6307) = 0

   In the above responses (on several occasions), the response was in
   the form of "> XXXXX" where the response indicated a number greater
   than the one provided.  Where applicable, the number itself was used
   in the sums above.  For example, ">20K" and "20K+" yielded 20K.








Del Regno & Malis             Informational                    [Page 10]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   Additionally, the following encapsulations were listed as "In-Use"
   with no quantity provided:

   o  Ethernet Raw Mode: 2 Responses

   o  ATM (AAL5 SDU Mode): 1 Response

   o  TDMoIP: 1 Response

2.5.  VCCV Control Channel in Use

   The following instructions were given: "Please indicate which VCCV
   Control Channel is used for each encapsulation type.  Understanding
   that users may have different networks with varying implementations,
   for your network in general, please select all which apply."  The
   numbers below indicate the number of responses.  The responses were:

   o  Ethernet Tagged Mode - RFC 4448

      *  Control Word (Type 1) = 7

      *  Router Alert Label (Type 2) = 3

      *  TTL Expiry (Type 3) = 3

   o  Ethernet Raw Mode - RFC 4448

      *  Control Word (Type 1) = 8

      *  Router Alert Label (Type 2) = 4

      *  TTL Expiry (Type 3) = 4

   o  SAToP - RFC 4553

      *  Control Word (Type 1) = 1

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0

   o  PPP - RFC 4618

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0



Del Regno & Malis             Informational                    [Page 11]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   o  HDLC - RFC 4618

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0

   o  Frame Relay (Port Mode) - RFC 4619

      *  Control Word (Type 1) = 1

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0

   o  Frame Relay (1:1 Mode) - RFC 4619

      *  Control Word (Type 1) = 3

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 2

   o  ATM (N:1 Mode) - RFC 4717

      *  Control Word (Type 1) = 1

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0

   o  ATM (1:1 Mode) - RFC 4717

      *  Control Word (Type 1) = 1

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 1

   o  ATM (AAL5 SDU Mode) - RFC 4717

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 1

      *  TTL Expiry (Type 3) = 0




Del Regno & Malis             Informational                    [Page 12]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   o  ATM (AAL5 PDU Mode) - RFC 4717

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0

   o  CEP - RFC 4842

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0

   o  CESoPSN - RFC 5086

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 1

   o  TDMoIP - RFC 5087

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0

   o  Fiber Channel (Port Mode) - "Encapsulation Methods for Transport
      of Fibre Channel" (now RFC 6307)

      *  Control Word (Type 1) = 0

      *  Router Alert Label (Type 2) = 0

      *  TTL Expiry (Type 3) = 0











Del Regno & Malis             Informational                    [Page 13]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


2.6.  VCCV Connectivity Verification Types in Use

   The following instructions were given: "Please indicate which VCCV
   Connectivity Verification types are used in your networks for each
   encapsulation type."  Note that Bidirectional Forwarding Detection
   (BFD) was not one of the choices.  The responses were as follows:

   o  Ethernet Tagged Mode - RFC 4448

      *  ICMP Ping = 5

      *  LSP Ping = 11

   o  Ethernet Raw Mode - RFC 4448

      *  ICMP Ping = 6

      *  LSP Ping = 11

   o  SAToP - RFC 4553

      *  ICMP Ping = 0

      *  LSP Ping = 2

   o  PPP - RFC 4618

      *  ICMP Ping = 0

      *  LSP Ping = 0

   o  HDLC - RFC 4618

      *  ICMP Ping = 0

      *  LSP Ping = 0

   o  Frame Relay (Port Mode) - RFC 4619

      *  ICMP Ping = 0

      *  LSP Ping = 1

   o  Frame Relay (1:1 Mode) - RFC 4619

      *  ICMP Ping = 2

      *  LSP Ping = 5



Del Regno & Malis             Informational                    [Page 14]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   o  ATM (N:1 Mode) - RFC 4717

      *  ICMP Ping = 0

      *  LSP Ping = 1

   o  ATM (1:1 Mode) - RFC 4717

      *  ICMP Ping = 0

      *  LSP Ping = 3

   o  ATM (AAL5 SDU Mode) - RFC 4717

      *  ICMP Ping = 0

      *  LSP Ping = 1

   o  ATM (AAL5 PDU Mode) - RFC 4717

      *  ICMP Ping = 0

      *  LSP Ping = 0

   o  CEP - RFC 4842

      *  ICMP Ping = 0

      *  LSP Ping = 0

   o  CESoPSN - RFC 5086

      *  ICMP Ping = 0

      *  LSP Ping = 1

   o  TDMoIP - RFC 5087

      *  ICMP Ping = 0

      *  LSP Ping = 1

   o  Fiber Channel (Port Mode) - "Encapsulation Methods for Transport
      of Fibre Channel" (now RFC 6307)

      *  ICMP Ping = 0

      *  LSP Ping = 0



Del Regno & Malis             Informational                    [Page 15]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


2.7.  Control Word Support for Encapsulations for Which CW Is Optional

   The following instructions were given: "Please indicate your
   network's support of and use of the Control Word for encapsulations
   for which the Control Word is optional."  The responses were:

   o  Ethernet (Tagged Mode)

      *  Supported by Network/Equipment = 13

      *  Used in Network = 6

   o  Ethernet (Raw Mode)

      *  Supported by Network/Equipment = 14

      *  Used in Network = 7

   o  PPP

      *  Supported by Network/Equipment = 5

      *  Used in Network = 0

   o  HDLC

      *  Supported by Network/Equipment = 4

      *  Used in Network = 0

   o  Frame Relay (Port Mode)

      *  Supported by Network/Equipment = 3

      *  Used in Network = 1

   o  ATM (N:1 Cell Mode)

      *  Supported by Network/Equipment = 5

      *  Used in Network = 1










Del Regno & Malis             Informational                    [Page 16]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


2.8.  Open-Ended Question

   Space was provided for user feedback.  The following instructions
   were given: "Please use this space to provide any feedback regarding
   PW and VCCV deployments, VCCV interoperability challenges, this
   survey or any network/vendor details you wish to share."  Below are
   the responses, made anonymous.  The responses are otherwise provided
   here verbatim.

   1.  BFD VCCV Control Channel is not indicated in the survey (may be
       required for PW redundancy purpose)

   2.  Using CV is not required at the moment

   3.  COMPANY has deployed several MPLS network elements, from multiple
       vendors.  COMPANY is seeking a uniform implementation of VCCV
       Control Channel (CC) capabilities across its various vendor
       platforms.  This will provide COMPANY with significant advantages
       in reduced operational overheads when handling cross-domain
       faults.  Having a uniform VCCV feature implementation in COMPANY
       multi-vendor network leads to:

       o  Reduced operational cost and complexity

       o  Reduced OSS development to coordinate incompatible VCCV
          implementations.

       o  Increased end-end service availability when handing faults.

       In addition, currently some of COMPANY deployed VCCV traffic
       flows (on some vendor platforms) are not guaranteed to follow
       those of the customer's application traffic (a key operational
       requirement).  As a result, the response from the circuit ping
       cannot faithfully reflect the status of the circuit.  This leads
       to ambiguity regarding the operational status of our networks.
       An in-band method is highly preferred, with COMPANY having a
       clear preference for VCCV Circuit Ping using PWE Control Word.
       This preference is being pursued with each of COMPANY vendors.

   4.  PW VCCV is very useful tool for finding faults in each PW
       channel.  Without this we can not find fault on a PW channel.  PW
       VCCV using BFD is another better option.  Interoperability
       challenges are with Ethernet OAM mechanism.








Del Regno & Malis             Informational                    [Page 17]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   5.  We are using L2PVPN AToM like-to-like models - ATMoMPLS - EoMPLS
       ATMoMPLS : This service offered for transporting ATM cells over
       IP/MPLS core with Edge ATM CE devices including BPX, Ericsson
       Media Gateway etc.  This is purely a Port mode with cell-packing
       configuration on it to have best performance.  QoS marking is
       done for getting LLQ treatment in the core for these MPLS
       encapsulated ATM packets.  EoMPLS: This service offered for
       transporting 2G/3G traffic from network such as Node-B to RNC's
       over IP/MPLS backbone core network.  QoS marking is done for
       getting guaranteed bandwidth treatment in the core for these MPLS
       encapsulated ATM packets.  In addition to basic L2VPN service
       configuration, these traffic are routed via MPLS TE tunnels with
       dedicated path and bandwidth defined to avoid bandwidth related
       congestion.

   6.  EQUIPMENT MANUFACTURER does not provide options to configure VCCV
       control-channel and its sub options for LDP based L2Circuits.
       How can we achieve end-to-end management and fault detection of
       PW without VCCV in such cases?

   7.  I'm very interested in this work as we continue to experience
       interop challenges particularly with newer vendors to the space
       who are only implementing VCCV via control word.  Vendors who
       have tailed their MPLS OAM set specifically to the cell backhaul
       space and mandatory CW have been known to fall into this space.
       That's all I've got.

3.  Security Considerations

   As this document is an informational report of the PW/VCCV User
   Implementation Survey results, no protocol security considerations
   are introduced.

4.  Acknowledgements

   We would like to thank the chairs of the PWE3 working group for their
   guidance and review of the survey questions.  We would also like to
   sincerely thank those listed in Section 2.2. who took the time and
   effort to participate.












Del Regno & Malis             Informational                    [Page 18]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


5.  Informative References

   [RFC4448]  Martini, L., Rosen, E., El-Aawar, N., and G. Heron,
              "Encapsulation Methods for Transport of Ethernet over MPLS
              Networks", RFC 4448, April 2006.

   [RFC4618]  Martini, L., Rosen, E., Heron, G., and A. Malis,
              "Encapsulation Methods for Transport of PPP/High-Level
              Data Link Control (HDLC) over MPLS Networks", RFC 4618,
              September 2006.

   [RFC4717]  Martini, L., Jayakumar, J., Bocci, M., El-Aawar, N.,
              Brayley, J., and G. Koleyni, "Encapsulation Methods for
              Transport of Asynchronous Transfer Mode (ATM) over MPLS
              Networks", RFC 4717, December 2006.

   [RFC5085]  Nadeau, T., Ed. and C. Pignataro, Ed., "Pseudowire Virtual
              Circuit Connectivity Verification (VCCV): A Control
              Channel for Pseudowires", December 2007.

   [RFC6307]  Black, D., Dunbar, L., Roth, M., and R. Solomon,
              "Encapsulation Methods for Transport of Fibre Channel
              Traffic over MPLS Networks", RFC 6307, April 2012.




























Del Regno & Malis             Informational                    [Page 19]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


Appendix A.  Survey Responses

   The detailed responses are included in this appendix.  The respondent
   contact info has been removed.

A.1.  Respondent 1

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 423

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: Control Word (Type 1)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: Ethernet (Tagged Mode), Ethernet (Raw Mode)

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response






Del Regno & Malis             Informational                    [Page 20]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


A.2.  Respondent 2

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

       SAToP - RFC 4553

       CESoPSN - RFC 5086

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 5000

       Ethernet Raw Mode - RFC 4448 - 1000

       SAToP - RFC 4553 - 50

       CESoPSN - RFC 5086 - 1600

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: Control Word (Type 1), Router
       Alert Label (Type 2), TTL Expiry (Type 3)

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1), Router Alert
       Label (Type 2), TTL Expiry (Type 3)

       CESoPSN - RFC 5086: TTL Expiry (Type 3)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: ICMP Ping, LSP Ping

       Ethernet Raw Mode - RFC 4448: ICMP Ping, LSP Ping

       SAToP - RFC 4553: LSP Ping



Del Regno & Malis             Informational                    [Page 21]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


       CESoPSN - RFC 5086: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       I'm very interested in this work as we continue to experience
       interop challenges particularly with newer vendors to the space
       who are only implementing VCCV via control word.  Vendors who
       have tailed their MPLS OAM set specifically to the cell backhaul
       space and mandatory CW have been known to fall into this space.
       That's all I've got.

A.3.  Respondent 3

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

       Frame Relay (Port Mode) - RFC 4619

       Frame Relay (1:1 Mode) - RFC 4619

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 800

       Ethernet Raw Mode - RFC 4448 - 50

       Frame Relay (Port Mode) - RFC 4619 - 2

       Frame Relay (1:1 Mode) - RFC 4619 - 2




Del Regno & Malis             Informational                    [Page 22]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       No Response

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       No Response

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response

A.4.  Respondent 4

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 1000

       Ethernet Raw Mode - RFC 4448 - 200







Del Regno & Malis             Informational                    [Page 23]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       No Response

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: LSP Ping

       Ethernet Raw Mode - RFC 4448: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       EQUIPMENT MANUFACTURER does not provide options to configure VCCV
       control-channel and its sub options for LDP based L2Circuits.
       How can we achieve end-to-end management and fault detection of
       PW without VCCV in such cases?

A.5.  Respondent 5

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

       PPP - RFC 4618

       Frame Relay (Port Mode) - RFC 4619

       Frame Relay (1:1 Mode) - RFC 4619

       Fiber Channel (Port Mode) - "Encapsulation Methods for Transport
       of Fibre Channel" (now RFC 6307)



Del Regno & Malis             Informational                    [Page 24]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 4000

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: Control Word (Type 1), Router
       Alert Label (Type 2)

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1), Router Alert
       Label (Type 2)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: Ethernet (Tagged Mode), Ethernet (Raw Mode)

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response

A.6.  Respondent 6

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448





Del Regno & Malis             Informational                    [Page 25]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 1000+

       Ethernet Raw Mode - RFC 4448 - 500

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: Control Word (Type 1)

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: ICMP Ping, LSP Ping

       Ethernet Raw Mode - RFC 4448: ICMP Ping, LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: Ethernet (Tagged Mode), Ethernet (Raw Mode)

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response












Del Regno & Malis             Informational                    [Page 26]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


A.7.  Respondent 7

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Raw Mode - RFC 4448

       ATM (1:1 Mode) - RFC 4717

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Raw Mode - RFC 4448 - 20

       ATM (1:1 Mode) - RFC 4717 - 100

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       No Response

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Raw Mode - RFC 4448: LSP Ping

       ATM (1:1 Mode) - RFC 4717: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode), PPP, HDLC, Frame Relay (Port Mode), ATM (N:1 Cell
       Mode)

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.






Del Regno & Malis             Informational                    [Page 27]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


       We are using L2PVPN AToM like-to-like models - ATMoMPLS - EoMPLS
       ATMoMPLS : This service offered for transporting ATM cells over
       IP/MPLS core with Edge ATM CE devices including BPX, Ericsson
       Media Gateway etc.  This is purely a Port mode with cell-packing
       configuration on it to have best performance.  QoS marking is
       done for getting LLQ treatment in the core for these MPLS
       encapsulated ATM packets.  EoMPLS: This service offered for
       transporting 2G/3G traffic from network such as Node-B to RNC's
       over IP/MPLS backbone core network.  QoS marking is done for
       getting guaranteed bandwidth treatment in the core for these MPLS
       encapsulated ATM packets.  In addition to basic L2VPN service
       configuration, these traffic are routed via MPLS TE tunnels with
       dedicated path and bandwidth defined to avoid bandwidth related
       congestion.

A.8.  Respondent 8

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Raw Mode - RFC 4448

       ATM (AAL5 SDU Mode) - RFC 4717

       TDMoIP - RFC 5087

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Raw Mode - RFC 4448 - In-Use

       ATM (AAL5 SDU Mode) - RFC 4717 - In-Use

       TDMoIP - RFC 5087 - In-Use

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1)

       ATM (AAL5 SDU Mode) - RFC 4717: Router Alert Label (Type 2)





Del Regno & Malis             Informational                    [Page 28]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Raw Mode - RFC 4448: LSP Ping

       ATM (AAL5 SDU Mode) - RFC 4717: LSP Ping

       TDMoIP - RFC 5087: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Raw Mode), ATM (N:1
       Cell Mode)

       Used in Network: Ethernet (Raw Mode), ATM (N:1 Cell Mode)

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       PW VCCV is very useful tool for finding faults in each PW
       channel.  Without this we can not find fault on a PW channel.  PW
       VCCV using BFD is another better option.  Interoperability
       challenges are with Ethernet OAM mechanism.

A.9.  Respondent 9

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Frame Relay (1:1 Mode) - RFC 4619

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 19385

       Frame Relay (1:1 Mode) - RFC 4619 - 15757







Del Regno & Malis             Informational                    [Page 29]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Frame Relay (1:1 Mode) - RFC 4619: Control Word (Type 1)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Frame Relay (1:1 Mode) - RFC 4619: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode), PPP, HDLC, Frame Relay (Port Mode), ATM (N:1 Cell
       Mode)

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response

A.10.  Respondent 10

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Raw Mode - RFC 4448

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Raw Mode - RFC 4448 - 325

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1)



Del Regno & Malis             Informational                    [Page 30]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Raw Mode - RFC 4448: ICMP Ping, LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: No Response

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response

A.11.  Respondent 11

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

       PPP - RFC 4618 HDLC - RFC 4618

       Frame Relay (1:1 Mode) - RFC 4619

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 2000

       Ethernet Raw Mode - RFC 4448 - 100

       PPP - RFC 4618 - 500

       Frame Relay (1:1 Mode) - RFC 4619 - 200







Del Regno & Malis             Informational                    [Page 31]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       No Response

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: ICMP Ping, LSP Ping

       Ethernet Raw Mode - RFC 4448: ICMP Ping, LSP Ping

       Frame Relay (1:1 Mode) - RFC 4619: ICMP Ping, LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode), PPP, HDLC

       Used in Network: Ethernet (Tagged Mode)

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response

A.12.  Respondent 12

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Raw Mode - RFC 4448

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Raw Mode - RFC 4448 - 50000







Del Regno & Malis             Informational                    [Page 32]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1), Router Alert
       Label (Type 2), TTL Expiry (Type 3)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       No Response

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: Ethernet (Tagged Mode), Ethernet (Raw Mode)

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response

A.13.  Respondent 13

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

       Frame Relay (1:1 Mode) - RFC 4619

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 3

       Ethernet Raw Mode - RFC 4448 - 10-20




Del Regno & Malis             Informational                    [Page 33]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


       ATM (1:1 Mode) - RFC 4717 - 3

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: Control Word (Type 1), TTL
       Expiry (Type 3)

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1), TTL Expiry
       (Type 3)

       Frame Relay (1:1 Mode) - RFC 4619: Control Word (Type 1), TTL
       Expiry (Type 3)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: ICMP Ping, LSP Ping

       Ethernet Raw Mode - RFC 4448: ICMP Ping, LSP Ping

       Frame Relay (1:1 Mode) - RFC 4619: ICMP Ping, LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode), PPP, HDLC, Frame Relay (Port Mode), ATM (N:1 Cell
       Mode)

       Used in Network: Ethernet (Tagged Mode), Ethernet (Raw Mode),
       Frame Relay (Port Mode)

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response











Del Regno & Malis             Informational                    [Page 34]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


A.14.  Respondent 14

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 150

       Ethernet Raw Mode - RFC 4448 - 100

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: Control Word (Type 1), Router
       Alert Label (Type 2)

       Ethernet Raw Mode - RFC 4448: Control Word (Type 1), Router Alert
       Label (Type 2)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: LSP Ping

       Ethernet Raw Mode - RFC 4448: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode), PPP, HDLC, Frame Relay (Port Mode)

       Used in Network: Ethernet (Tagged Mode), Ethernet (Raw Mode)







Del Regno & Malis             Informational                    [Page 35]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       No Response

A.15.  Respondent 15

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

       Frame Relay (1:1 Mode) - RFC 4619

       ATM (1:1 Mode) - RFC 4717

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 20,000

       Ethernet Raw Mode - RFC 4448 - 1000

       Frame Relay (1:1 Mode) - RFC 4619 - 30,000

       ATM (1:1 Mode) - RFC 4717 - 20,000

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: TTL Expiry (Type 3)

       Ethernet Raw Mode - RFC 4448: TTL Expiry (Type 3)

       Frame Relay (1:1 Mode) - RFC 4619: TTL Expiry (Type 3)

       ATM (1:1 Mode) - RFC 4717: TTL Expiry (Type 3)






Del Regno & Malis             Informational                    [Page 36]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: LSP Ping

       Ethernet Raw Mode - RFC 4448: LSP Ping

       Frame Relay (1:1 Mode) - RFC 4619: LSP Ping

       ATM (1:1 Mode) - RFC 4717: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: No Response

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       COMPANY has deployed several MPLS network elements, from multiple
       vendors.  COMPANY is seeking a uniform implementation of VCCV
       Control Channel (CC) capabilities across its various vendor
       platforms.  This will provide COMPANY with significant advantages
       in reduced operational overheads when handling cross-domain
       faults.  Having a uniform VCCV feature implementation in COMPANY
       multi-vendor network leads to:

       o   Reduced operational cost and complexity

       o   Reduced OSS development to coordinate incompatible VCCV
           implementations.

       o   Increased end-end service availability when handing faults.

       In addition, currently some of COMPANY deployed VCCV traffic
       flows (on some vendor platforms) are not guaranteed to follow
       those of the customer's application traffic (a key operational
       requirement).  As a result, the response from the circuit ping
       cannot faithfully reflect the status of the circuit.  This leads
       to ambiguity regarding the operational status of our networks.
       An in-band method is highly preferred, with COMPANY having a
       clear preference for VCCV Circuit Ping using PWE Control Word.
       This preference is being pursued with each of COMPANY vendors.





Del Regno & Malis             Informational                    [Page 37]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


A.16.  Respondent 16

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       Ethernet Raw Mode - RFC 4448

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - 100

       Ethernet Raw Mode - RFC 4448 - 100

   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       No Response

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: ICMP Ping, LSP Ping

       Ethernet Raw Mode - RFC 4448: ICMP Ping, LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: Ethernet (Tagged Mode), Ethernet
       (Raw Mode)

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.







Del Regno & Malis             Informational                    [Page 38]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


       Using CV is not required at the moment

A.17.  Respondent 17

   2.  In your network in general, across all products, please indicate
       which pseudowire encapsulations your company has implemented.

       Ethernet Tagged Mode - RFC 4448

       SAToP - RFC 4553

       Frame Relay (Port Mode) - RFC 4619

       Frame Relay (1:1 Mode) - RFC 4619

       ATM (N:1 Mode) - RFC 4717

       ATM (1:1 Mode) - RFC 4717

       CESoPSN - RFC 5086

       TDMoIP - RFC 5087

   3.  Approximately how many pseudowires are deployed of each
       encapsulation type.  Note, this should be the number of
       pseudowires in service, carrying traffic, or pre-positioned to do
       so. ***Note, please indicate "In-Use" for any PW Encap Types
       which you are using but cannot provide a number.

       Ethernet Tagged Mode - RFC 4448 - >40k

       Ethernet Raw Mode - RFC 4448 - In-Use

       SAToP - RFC 4553 - >20k

       Frame Relay (Port Mode) - RFC 4619 - >5k

       Frame Relay (1:1 Mode) - RFC 4619 - >5k

       ATM (N:1 Mode) - RFC 4717 - >50k

       ATM (1:1 Mode) - RFC 4717 - >50k

       CESoPSN - RFC 5086 - >20k

       TDMoIP - RFC 5087 - >20k





Del Regno & Malis             Informational                    [Page 39]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


   4.  Please indicate which VCCV Control Channel is used for each
       encapsulation type.  Understanding that users may have different
       networks with varying implementations, for your network in
       general, please select all which apply.

       Ethernet Tagged Mode - RFC 4448: Control Word (Type 1)

       SAToP - RFC 4553: Control Word (Type 1)

       Frame Relay (Port Mode) - RFC 4619: Control Word (Type 1)

       Frame Relay (1:1 Mode) - RFC 4619: Control Word (Type 1)

       ATM (N:1 Mode) - RFC 4717: Control Word (Type 1)

       ATM (1:1 Mode) - RFC 4717: Control Word (Type 1)

   5.  Please indicate which VCCV Connectivity Verification types are
       used in your networks for each encapsulation type.

       Ethernet Tagged Mode - RFC 4448: LSP Ping

       SAToP - RFC 4553: LSP Ping

       Frame Relay (Port Mode) - RFC 4619: LSP Ping

       Frame Relay (1:1 Mode) - RFC 4619: LSP Ping

       ATM (N:1 Mode) - RFC 4717: LSP Ping

       ATM (1:1 Mode) - RFC 4717: LSP Ping

   6.  Please indicate your network's support of and use of the Control
       Word for encapsulations for which the Control Word is optional.

       Supported by Network/Equipment: ATM (N:1 Cell Mode)

       Used in Network: No Response

   7.  Please use this space to provide any feedback regarding PW and
       VCCV deployments, VCCV interoperability challenges, this survey
       or any network/vendor details you wish to share.

       BFD VCCV Control Channel is not indicated in the survey (may be
       required for PW redundancy purpose)






Del Regno & Malis             Informational                    [Page 40]
^L
RFC 7079          PW/VCCV Implementation Survey Results    November 2013


Authors' Addresses

   Christopher N. "Nick" Del Regno (editor)
   Verizon Communications, Inc.
   400 International Pkwy
   Richardson, TX  75081
   US

   EMail: nick.delregno@verizon.com


   Andrew G. Malis (editor)
   Consultant

   EMail: agmalis@gmail.com




































Del Regno & Malis             Informational                    [Page 41]
^L