我对 CLI 的限制有疑问。我一直在调查 yang RFC7950 ( https://www.rfc-editor.org/rfc/rfc7950 ) 但我什么也没找到。
这是一个例子。
grouping httpGroup {
list http-list{
key "value";
leaf value {
status current { yexte:preliminary; }
description "value to match";
must "(not(../protocol)) and (not(../network-port)))" {
error-message "Not compatible with protocol or non-TCP ports";
}
type string { length "1..255"; }
}
}
}
该组将包含在具有以下结构的几个组中:
list and {
leaf-list protocol { ..... }
uses A;
list or {
leaf-list protocol { ..... }
uses A;
}
}
grouping A {
status{}
leaf-list protocol { ..... }
leaf-list X { ..... }
uses httpGroup;
}
我需要包含在 httpGroup 中的这个必须条件来验证协议值没有在层次结构的任何级别中配置。
我已经添加了更多的亲戚路径来搜索这个节点:
// same level
not(../protocol)
// next level
not(../and/protocol)
not(../or/protocol)
// previous level
not(../../protocol)
not(../../protocol)
//recursively down previous level
not(../../and/protocol)
not(../../or/protocol)
// third level
not(../and/or/protocol)
not(../and/and/protocol)
如您所见,这根本不是一个干净的解决方案。
有什么方法可以为整个层次结构完成,例如:
if protocol node exists and http-list exists then error.
先感谢您。