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) D. Kumar
Request for Comments: 8533 Cisco
Category: Standards Track M. Wang
ISSN: 2070-1721 Q. Wu, Ed.
Huawei
R. Rahman
S. Raghavan
Cisco
April 2019
A YANG Data Model for Retrieval Methods for the Management of
Operations, Administration, and Maintenance (OAM) Protocols
That Use Connectionless Communications
Abstract
This document presents a retrieval method YANG data model for
connectionless Operations, Administration, and Maintenance (OAM)
protocols. It provides technology-independent RPC operations for OAM
protocols that use connectionless communication. The retrieval
methods model herein presented can be extended to include technology-
specific details. There are two key benefits of this approach:
First, it leads to uniformity between OAM protocols. Second, it
supports both nested OAM workflows (i.e., performing OAM functions at
different or the same levels through a unified interface) as well as
interactive OAM workflows (i.e., performing OAM functions at the same
levels through a unified interface).
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in Section 2 of RFC 7841.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
https://www.rfc-editor.org/info/rfc8533.
Kumar, et al. Standards Track [Page 1]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
Copyright Notice
Copyright (c) 2019 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
(https://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 3
2. Conventions Used in This document . . . . . . . . . . . . . . 3
2.1. Terminology . . . . . . . . . . . . . . . . . . . . . . . 4
2.2. Tree Diagrams . . . . . . . . . . . . . . . . . . . . . . 4
3. Overview of the Connectionless OAM Retrieval Methods Model . 4
3.1. RPC Operation Definitions . . . . . . . . . . . . . . . . 4
3.2. OAM Retrieval Methods Hierarchy . . . . . . . . . . . . . 7
4. OAM Retrieval Methods YANG Module . . . . . . . . . . . . . . 16
5. Security Considerations . . . . . . . . . . . . . . . . . . . 26
6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 26
7. References . . . . . . . . . . . . . . . . . . . . . . . . . 27
7.1. Normative References . . . . . . . . . . . . . . . . . . 27
7.2. Informative References . . . . . . . . . . . . . . . . . 28
Appendix A. Extending Connectionless OAM Method Module Example . 29
A.1. Example of New Retrieval Procedures Model . . . . . . . . 29
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . 40
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 41
Kumar, et al. Standards Track [Page 2]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
1. Introduction
Operations, Administration, and Maintenance (OAM) are important
networking functions that allow operators to:
1. monitor network communications (i.e., reachability verification
and Continuity Check)
2. troubleshoot failures (i.e., fault verification and localization)
3. monitor service-level agreements and performance (i.e.,
performance management)
An overview of OAM tools is presented in [RFC7276].
Ping and Traceroute [RFC4443], as well as Bidirectional Forwarding
Detection (BFD) [RFC5880], are well-known fault verification and
isolation tools, respectively, for IP networks [RFC792]. Over the
years, different technologies have developed similar toolsets for
equivalent purposes.
This document presents an on-demand retrieval method YANG data model
for OAM protocols that use connectionless communication. This model
provides technology-independent RPC operations for OAM protocols that
use connectionless communication (i.e., connectionless OAM). It is
separated from the generic YANG data model for connectionless OAM
[RFC8532] and can avoid mixing the models for the retrieved data from
the retrieval procedures. It is expected that retrieval procedures
will evolve faster than the data model [RFC8532] and will allow new
procedures to be defined for retrieval of the same data defined by
the generic YANG data model for connectionless OAM.
2. Conventions Used in This document
The following terms are defined in [RFC6241] and are used in this
document:
o client
o configuration data
o server
o state data
Kumar, et al. Standards Track [Page 3]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
The following terms are defined in [RFC6020] and are used in this
document:
o augment
o data model
o data node
The terminology for describing YANG data models is found in
[RFC6020].
2.1. Terminology
TP - Test Point
MAC - Media Access Control
RPC - Remote Procedure Call
RPC Operation - A specific Remote Procedure Call
2.2. Tree Diagrams
Tree diagrams used in this document follow the notation defined in
[RFC8340].
3. Overview of the Connectionless OAM Retrieval Methods Model
This document describes an on-demand retrieval method YANG data model
for OAM protocols that use connectionless communication. This model
provides technology-independent retrieval procedures (RPC operations)
for connectionless OAM protocols. It provides a flexible way to
retrieve the data that is defined by the "ietf-connectionless-
oam.yang" module [RFC8532].
3.1. RPC Operation Definitions
The RPC model facilitates issuing commands to a Network Configuration
Protocol (NETCONF) server (in this case to the device that needs to
execute the OAM command) and obtaining a response.
Under the "connectionless-oam-methods" module, we summarize common
OAM functions and define two generic RPC operations: 'continuity-
check' and 'path-discovery'. In practice, these RPC operations are
activated on demand and are supported by corresponding technology-
specific OAM tools [RFC7276]. For example, for the IP OAM model, the
Continuity Check RPC corresponds to the IP Ping [RFC792] [RFC4443],
Kumar, et al. Standards Track [Page 4]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
while the path discovery RPC operation corresponds to IP Traceroute
[RFC792] [RFC4443].
Note that the RPC operation presented in this document is the base
building block, which is used to derive a model for a technology-
specific OAM (i.e., ICMP Ping [RFC792] [RFC4443] and Label Switched
Path (LSP) Ping [RFC8029]). This base building block should be
extended with corresponding technology-specific parameters. To
facilitate this for future enhancements to data retrieval methods,
the RPCs are captured under a separate module.
The generic 'tp-address' grouping is used as data input from
different RPCs described in this document. The generic 'path-
discovery-data' and 'continuity-check-data' groupings defined by the
"ietf-connectionless-oam.yang" module [RFC8532] are used as data
outputs from different RPCs described in this document. Similar
methods, including other RPCs, can retrieve the data using the same
data model (i.e., the "ietf-connectionless-oam.yang" module).
rpc continuity-check {
if-feature cl-oam:continuity-check;
description
"Continuity Check RPC operation as per RFC 7276.";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
input {
uses rpc-input-parameters;
....
}
output {
container response-info {
leaf protocol-id {
type identityref {
base protocol-id;
}
mandatory true;
description
"Protocol used in the Continuity Check. ";
}
leaf protocol-id-meta-data {
type identityref {
base protocol-id-meta-data;
}
description
"An optional metadata related to the protocol ID.";
}
leaf status-code {
Kumar, et al. Standards Track [Page 5]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
type identityref{
base status-code;
}
mandatory true;
description
"Status code for Continuity Check RPC operation.";
}
leaf status-sub-code {
type identityref{
base status-sub-code;
}
mandatory true;
description
"Status-sub-code for Continuity Check RPC operation.";
}
description
"Status code and status-sub-code for Continuity Check RPC
operation.";
}
uses cl-oam:continuity-check-data;
}
}
rpc path-discovery {
description
"Path discovery RPC operation as per RFC 7276.";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
input {
uses rpc-input-parameters;
.....
}
output {
list response-list {
key "response-index";
description
"Path discovery response list.";
leaf response-index {
type uint32;
mandatory true;
description
"Response index.";
}
leaf protocol-id {
type identityref {
base protocol-id;
}
Kumar, et al. Standards Track [Page 6]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
mandatory true;
description
"Protocol used in path discovery. ";
}
leaf protocol-id-meta-data {
type identityref {
base protocol-id-meta-data;
}
description
"An optional metadata related to the protocol ID.";
}
leaf status-code {
type identityref{
base status-code;
}
mandatory true;
description
"Status code for path discovery RPC operation. ";
}
leaf status-sub-code {
type identityref{
base status-sub-code;
}
mandatory true;
description
"Status-sub-code for path discovery RPC operation. ";
}
}
uses cl-oam:path-discovery-data;
}
}
Snippet of Data Hierarchy Related to RPC Operations
3.2. OAM Retrieval Methods Hierarchy
The complete data hierarchy related to the Connectionless OAM
Retrieval Methods YANG data model is presented below.
module: ietf-connectionless-oam-methods
rpcs:
+---x continuity-check {cl-oam:continuity-check}?
| +---w input
| | +---w destination-tp
| | | +---w tp-location-type identityref
| | | +---w mac-address
| | | | +---w mac-address yang:mac-address
Kumar, et al. Standards Track [Page 7]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| | | +---w ipv4-address
| | | | +---w ipv4-address inet:ipv4-address
| | | +---w ipv6-address
| | | | +---w ipv6-address inet:ipv6-address
| | | +---w tp-attribute
| | | | +---w tp-attribute-type?
| | | | | address-attribute-type
| | | | +---w (tp-attribute-value)?
| | | | +--:(ip-prefix)
| | | | | +---w ip-prefix?
| | | | | inet:ip-prefix
| | | | +--:(bgp)
| | | | | +---w bgp?
| | | | | inet:ip-prefix
| | | | +--:(tunnel)
| | | | | +---w tunnel-interface? uint32
| | | | +--:(pw)
| | | | | +---w remote-pe-address?
| | | | | | inet:ip-address
| | | | | +---w pw-id? uint32
| | | | +--:(vpls)
| | | | | +---w route-distinguisher?
| | | | | | rt:route-distinguisher
| | | | | +---w sender-ve-id? uint16
| | | | | +---w receiver-ve-id? uint16
| | | | +--:(mpls-mldp)
| | | | +---w (root-address)?
| | | | +--:(ip-address)
| | | | | +---w source-address?
| | | | | | inet:ip-address
| | | | | +---w group-ip-address?
| | | | | inet:ip-address
| | | | +--:(vpn)
| | | | | +---w as-number?
| | | | | inet:as-number
| | | | +--:(global-id)
| | | | +---w lsp-id? string
| | | +---w system-info
| | | +---w router-id? rt:router-id
| | +---w source-interface if:interface-ref
| | +---w outbound-interface if:interface-ref
| | +---w vrf?
| | | cl-oam:routing-instance-ref
| | +---w session-type? enumeration
| | +---w count? uint32
| | +---w ttl? uint8
| | +---w packet-size? uint32
| +--ro output
Kumar, et al. Standards Track [Page 8]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| +--ro response-info
| | +--ro protocol-id identityref
| | +--ro protocol-id-meta-data? identityref
| | +--ro status-code identityref
| | +--ro status-sub-code identityref
| +--ro src-test-point
| | +--ro ni? routing-instance-ref
| | +--ro tp-location-type identityref
| | +--ro mac-address
| | | +--ro mac-address yang:mac-address
| | +--ro ipv4-address
| | | +--ro ipv4-address inet:ipv4-address
| | +--ro ipv6-address
| | | +--ro ipv6-address inet:ipv6-address
| | +--ro tp-attribute
| | | +--ro tp-attribute-type?
| | | | address-attribute-type
| | | +--ro (tp-attribute-value)?
| | | +--:(ip-prefix)
| | | | +--ro ip-prefix?
| | | | inet:ip-prefix
| | | +--:(bgp)
| | | | +--ro bgp?
| | | | inet:ip-prefix
| | | +--:(tunnel)
| | | | +--ro tunnel-interface? uint32
| | | +--:(pw)
| | | | +--ro remote-pe-address?
| | | | | inet:ip-address
| | | | +--ro pw-id? uint32
| | | +--:(vpls)
| | | | +--ro route-distinguisher?
| | | | | rt:route-distinguisher
| | | | +--ro sender-ve-id? uint16
| | | | +--ro receiver-ve-id? uint16
| | | +--:(mpls-mldp)
| | | +--ro (root-address)?
| | | +--:(ip-address)
| | | | +--ro source-address?
| | | | | inet:ip-address
| | | | +--ro group-ip-address?
| | | | inet:ip-address
| | | +--:(vpn)
| | | | +--ro as-number?
| | | | inet:as-number
| | | +--:(global-id)
| | | +--ro lsp-id? string
| | +--ro system-info
Kumar, et al. Standards Track [Page 9]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| | | +--ro router-id? rt:router-id
| | +--ro egress-intf-name? if:interface-ref
| +--ro dest-test-point
| | +--ro ni? routing-instance-ref
| | +--ro tp-location-type identityref
| | +--ro mac-address
| | | +--ro mac-address yang:mac-address
| | +--ro ipv4-address
| | | +--ro ipv4-address inet:ipv4-address
| | +--ro ipv6-address
| | | +--ro ipv6-address inet:ipv6-address
| | +--ro tp-attribute
| | | +--ro tp-attribute-type?
| | | | address-attribute-type
| | | +--ro (tp-attribute-value)?
| | | +--:(ip-prefix)
| | | | +--ro ip-prefix?
| | | | inet:ip-prefix
| | | +--:(bgp)
| | | | +--ro bgp?
| | | | inet:ip-prefix
| | | +--:(tunnel)
| | | | +--ro tunnel-interface? uint32
| | | +--:(pw)
| | | | +--ro remote-pe-address?
| | | | | inet:ip-address
| | | | +--ro pw-id? uint32
| | | +--:(vpls)
| | | | +--ro route-distinguisher?
| | | | | rt:route-distinguisher
| | | | +--ro sender-ve-id? uint16
| | | | +--ro receiver-ve-id? uint16
| | | +--:(mpls-mldp)
| | | +--ro (root-address)?
| | | +--:(ip-address)
| | | | +--ro source-address?
| | | | | inet:ip-address
| | | | +--ro group-ip-address?
| | | | inet:ip-address
| | | +--:(vpn)
| | | | +--ro as-number?
| | | | inet:as-number
| | | +--:(global-id)
| | | +--ro lsp-id? string
| | +--ro system-info
| | | +--ro router-id? rt:router-id
| | +--ro ingress-intf-name? if:interface-ref
| +--ro sequence-number? uint64
Kumar, et al. Standards Track [Page 10]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| +--ro hop-cnt? uint8
| +--ro session-packet-statistics
| | +--ro rx-packet-count? uint32
| | +--ro tx-packet-count? uint32
| | +--ro rx-bad-packet? uint32
| | +--ro tx-packet-failed? uint32
| +--ro session-error-statistics
| | +--ro packet-loss-count? uint32
| | +--ro loss-ratio? percentage
| | +--ro packet-reorder-count? uint32
| | +--ro packets-out-of-seq-count? uint32
| | +--ro packets-dup-count? uint32
| +--ro session-delay-statistics
| | +--ro time-unit-value? identityref
| | +--ro min-delay-value? uint32
| | +--ro max-delay-value? uint32
| | +--ro average-delay-value? uint32
| +--ro session-jitter-statistics
| +--ro unit-value? identityref
| +--ro min-jitter-value? uint32
| +--ro max-jitter-value? uint32
| +--ro average-jitter-value? uint32
+---x path-discovery {cl-oam:path-discovery}?
+---w input
| +---w destination-tp
| | +---w tp-location-type identityref
| | +---w mac-address
| | | +---w mac-address yang:mac-address
| | +---w ipv4-address
| | | +---w ipv4-address inet:ipv4-address
| | +---w ipv6-address
| | | +---w ipv6-address inet:ipv6-address
| | +---w tp-attribute
| | | +---w tp-attribute-type?
| | | | address-attribute-type
| | | +---w (tp-attribute-value)?
| | | +--:(ip-prefix)
| | | | +---w ip-prefix?
| | | | inet:ip-prefix
| | | +--:(bgp)
| | | | +---w bgp?
| | | | inet:ip-prefix
| | | +--:(tunnel)
| | | | +---w tunnel-interface? uint32
| | | +--:(pw)
| | | | +---w remote-pe-address?
| | | | | inet:ip-address
| | | | +---w pw-id? uint32
Kumar, et al. Standards Track [Page 11]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| | | +--:(vpls)
| | | | +---w route-distinguisher?
| | | | | rt:route-distinguisher
| | | | +---w sender-ve-id? uint16
| | | | +---w receiver-ve-id? uint16
| | | +--:(mpls-mldp)
| | | +---w (root-address)?
| | | +--:(ip-address)
| | | | +---w source-address?
| | | | | inet:ip-address
| | | | +---w group-ip-address?
| | | | inet:ip-address
| | | +--:(vpn)
| | | | +---w as-number?
| | | | inet:as-number
| | | +--:(global-id)
| | | +---w lsp-id? string
| | +---w system-info
| | +---w router-id? rt:router-id
| +---w source-interface if:interface-ref
| +---w outbound-interface if:interface-ref
| +---w vrf?
| | cl-oam:routing-instance-ref
| +---w session-type? enumeration
| +---w max-ttl? uint8
+--ro output
+--ro response-list* [response-index]
| +--ro response-index uint32
| +--ro protocol-id identityref
| +--ro protocol-id-meta-data? identityref
| +--ro status-code identityref
| +--ro status-sub-code identityref
+--ro src-test-point
| +--ro ni? routing-instance-ref
| +--ro tp-location-type identityref
| +--ro mac-address
| | +--ro mac-address yang:mac-address
| +--ro ipv4-address
| | +--ro ipv4-address inet:ipv4-address
| +--ro ipv6-address
| | +--ro ipv6-address inet:ipv6-address
| +--ro tp-attribute
| | +--ro tp-attribute-type?
| | | address-attribute-type
| | +--ro (tp-attribute-value)?
| | +--:(ip-prefix)
| | | +--ro ip-prefix?
| | | inet:ip-prefix
Kumar, et al. Standards Track [Page 12]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| | +--:(bgp)
| | | +--ro bgp?
| | | inet:ip-prefix
| | +--:(tunnel)
| | | +--ro tunnel-interface? uint32
| | +--:(pw)
| | | +--ro remote-pe-address?
| | | | inet:ip-address
| | | +--ro pw-id? uint32
| | +--:(vpls)
| | | +--ro route-distinguisher?
| | | | rt:route-distinguisher
| | | +--ro sender-ve-id? uint16
| | | +--ro receiver-ve-id? uint16
| | +--:(mpls-mldp)
| | +--ro (root-address)?
| | +--:(ip-address)
| | | +--ro source-address?
| | | | inet:ip-address
| | | +--ro group-ip-address?
| | | inet:ip-address
| | +--:(vpn)
| | | +--ro as-number?
| | | inet:as-number
| | +--:(global-id)
| | +--ro lsp-id? string
| +--ro system-info
| +--ro router-id? rt:router-id
+--ro dest-test-point
| +--ro ni? routing-instance-ref
| +--ro tp-location-type identityref
| +--ro mac-address
| | +--ro mac-address yang:mac-address
| +--ro ipv4-address
| | +--ro ipv4-address inet:ipv4-address
| +--ro ipv6-address
| | +--ro ipv6-address inet:ipv6-address
| +--ro tp-attribute
| | +--ro tp-attribute-type?
| | | address-attribute-type
| | +--ro (tp-attribute-value)?
| | +--:(ip-prefix)
| | | +--ro ip-prefix?
| | | inet:ip-prefix
| | +--:(bgp)
| | | +--ro bgp?
| | | inet:ip-prefix
| | +--:(tunnel)
Kumar, et al. Standards Track [Page 13]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| | | +--ro tunnel-interface? uint32
| | +--:(pw)
| | | +--ro remote-pe-address?
| | | | inet:ip-address
| | | +--ro pw-id? uint32
| | +--:(vpls)
| | | +--ro route-distinguisher?
| | | | rt:route-distinguisher
| | | +--ro sender-ve-id? uint16
| | | +--ro receiver-ve-id? uint16
| | +--:(mpls-mldp)
| | +--ro (root-address)?
| | +--:(ip-address)
| | | +--ro source-address?
| | | | inet:ip-address
| | | +--ro group-ip-address?
| | | inet:ip-address
| | +--:(vpn)
| | | +--ro as-number?
| | | inet:as-number
| | +--:(global-id)
| | +--ro lsp-id? string
| +--ro system-info
| +--ro router-id? rt:router-id
+--ro sequence-number? uint64
+--ro hop-cnt? uint8
+--ro session-packet-statistics
| +--ro rx-packet-count? uint32
| +--ro tx-packet-count? uint32
| +--ro rx-bad-packet? uint32
| +--ro tx-packet-failed? uint32
+--ro session-error-statistics
| +--ro packet-loss-count? uint32
| +--ro loss-ratio? percentage
| +--ro packet-reorder-count? uint32
| +--ro packets-out-of-seq-count? uint32
| +--ro packets-dup-count? uint32
+--ro session-delay-statistics
| +--ro time-unit-value? identityref
| +--ro min-delay-value? uint32
| +--ro max-delay-value? uint32
| +--ro average-delay-value? uint32
+--ro session-jitter-statistics
| +--ro unit-value? identityref
| +--ro min-jitter-value? uint32
| +--ro max-jitter-value? uint32
| +--ro average-jitter-value? uint32
+--ro path-verification
Kumar, et al. Standards Track [Page 14]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| +--ro flow-info?
| | string
| +--ro session-path-verification-statistics
| +--ro verified-count? uint32
| +--ro failed-count? uint32
+--ro path-trace-info
+--ro path-trace-info-list* [index]
+--ro index uint32
+--ro ni?
| routing-instance-ref
+--ro tp-location-type identityref
+--ro mac-address
| +--ro mac-address yang:mac-address
+--ro ipv4-address
| +--ro ipv4-address inet:ipv4-address
+--ro ipv6-address
| +--ro ipv6-address inet:ipv6-address
+--ro tp-attribute
| +--ro tp-attribute-type?
| | address-attribute-type
| +--ro (tp-attribute-value)?
| +--:(ip-prefix)
| | +--ro ip-prefix?
| | inet:ip-prefix
| +--:(bgp)
| | +--ro bgp?
| | inet:ip-prefix
| +--:(tunnel)
| | +--ro tunnel-interface?
| | uint32
| +--:(pw)
| | +--ro remote-pe-address?
| | | inet:ip-address
| | +--ro pw-id?
| | uint32
| +--:(vpls)
| | +--ro route-distinguisher?
| | | rt:route-distinguisher
| | +--ro sender-ve-id?
| | | uint16
| | +--ro receiver-ve-id?
| | uint16
| +--:(mpls-mldp)
| +--ro (root-address)?
| +--:(ip-address)
| | +--ro source-address?
| | | inet:ip-address
| | +--ro group-ip-address?
Kumar, et al. Standards Track [Page 15]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
| | inet:ip-address
| +--:(vpn)
| | +--ro as-number?
| | inet:as-number
| +--:(global-id)
| +--ro lsp-id?
| string
+--ro system-info
| +--ro router-id? rt:router-id
+--ro timestamp-type? identityref
+--ro timestamp-64bit
| +--ro timestamp-sec? uint32
| +--ro timestamp-nanosec? uint32
+--ro timestamp-80bit {ptp-long-format}?
| +--ro timestamp-sec? uint64
| +--ro timestamp-nanosec? uint32
+--ro ntp-timestamp-32bit
| {ntp-short-format}?
| +--ro timestamp-sec? uint16
| +--ro timestamp-nanosec? uint16
+--ro icmp-timestamp-32bit {icmp-timestamp}?
| +--ro timestamp-millisec? uint32
+--ro ingress-intf-name?
| if:interface-ref
+--ro egress-intf-name?
| if:interface-ref
+--ro queue-depth? uint32
+--ro transit-delay? uint32
+--ro app-meta-data? uint64
Data Hierarchy of OAM Retrieval Methods
4. OAM Retrieval Methods YANG Module
<CODE BEGINS> file
"ietf-connectionless-oam-methods@2019-04-16.yang"
module ietf-connectionless-oam-methods {
namespace
"urn:ietf:params:xml:ns:yang:ietf-connectionless-oam-methods";
prefix cloam-methods;
import ietf-interfaces {
prefix if;
}
import ietf-connectionless-oam {
prefix cl-oam;
}
Kumar, et al. Standards Track [Page 16]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
organization
"IETF LIME Working Group";
contact
"WG Web: <https://datatracker.ietf.org/wg/lime>
WG List: <mailto:lmap@ietf.org>
Deepak Kumar <dekumar@cisco.com>
Qin Wu <bill.wu@huawei.com>
Srihari Raghavan <rihari@cisco.com>
Michael Wang <wangzitao@huawei.com>
Reshad Rahman <rrahman@cisco.com>";
description
"This YANG module defines the RPC operations for
connectionless OAM to be used within the IETF
in a protocol-independent manner. It is
assumed that each protocol maps corresponding
abstracts to its native format. Each protocol
may extend the YANG data model defined here to
include protocol-specific extensions.
Copyright (c) 2019 IETF Trust and the persons identified as
authors of the code. All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, is permitted pursuant to, and subject
to the license terms contained in, the Simplified BSD License
set forth in Section 4.c of the IETF Trust's Legal Provisions
Relating to IETF Documents
(http://trustee.ietf.org/license-info).
This version of this YANG module is part of RFC 8533; see
the RFC itself for full legal notices.";
revision 2019-04-16 {
description
"Initial revision.";
reference
"RFC 8533: Retrieval Methods YANG Data Model for the Management
of Operations, Administration, and Maintenance (OAM)
Protocols That Use Connectionless Communications";
}
identity protocol-id {
description
"This is the base identity for a generic protocol
ID. The protocol registry can be found at
https://www.iana.org/protocols.";
}
Kumar, et al. Standards Track [Page 17]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
identity protocol-id-internet {
base protocol-id;
description
"Identity for Internet Protocols.";
}
identity protocol-id-proprietary {
base protocol-id;
description
"Identity for proprietary protocols (e.g.,
IP SLA).";
}
identity protocol-id-sfc {
base protocol-id;
description
"Identity for Service Function Chaining.";
}
identity protocol-id-mpls {
base protocol-id;
description
"The MPLS protocol.";
}
identity protocol-id-mpls-tp {
base protocol-id;
description
"The MPLS-TP protocol.";
}
identity protocol-id-twamp {
base protocol-id;
description
"The Two-Way Active Measurement Protocol (TWAMP)
protocol.";
}
identity protocol-id-bier {
base protocol-id;
description
"The Bit Index Explicit Replication (BIER)
protocol.";
}
identity status-code {
description
"This is base identity for a status code.";
Kumar, et al. Standards Track [Page 18]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
}
identity success-reach {
base status-code;
description
"Indicates that the destination being verified
is reachable (see RFC 7276).";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
}
identity fail-reach {
base status-code;
description
"Indicates that the destination being verified
is not reachable (see RFC 7276).";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
}
identity success-path-verification {
base status-code;
description
"Indicates that the path verification is performed
successfully (see RFC 7276).";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
}
identity fail-path-verification {
base status-code;
description
"Indicates that the path verification fails
(see RFC 7276).";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
}
identity status-sub-code {
description
"IdentityBase status-sub-code.";
}
identity invalid-cc {
Kumar, et al. Standards Track [Page 19]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
base status-sub-code;
description
"Indicates that the Continuity Check message is invalid
(see RFC 7276).";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
}
identity invalid-pd {
base status-sub-code;
description
"Indicates that the path discovery message is invalid
(see RFC 7276).";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
}
identity protocol-id-meta-data {
description
"This is the base identity for metadata that corresponds
to the protocol ID.";
}
identity protocol-internet-number {
base protocol-id-meta-data;
description
"Internet Protocol number for standard
Internet Protocols (IANA-assigned Internet
Protocol numbers) to help in protocol processing.
The Protocol Numbers registry can be found at
https://www.iana.org/assignments/protocol-numbers.";
}
grouping rpc-input-parameters {
container destination-tp {
uses cl-oam:tp-address;
description
"Destination test point.";
}
leaf source-interface {
type if:interface-ref;
mandatory true;
description
"Source interface.";
}
leaf outbound-interface {
Kumar, et al. Standards Track [Page 20]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
type if:interface-ref;
mandatory true;
description
"Outbound interface.";
}
leaf vrf {
type cl-oam:routing-instance-ref;
description
"Virtual Routing and Forwarding (VRF) instance.";
}
description
"Grouping for RPC input parameters";
}
rpc continuity-check {
if-feature "cl-oam:continuity-check";
description
"Continuity Check RPC operation as per RFC 7276.";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
input {
uses rpc-input-parameters;
uses cl-oam:session-type {
description
"If session-type is specified, then session-type
must be set to on demand";
}
leaf count {
type uint32 {
range "0..4294967295" {
description
"The overall number of packets to be transmitted
by the sender. The value of the count will be set
to zero (0) on creation and will thereafter
increase monotonically until it reaches a maximum
value of 2^32-1 (4294967295 decimal), when it wraps
around and starts increasing again from zero.";
}
}
default "5";
description
"Specifies the number of
packets that will be sent. By
default, the packet number is
set to 5.";
}
leaf ttl {
Kumar, et al. Standards Track [Page 21]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
type uint8;
default "255";
description
"Time to live (TTL) used to limit the lifetime
of data packets transmitted in the network
to prevent looping. The TTL value is decremented
for every hop that the packet traverses. If the
TTL is zero, the data packet will be discarded.";
}
leaf packet-size {
type uint32 {
range "64..10000";
}
default "64";
description
"Packet size of the Continuity Check message, in octets.
By default, the packet size is set to 64 octets.";
}
}
output {
container response-info {
leaf protocol-id {
type identityref {
base protocol-id;
}
mandatory true;
description
"Protocol used in the Continuity Check message.
This could be a standard protocol (e.g.,
TCP/IP protocols, MPLS, etc.) or a proprietary
protocol as identified by this field.";
}
leaf protocol-id-meta-data {
type identityref {
base protocol-id-meta-data;
}
description
"An optional metadata related to the protocol ID.
For example, this could be the Internet Protocol
number for standard Internet Protocols used for
help with protocol processing.";
}
leaf status-code {
type identityref {
base status-code;
}
mandatory true;
description
Kumar, et al. Standards Track [Page 22]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
"Status code for Continuity Check RPC operation.
This could be a basic status code (e.g., destination
is reachable or destination is not reachable; see RFC 7276)
or some customized status code as identified by this
field.";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
}
leaf status-sub-code {
type identityref {
base status-sub-code;
}
mandatory true;
description
"An optional status-sub-code for Continuity Check
RPC operation. If the basic status code is destination
reachable, this status-sub-code doesn't need to be
specified. If the basic status code is destination
unreachable, the status-sub-code can be used to specify
the detailed reasons. This could be a basic
sub-status-code (such as an invalid Continuity Check) or
other error codes specific to the protocol under use for
the Continuity Checks. For example, if ICMP is the
protocol under use, the error codes defined in RFC 4443
can be used to specify the reasons specific to ICMP.
This technology-specific status-sub-code can be
defined in technology-specific models.";
reference
"RFC 4443: The IETF Administrative Oversight Committee
(IAOC) Member Selection Guidelines and Process.";
}
description
"Status code and status-sub-code for Continuity Check RPC
operation.";
}
uses cl-oam:continuity-check-data;
}
}
rpc path-discovery {
if-feature "cl-oam:path-discovery";
description
"Path discovery RPC operation as per RFC 7276.";
reference
"RFC 7276: An Overview of Operations, Administration, and
Maintenance (OAM) Tools";
input {
Kumar, et al. Standards Track [Page 23]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
uses rpc-input-parameters;
uses cl-oam:session-type {
description
"If session-type is specified, then session-type
must be set to on demand";
}
leaf max-ttl {
type uint8;
default "255";
description
"Maximum TTL indicates the maximum number of hops that
a packet is permitted to travel before being discarded
by a router. By default, the maximum TTL is set to
255.";
}
}
output {
list response-list {
key "response-index";
description
"Path discovery response list.";
leaf response-index {
type uint32;
mandatory true;
description
"Response index.";
}
leaf protocol-id {
type identityref {
base protocol-id;
}
mandatory true;
description
"Protocol used in path discovery. This could be a
standard protocol (e.g., TCP/IP protocols, MPLS, etc.)
or a proprietary protocol as identified by
this field.";
}
leaf protocol-id-meta-data {
type identityref {
base protocol-id-meta-data;
}
description
"An optional metadata related to the protocol ID.
For example, this could be the Internet Protocol
number for standard Internet Protocols used for
help with protocol processing.";
}
Kumar, et al. Standards Track [Page 24]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
leaf status-code {
type identityref {
base status-code;
}
mandatory true;
description
"Status code for Continuity Check RPC operation.
This could be a basic status code (e.g., destination
is reachable or destination is not reachable) or some
customized status code as identified by this field.";
}
leaf status-sub-code {
type identityref {
base status-sub-code;
}
mandatory true;
description
"An optional status-sub-code for Continuity Check
RPC operation. If the basic status code is destination
reachable, this status-sub-code doesn't need to be
specified. If the basic status code is destination
unreachable, the status-sub-code can be used to specify
the detailed reasons. This could be a basic
sub-status-code (such as an invalid Continuity Check) or
other error codes specific to the protocol under use for
Continuity Checks. For example, if ICMP is the protocol
under use, the error codes defined in RFC 4443
can be used to specify the reasons specific to ICMP.
This technology-specific status-sub-code can be defined
in technology-specific models.";
reference
"RFC 4443: The IETF Administrative Oversight Committee
(IAOC) Member Selection Guidelines and Process.";
}
}
uses cl-oam:path-discovery-data;
}
}
}
<CODE ENDS>
Kumar, et al. Standards Track [Page 25]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
5. Security Considerations
The YANG module specified in this document defines a schema for data
that is designed to be accessed via network management protocols such
as NETCONF [RFC6241] or RESTCONF [RFC8040]. The lowest NETCONF layer
is the secure transport layer, and the mandatory-to-implement secure
transport is Secure Shell (SSH) [RFC6242]. The lowest RESTCONF layer
is HTTPS, and the mandatory-to-implement secure transport is TLS
[RFC8446].
The Network Configuration Access Control Model (NACM) [RFC8341]
provides the means to restrict access for particular NETCONF or
RESTCONF users to a preconfigured subset of all available NETCONF or
RESTCONF protocol operations and content.
Some of the RPC operations in this YANG module may be considered
sensitive or vulnerable in some network environments. It is thus
important to control access to these operations. These are the
operations and their sensitivity/vulnerability:
o continuity-check: Generates Continuity Check.
o path-discovery: Generates path discovery.
These operations are used to retrieve the data from the device that
needs to execute the OAM command. Unauthorized source access to some
sensitive information in the above data may be used for network
reconnaissance or lead to denial-of-service attacks on both the local
device and the network.
6. IANA Considerations
This document registers a URI in the "IETF XML Registry" [RFC3688].
The following registration has been made:
URI: urn:ietf:params:xml:ns:yang:ietf-connectionless-oam-methods
Registrant Contact: The IESG. XML: N/A, the requested URI is an XML
namespace.
This document registers a YANG module in the "YANG Module Names"
registry [RFC6020].
name: ietf-connectionless-oam-methods
namespace:
urn:ietf:params:xml:ns:yang:ietf-connectionless-oam-methods
prefix: cloam-methods
reference: RFC 8533
Kumar, et al. Standards Track [Page 26]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
7. References
7.1. Normative References
[RFC3688] Mealling, M., "The IETF XML Registry", BCP 81, RFC 3688,
DOI 10.17487/RFC3688, January 2004,
<https://www.rfc-editor.org/info/rfc3688>.
[RFC6020] Bjorklund, M., Ed., "YANG - A Data Modeling Language for
the Network Configuration Protocol (NETCONF)", RFC 6020,
DOI 10.17487/RFC6020, October 2010,
<https://www.rfc-editor.org/info/rfc6020>.
[RFC6241] Enns, R., Ed., Bjorklund, M., Ed., Schoenwaelder, J., Ed.,
and A. Bierman, Ed., "Network Configuration Protocol
(NETCONF)", RFC 6241, DOI 10.17487/RFC6241, June 2011,
<https://www.rfc-editor.org/info/rfc6241>.
[RFC6242] Wasserman, M., "Using the NETCONF Protocol over Secure
Shell (SSH)", RFC 6242, DOI 10.17487/RFC6242, June 2011,
<https://www.rfc-editor.org/info/rfc6242>.
[RFC7011] Claise, B., Ed., Trammell, B., Ed., and P. Aitken,
"Specification of the IP Flow Information Export (IPFIX)
Protocol for the Exchange of Flow Information", STD 77,
RFC 7011, DOI 10.17487/RFC7011, September 2013,
<https://www.rfc-editor.org/info/rfc7011>.
[RFC792] Postel, J., "Internet Control Message Protocol", STD 5,
RFC 792, DOI 10.17487/RFC0792, September 1981.
[RFC8040] Bierman, A., Bjorklund, M., and K. Watsen, "RESTCONF
Protocol", RFC 8040, DOI 10.17487/RFC8040, January 2017,
<https://www.rfc-editor.org/info/rfc8040>.
[RFC8341] Bierman, A. and M. Bjorklund, "Network Configuration
Access Control Model", STD 91, RFC 8341,
DOI 10.17487/RFC8341, March 2018,
<https://www.rfc-editor.org/info/rfc8341>.
[RFC8446] Rescorla, E., "The Transport Layer Security (TLS) Protocol
Version 1.3", RFC 8446, DOI 10.17487/RFC8446, August 2018,
<https://www.rfc-editor.org/info/rfc8446>.
Kumar, et al. Standards Track [Page 27]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
[RFC8532] Kumar, D., Wang, M., Wu, Q., Ed., Rahman, R., and
S. Raghavan, "Generic YANG Data Model for the Management of
Operations, Administration, and Maintenance (OAM)
Protocols That Use Connectionless Communications",
RFC 8532, DOI 10.17487/RFC8532, April 2019,
<https://www.rfc-editor.org/info/rfc8532>.
7.2. Informative References
[RFC4443] Conta, A., Deering, S., and M. Gupta, Ed., "Internet
Control Message Protocol (ICMPv6) for the Internet
Protocol Version 6 (IPv6) Specification", STD 89,
RFC 4443, DOI 10.17487/RFC4443, March 2006,
<https://www.rfc-editor.org/info/rfc4443>.
[RFC5880] Katz, D. and D. Ward, "Bidirectional Forwarding Detection
(BFD)", RFC 5880, DOI 10.17487/RFC5880, June 2010,
<https://www.rfc-editor.org/info/rfc5880>.
[RFC7276] Mizrahi, T., Sprecher, N., Bellagamba, E., and Y.
Weingarten, "An Overview of Operations, Administration,
and Maintenance (OAM) Tools", RFC 7276,
DOI 10.17487/RFC7276, June 2014,
<https://www.rfc-editor.org/info/rfc7276>.
[RFC8029] Kompella, K., Swallow, G., Pignataro, C., Ed., Kumar, N.,
Aldrin, S., and M. Chen, "Detecting Multiprotocol Label
Switched (MPLS) Data-Plane Failures", RFC 8029,
DOI 10.17487/RFC8029, March 2017,
<https://www.rfc-editor.org/info/rfc8029>.
[RFC8340] Bjorklund, M. and L. Berger, Ed., "YANG Tree Diagrams", BCP 215,
RFC 8340, DOI 10.17487/RFC8340, March 2018,
<https://www.rfc-editor.org/info/rfc8340>.
[RFC8407] Bierman, A., "Guidelines for Authors and Reviewers of
Documents Containing YANG Data Models", BCP 216, RFC 8407,
DOI 10.17487/RFC8407, October 2018,
<https://www.rfc-editor.org/info/rfc8407>.
[YANG-Push]
Clemm, A., Voit, E., Prieto, A., Tripathy, A., Nilsen-
Nygaard, E., Bierman, A., and B. Lengyel, "Subscription to
YANG Datastores", Work in Progress, draft-ietf-netconf-
yang-push-22, February 2019.
Kumar, et al. Standards Track [Page 28]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
Appendix A. Extending Connectionless OAM Method Module Example
The following is an example of extensions possible to the
"ietf-connectionless-oam-methods" YANG data model defined in this document.
The snippet below depicts an example of augmenting the
"ietf-connectionless-oam-methods" YANG data model with ICMP ping
attributes:
augment "/cloam-methods:continuity-check"
+"/cloam-methods:output"{
container session-rtt-statistics{
leaf min-rtt{
type uint32;
description
"This minimum ping round-trip-time (RTT) received.";
}
leaf max-rtt{
type uint32;
description
"This maximum ping RTT received.";
}
leaf avg-rtt{
type uint32;
description
"The current average ping RTT.";
}
description
"This container presents the ping RTT statistics.";
}
}
A.1. Example of New Retrieval Procedures Model
As discussed in the Introduction section of this document, the new
retrieval procedures can be defined for retrieval of the same data
defined by the base YANG data model for connectionless OAM protocols.
This appendix demonstrates how the base connectionless OAM data model
can be extended to support persistent data retrieval besides
on-demand retrieval procedures defined in Section 3, i.e., first
retrieve a persistent-id based on the destination test point location
information, and then retrieve the export details based on
persistent-id. Internet Protocol Flow Information Export (IPFIX)
[RFC7011] or YANG-Push [YANG-Push] are currently outlined here as
data export options. Additional export options can be added in the
future.
Kumar, et al. Standards Track [Page 29]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
The YANG module "example-cl-oam-persistent-methods" shown below is
intended as an illustration rather than a real definition of an RPC
operation model for persistent data retrieval. For the sake of
brevity, this module does not obey all the guidelines specified in
[RFC8407].
module example-cl-oam-persistent-methods {
namespace "http://example.com/cl-oam-persistent-methods";
prefix pcloam-methods;
import ietf-interfaces {
prefix if;
}
import ietf-connectionless-oam {
prefix cl-oam;
}
import ietf-yang-types {
prefix yang;
}
identity export-method {
description
"Base identity to represent a conceptual
export-method.";
}
identity ipfix-export {
base export-method;
description
"IPFIX-based export. Configuration provided
separately.";
}
identity yang-push-export {
base export-method;
description
"YANG-Push from draft-ietf-netconf-yang-push.";
}
identity protocol-id {
description
"A generic protocol identifier.";
}
identity status-code {
description
"Base status code.";
}
Kumar, et al. Standards Track [Page 30]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
identity success-reach {
base status-code;
description
"Indicates that the destination being verified
is reachable.";
}
identity fail-reach {
base status-code;
description
"Indicates that the destination being verified
is not reachable";
}
identity success-path-verification {
base status-code;
description
"Indicates that the path verification is performed
successfully.";
}
identity fail-path-verification {
base status-code;
description
"Indicates that the path verification fails.";
}
identity status-sub-code {
description
"Base status-sub-code.";
}
identity invalid-cc {
base status-sub-code;
description
"Indicates that the Continuity Check message is
invalid.";
}
identity invalid-pd {
base status-sub-code;
description
"Indicates that the path discovery message is invalid.";
}
typedef export-method {
type identityref {
base export-method;
Kumar, et al. Standards Track [Page 31]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
}
description
"Export method type.";
}
typedef change-type {
type enumeration {
enum create {
description
"Change due to a create.";
}
enum delete {
description
"Change due to a delete.";
}
enum modify {
description
"Change due to an update.";
}
}
description
"Different types of changes that may occur.";
}
rpc cc-get-persistent-id {
if-feature "cl-oam:continuity-check";
description
"Obtains Continuity Check persistent identification
given mapping parameters as input.";
input {
container destination-tp {
uses cl-oam:tp-address;
description
"Destination test point.";
}
uses cl-oam:session-type;
leaf source-interface {
type if:interface-ref;
description
"Source interface.";
}
leaf outbound-interface {
type if:interface-ref;
description
"Outbound interface.";
}
leaf vrf {
type cl-oam:routing-instance-ref;
Kumar, et al. Standards Track [Page 32]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
description
"VRF instance.";
}
}
output {
container error-code {
leaf protocol-id {
type identityref {
base protocol-id;
}
mandatory true;
description
"Protocol used. This could be a standard
protocol (e.g., TCP/IP protocols, MPLS, etc.)
or a proprietary protocol as identified by
this field.";
}
leaf protocol-id-meta-data {
type uint64;
description
"An optional metadata related to the protocol ID.
For example, this could be the Internet Protocol
number for standard Internet Protocols used for
help with protocol processing.";
}
leaf status-code {
type identityref {
base status-code;
}
mandatory true;
description
"Status code.";
}
leaf status-sub-code {
type identityref {
base status-sub-code;
}
mandatory true;
description
"Sub code for the Continuity Check.";
}
description
"Status code and sub code.";
}
leaf cc-persistent-id {
type string;
description
"Id to act as a cookie.";
Kumar, et al. Standards Track [Page 33]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
}
}
}
rpc cc-persistent-get-export-details {
if-feature "cl-oam:continuity-check";
description
"Given the persistent ID, gets the configuration
options and details related to the configured data
export.";
input {
leaf cc-persistent-id {
type string;
description
"Persistent ID for use as a key in search.";
}
}
output {
container error-code {
leaf protocol-id {
type identityref {
base protocol-id;
}
mandatory true;
description
"Protocol used. This could be a standard
protocol (e.g., TCP/IP protocols, MPLS, etc.)
or a proprietary protocol as identified by
this field.";
}
leaf protocol-id-meta-data {
type uint64;
description
"An optional metadata related to the protocol ID.
For example, this could be the Internet Protocol
number for standard Internet Protocols used for
help with protocol processing.";
}
leaf status-code {
type identityref {
base status-code;
}
mandatory true;
description
"Status code.";
}
leaf status-sub-code {
type identityref {
Kumar, et al. Standards Track [Page 34]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
base status-sub-code;
}
mandatory true;
description
"Sub code for the Continuity Check.";
}
description
"Status code and sub code.";
}
leaf data-export-method {
type export-method;
description
"Type of export in use.";
}
choice cc-trigger {
description
"Necessary conditions for
periodic or on-change trigger.";
case periodic {
description
"Periodic reports.";
leaf period {
type yang:timeticks;
description
"Time interval between reports.";
}
leaf start-time {
type yang:date-and-time;
description
"Timestamp from which reports were started.";
}
}
case on-change {
description
"On-change trigger and not periodic.";
leaf all-data-on-start {
type boolean;
description
"Full update done on start or not.";
}
leaf-list excluded-change {
type change-type;
description
"Changes that will not trigger an update.";
}
}
}
}
Kumar, et al. Standards Track [Page 35]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
}
rpc pd-get-persistent-id {
if-feature "cl-oam:path-discovery";
description
"Obtains persistent path discovery identification.";
input {
container destination-tp {
uses cl-oam:tp-address;
description
"Destination test point.";
}
uses cl-oam:session-type;
leaf source-interface {
type if:interface-ref;
description
"Source interface.";
}
leaf outbound-interface {
type if:interface-ref;
description
"Outbound interface.";
}
leaf vrf {
type cl-oam:routing-instance-ref;
description
"VRF";
}
}
output {
list response-list {
key "response-index";
description
"Path discovery response list.";
leaf response-index {
type uint32;
mandatory true;
description
"Response index.";
}
leaf protocol-id {
type identityref {
base protocol-id;
}
mandatory true;
description
"Protocol used. This could be a standard
protocol (e.g., TCP/IP protocols, MPLS, etc.)
Kumar, et al. Standards Track [Page 36]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
or a proprietary protocol as identified by
this field.";
}
leaf protocol-id-meta-data {
type uint64;
description
"An optional metadata related to the protocol ID.
For example, this could be the Internet Protocol
number for standard Internet Protocols used for
help with protocol processing.";
}
leaf status-code {
type identityref {
base status-code;
}
mandatory true;
description
"Status code for persistent path discovery
information.";
}
leaf status-sub-code {
type identityref {
base status-sub-code;
}
mandatory true;
description
"Sub code for persistent path discovery
information.";
}
leaf pd-persistent-id {
type string;
description
"Id to act as a cookie.";
}
}
}
}
rpc pd-persistent-get-export-details {
if-feature "cl-oam:path-discovery";
description
"Given the persistent ID, gets the configuration
options and details related to the configured data
export.";
input {
leaf cc-persistent-id {
type string;
description
Kumar, et al. Standards Track [Page 37]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
"Persistent ID for use as a key in search.";
}
}
output {
list response-list {
key "response-index";
description
"Path discovery response list.";
leaf response-index {
type uint32;
mandatory true;
description
"Response index.";
}
leaf protocol-id {
type identityref {
base protocol-id;
}
mandatory true;
description
"Protocol used. This could be a standard
protocol (e.g., TCP/IP protocols, MPLS, etc.)
or a proprietary protocol as identified by
this field.";
}
leaf protocol-id-meta-data {
type uint64;
description
"An optional metadata related to the protocol ID.
For example, this could be the Internet Protocol
number for standard Internet Protocols used for
help with protocol processing.";
}
leaf status-code {
type identityref {
base status-code;
}
mandatory true;
description
"Status code for persistent path discovery
creation.";
}
leaf status-sub-code {
type identityref {
base status-sub-code;
}
mandatory true;
description
Kumar, et al. Standards Track [Page 38]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
"Sub code for persistent path discovery
creation.";
}
leaf data-export-method {
type export-method;
description
"Type of export.";
}
choice pd-trigger {
description
"Necessary conditions
for periodic or on-change
trigger.";
case periodic {
description
"Periodic reports.";
leaf period {
type yang:timeticks;
description
"Time interval between reports.";
}
leaf start-time {
type yang:date-and-time;
description
"Timestamp from which reports are started.";
}
}
case on-change {
description
"On-change trigger and not periodic.";
leaf all-data-on-start {
type boolean;
description
"Full update done on start or not.";
}
leaf-list excluded-change {
type change-type;
description
"Changes that will not trigger an update.";
}
}
}
}
}
}
}
Kumar, et al. Standards Track [Page 39]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
Acknowledgements
The authors of this document would like to thank Elwyn Davies, Alia
Atlas, Brian E. Carpenter, Greg Mirsky, Adam Roach, Alissa Cooper,
Eric Rescorla, Ben Campbell, Benoit Claise, Kathleen Moriarty, Carlos
Pignataro, Benjamin Kaduk, and others for their substantive review,
comments, and proposals to improve the document.
Kumar, et al. Standards Track [Page 40]
^L
RFC 8533 YANG Model for CL OAM Retrieval Methods April 2019
Authors' Addresses
Deepak Kumar
CISCO Systems
510 McCarthy Blvd.
Milpitas, CA 95035
United States of America
Email: dekumar@cisco.com
Michael Wang
Huawei Technologies, Co., Ltd
101 Software Avenue, Yuhua District
Nanjing 210012
China
Email: wangzitao@huawei.com
Qin Wu (editor)
Huawei
101 Software Avenue, Yuhua District
Nanjing, Jiangsu 210012
China
Email: bill.wu@huawei.com
Reshad Rahman
CISCO Systems
2000 Innovation Drive
Kanata, Ontario K2K 3E8
Canada
Email: rrahman@cisco.com
Srihari Raghavan
CISCO Systems
Tril Infopark Sez, Ramanujan IT City
Neville Block, 2nd floor, Old Mahabalipuram Road
Chennai, Tamil Nadu 600113
India
Email: srihari@cisco.com
Kumar, et al. Standards Track [Page 41]
^L
|