4 Standards
4.1 YANG
YANG and XML are central to Clixon. Yang modules are used as a specification for encoding XML or JSON configuration and state data. The YANG spec is also used to generate an interactive CLI, NETCONF and RESTCONF clients, as well as the format of the XML datastore.
The YANG standards that Clixon follows include (see also netconf):
Clixon deviates from the YANG standard as follows (reference to RFC7950 sections in parenthesis):
Not implemented:
instance-identifier type (9.13)
status (7.21.2)
YIN (13)
error-message is not implemented as sub-statement of “range”, “length” and “pattern”
quoted string concatenation using + for other than the “string” non.-terminal (eg identifer-args)
Clixon supports the following extended XPath functions (10):
current()
re-match()
deref()
derived-from(),
derived-from-or-self()
bit-is-set()
The following extended XPath function is not supported (10):
enum-value()
See also support of standard XPath functions XML and XPath
4.1.1 Regular expressions
Clixon supports two regular expression engines:
- Posix
The default method, The regexps:s are translated to posix before matching with the standard Linux regex engine. This translation is not complete but can be considered “good-enough” for most yang use-cases. For reference, all standard Yang models have been tested.
- Libxml2
Libxml2 uses the XSD regex engine. This is a complete XSD engine but you need to compile and link with libxml2 which may add overhead.
To use libxml2 in clixon you need enable libxml2 in both cligen and clixon:
./configure --with-libxml2 # both cligen and clixon
You then need to set the following configure option:
<CLICON_YANG_REGEXP>libxml2</CLICON_YANG_REGEXP>
4.1.2 Metadata
Clixon implements Defining and Using Metadata with YANG RFC 7952 for XML and JSON.
This means that Yang-derived meta-data defined with:
md:annotation <name>
is defined for attributes so that they can be mapped from XML to JSON, for example.
Assigned meta-data are hardcoded. The following attributes are defined:
ietf-netconf-with-defaults:default from RFC 6243 / RFC 8040
4.1.3 Schema mount
Yang schema mount is supported as defined in: RFC 8528: YANG Schema Mount .
Enable by the CLICON_YANG_SCHEMA_MOUNT configuration option.
4.2 NETCONF
Clixon implements the following NETCONF RFC:s:
RFC 6242: Using the NETCONF Configuration Protocol over Secure Shell (SSH)
RFC 8071: NETCONF Call Home and RESTCONF Call Home. NETCONF over SSH (external) and RESTCONF call home (internal) over TLS are implemented.
RFC 8341: Network Configuration Access Control Model (NACM). Notification not implemented.
RFC 9144: Comparison of Network Management Datastore Architecture (NMDA) Datastores. all, report-origin, subtree-filter not implemented
The following RFC6241 capabilities/features are hardcoded in Clixon:
:candidate (RFC6241 8.3)
:validate (RFC6241 8.6)
:xpath (RFC6241 8.9)
:notification (RFC5277)
:with-defaults (RFC6243)
The following features are optional and can be enabled by setting CLICON_FEATURE:
:confirmed-commit:1.1 (RFC6241 8.4)
:startup (RFC6241 8.7)
:writable-running (RFC6241 8.2) - just write to running, no commit semantics
Clixon does not support the following NETCONF features:
:url capability
copy-config source config
edit-config testopts
edit-config erropts
edit-config config-text
edit-config operation
Further, in get-config filter expressions, the RFC6241 XPath Capability is preferred over default subtrees. This has two reasons:
XPath has better performance since the underlying system uses xpath, and subtree filtering is done after the complete tree is retrieved.
Subtree filtering does not support namespaces.
Clixon supports netconf locks in default settings.
4.2.1 RFC 6022 YANG Module for NETCONF Monitoring
Clixon extends the RFC 6022 session parameter transport with “cli”, “restconf”, “netconf” and “snmp”. In particular, the clixon_netconf application uses stdio to get input and print output and is used in a “piping” fashion, for example directly in a terminal shell or as a part of a SSH sub-system, and therefore has no direct knowledge of whether the NETCONF transport is over SSH or not.
The source-host parameter is set only in certain
circumstances when the source host is in fact known. This includes native RESTCONF for example.
Further, hello counters are backend based, ie the internal
protocol, which means hellos from RESTCONF, SNMP and CLI clients are
included and that eventual dropped hello messages from external NETCONF sessions are not.
4.2.2 Default handling
Clixon treats default data according to what is defined as explicit basic mode in RFC 6243: With-defaults Capability for NETCONF, i.e. the server considers any data node that is not explicitly set data to be default data.
One effect is that if you view the contents of datastores (or import/export them), they should be in explicit basic mode.
The :with-defaults capability indicates that clixon default behaviour is explicit and also indicates that additional retrieval modes supported by the server are:.
explicit
trim
report-all
report-all-tagged
Internally in memory, however, report-all is used.
4.2.3 Private candidate
Clixon implements private candidate as defined in NETCONF and RESTCONF Private Candidate Datastores with the following restrictions:
revert-on-conflictis the only resolution mode supportedNo augments on compare operation
Leaf-list conflict resolution fine-grained as opposed to draft
Delete candidate on commit (draft is unclear)
<delete-config>is not possible on candidate configuration (draft vs RFC6241)<get-data>and<edit-data>is not supported by Clixon (RFC8526)Clixon fulfils RFC6241 regarding confirmed commit, but not draft proposal on immediate revert of unconfirmed configuration if session disconnects.
4.3 RESTCONF
Clixon supports the two RESTCONF compile-time variants: FCGI and Native. Both implements RFC 8040: RESTCONF Protocol.
The following features of RFC8040 are supported:
OPTIONS, HEAD, GET, POST, PUT, DELETE, PATCH
Stream notifications (Sec 6)
Query parameters: insert, point, content, depth, start-time, stop-time, with-defaults and fields (root only)
Monitoring (Sec 9)
The following features are not implemented:
ETag/Last-Modified
Query parameters: filter
RESTCONF event notification as described in RFC7950 section 6 is supported as follows:
Limited to regular subscription, start-time and stop-time
NMDA is partly supported according to RFC 8324 and RFC 8527. With-defaults and with-origin are not implemented.
RFC 8072: YANG Patch Media Type is not implemented.
In the native mode, Clixon also supports:
HTTP/1.1 as transport using a native implementation (RFC 7230),
HTTP/2 as transport implemented by libnghttp2 (RFC7540),
Transport Layer Security (TLS) implemented by libopenssl, versions 1.1.1 and 3.0
ALPN as defined in RFC 7301 for http/1, http/2 protocol selection by libopenssl
4.4 SNMP
The Clixon-SNMP frontend implements the MIB-YANG mapping as defined in RFC 6643.
4.5 XML and XPath
Clixon has its own implementation of XML and XPath. See more in the detailed API reference.
The XML-related standards include:
XML 1.0. (DOCTYPE/ DTD not supported)
Clixon XML supports version and UTF-8 only.
The following XPath axes are supported:
child,
descendant,
descendant-or-self,
self
parent
The following xpath axes are not supported:
preceding
preceding_sibling
namespace
following_sibling
following
ancestor
ancestor_or_self
attribute
The following XPath functions as defined in Section 2.3 / 4 of the XPath 1.0 standard are supported:
position
count
local-name
name
string
concat
starts-with
contains
substring-before
substring-after
substring
string-length
translate
boolean
not
true
false
number
text
node
The following standard XPath functions are not supported:
ceiling
comment
floor
id
lang
last
namespace-uri
normalize-space
processing-instructions
round
sum
4.6 Pagination
The pagination solution is based on the following drafts:
https://www.ietf.org/archive/id/draft-ietf-netconf-list-pagination-07.html
https://www.ietf.org/archive/id/draft-ietf-netconf-list-pagination-nc-07.html
https://www.ietf.org/archive/id/draft-ietf-netconf-list-pagination-rc-07.html
Clixon implements all attributes except cursor, locale, sublist-limit and remaining.
See Pagination section for more info.
4.7 Unicode
Unicode is not supported in YANG and XML.
4.8 JSON
Clixon implements JSON according to:
4.9 gRPC/gNMI
Clixon introduces a first preliminary gRPC/gNMI interface in version 7.8 according to: https://openconfig.net/docs/gnmi/gnmi-specification.
Features include:
nghttp2 server, gRPC framing, trailers
Capabilities, returns loaded YANG modules + encodings (JSON_IETF, JSON, ASCII)
Get(XPath handling, namespace handling),
Set(update/replace/delete)
Subscribe RPC (ONCE)
Module qualified names, unqualified node fallback
Bool, double, ascii typed values
Limitations include:
TLS (high prio)
NACM (depends on TLS)
Set leaf-list Set
Subscribe RPC (STREAM/POLL)
Notifications
Mount-point support