RFC Errata
RFC 8532, "Generic YANG Data Model for the Management of Operations, Administration, and Maintenance (OAM) Protocols That Use Connectionless Communications", April 2019
Source of RFC: lime (ops)
Errata ID: 8521
Status: Reported
Type: Technical
Publication Format(s) : TEXT
Reported By: Mohamed Boucadair
Date Reported: 2025-07-29
Section 5 says:
anydata root {
yangmnt:mount-point "root";
description
"Root for models supported per test point.";
}
It should say:
container root {
description
"Root for models supported per test point.";
yangmnt:mount-point "root";
}
Notes:
The following error is displayed against the module (e.g., https://www.yangcatalog.org/yangvalidator?rfc=8532):
=
libyang err : Ext plugin "ly2 schema mount v1": Extension "yangmnt:mount-point" instance allowed only in container or list statement. (Path "/ietf-connectionless-oam:test-point-location-info/root/{extension='yangmnt:mount-point'}/root".)
==
Per RFC 8528:
o mount point: A container or a list node whose definition contains
the "mount-point" extension statement.
Adding a surrounding container or simply changing "anydata root" into "container root" would fix the issue.
