doc: cleanup auto-converted "list" style mistake

Signed-off-by: Christian Hopps <chopps@labn.net>
This commit is contained in:
Christian Hopps 2024-01-27 04:27:35 -05:00
parent 3f96dcfa86
commit e2a9eb908f
7 changed files with 255 additions and 195 deletions

View File

@ -34,13 +34,16 @@ CLI on a separate program
The flexible design of the northbound architecture opens the door to
move the CLI to a separate program in the long-term future. Some
advantages of doing so would be: \* Treat the CLI as just another
northbound client, instead of having CLI commands embedded in the
binaries of all FRR daemons. \* Improved robustness: bugs in CLI
commands (e.g. null-pointer dereferences) or in the CLI code itself
wouldnt affect the FRR daemons. \* Foster innovation by allowing other
CLI programs to be implemented, possibly using higher level programming
languages.
advantages of doing so would be:
* Treat the CLI as just another northbound client, instead of having CLI
commands embedded in the binaries of all FRR daemons.
* Improved robustness: bugs in CLI commands (e.g. null-pointer dereferences) or
in the CLI code itself wouldnt affect the FRR daemons.
* Foster innovation by allowing other CLI programs to be implemented, possibly
using higher level programming languages.
The problem, however, is that the northbound retrofitting process will
convert only the CLI configuration commands and EXEC commands in a first
@ -232,40 +235,42 @@ vtysh support
As explained in the [[Transactional CLI]] page, all commands introduced
by the transactional CLI are not yet available in *vtysh*. This needs to
be addressed in the short term future. Some challenges for doing that
work include: \* How to display configurations (running, candidates and
rollbacks) in a more clever way? The implementation of the
``show running-config`` command in *vtysh* is not something that should
be followed as an example. A better idea would be to fetch the desired
configuration from all daemons (encoded in JSON for example), merge them
all into a single ``lyd_node`` variable and then display the combined
configurations from this variable (the configuration merges would
transparently take care of combining the shared configuration objects).
In order to be able to manipulate the JSON configurations, *vtysh* will
need to load the YANG modules from all daemons at startup (this might
have a minimal impact on startup time). The only issue with this
approach is that the ``cli_show()`` callbacks from all daemons are
embedded in their binaries and thus not accessible externally. It might
be necessary to compile these callbacks on a separate shared library so
that they are accessible to *vtysh* too. Other than that, displaying the
combined configurations in the JSON/XML formats should be
straightforward. \* With the current design, transaction IDs are
per-daemon and not global across all FRR daemons. This means that the
same transaction ID can represent different transactions on different
daemons. Given this observation, how to implement the
``rollback configuration`` command in *vtysh*? The easy solution would
be to add a ``daemon WORD`` argument to specify the context of the
rollback, but per-daemon rollbacks would certainly be confusing and
convoluted to end users. A better idea would be to attack the root of
the problem: change configuration transactions to be global instead of
being per-daemon. This involves a bigger change in the northbound
architecture, and would have implications on how transactions are stored
in the SQL database (daemon-specific and shared configuration objects
would need to have their own tables or columns). \* Loading
configuration files in the JSON or XML formats will be tricky, as
*vtysh* will need to know which sections of the configuration should be
sent to which daemons. *vtysh* will either need to fetch the YANG
modules implemented by all daemons at runtime or obtain this information
at compile-time somehow.
work include:
* How to display configurations (running, candidates and rollbacks) in a more
clever way? The implementation of the ``show running-config`` command in
*vtysh* is not something that should be followed as an example. A better idea
would be to fetch the desired configuration from all daemons (encoded in JSON
for example), merge them all into a single ``lyd_node`` variable and then
display the combined configurations from this variable (the configuration
merges would transparently take care of combining the shared configuration
objects). In order to be able to manipulate the JSON configurations, *vtysh*
will need to load the YANG modules from all daemons at startup (this might
have a minimal impact on startup time). The only issue with this approach is
that the ``cli_show()`` callbacks from all daemons are embedded in their
binaries and thus not accessible externally. It might be necessary to compile
these callbacks on a separate shared library so that they are accessible to
*vtysh* too. Other than that, displaying the combined configurations in the
JSON/XML formats should be straightforward.
* With the current design, transaction IDs are per-daemon and not global across
all FRR daemons. This means that the same transaction ID can represent
different transactions on different daemons. Given this observation, how to
implement the ``rollback configuration`` command in *vtysh*? The easy solution
would be to add a ``daemon WORD`` argument to specify the context of the
rollback, but per-daemon rollbacks would certainly be confusing and convoluted
to end users. A better idea would be to attack the root of the problem: change
configuration transactions to be global instead of being per-daemon. This
involves a bigger change in the northbound architecture, and would have
implications on how transactions are stored in the SQL database
(daemon-specific and shared configuration objects would need to have their own
tables or columns).
* Loading configuration files in the JSON or XML formats will be tricky, as
*vtysh* will need to know which sections of the configuration should be sent
to which daemons. *vtysh* will either need to fetch the YANG modules
implemented by all daemons at runtime or obtain this information at
compile-time somehow.
Detecting type mismatches at compile-time
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -42,30 +42,34 @@ and
`CoAP <https://www.ietf.org/archive/id/draft-vanderstok-core-comi-11.txt>`__.
In addition to being management-protocol independent, some other
advantages of using YANG in FRR are listed below: \* Have a formal
contract between FRR and application developers (management clients). A
management client that has access to the FRR YANG models knows about all
existing configuration options available for use. This information can
be used to auto-generate user-friendly interfaces like Web-UIs, custom
CLIs and even code bindings for several different programming languages.
Using `PyangBind <https://github.com/robshakir/pyangbind>`__, for
example, its possible to generate Python class hierarchies from YANG
models and use these classes to instantiate objects that mirror the
structure of the YANG modules and can be serialized/deserialized using
different encoding formats. \* Support different encoding formats for
instance data. Currently only JSON and XML are supported, but
`GPB <https://developers.google.com/protocol-buffers/>`__ and
`CBOR <http://cbor.io/>`__ are other viable options in the long term.
Additional encoding formats can be implemented in the *libyang* library
for optimal performance, or externally by translating data to/from one
of the supported formats (with a performance penalty). \* Have a formal
mechanism to introduce backward-incompatible changes based on `semantic
versioning <http://www.openconfig.net/docs/semver/>`__ (not part of the
YANG standard, which allows backward-compatible module updates only). \*
Provide seamless support to the industry-standard NETCONF/RESTCONF
protocols as alternative management APIs. If FRR configuration/state
data is modeled using YANG, supporting YANG-based protocols like NETCONF
and RESTCONF is much easier.
advantages of using YANG in FRR are listed below:
* Have a formal contract between FRR and application developers (management
clients). A management client that has access to the FRR YANG models knows
about all existing configuration options available for use. This information
can be used to auto-generate user-friendly interfaces like Web-UIs, custom
CLIs and even code bindings for several different programming languages. Using
`PyangBind <https://github.com/robshakir/pyangbind>`__, for example, its
possible to generate Python class hierarchies from YANG models and use these
classes to instantiate objects that mirror the structure of the YANG modules
and can be serialized/deserialized using different encoding formats.
* Support different encoding formats for instance data. Currently only JSON and
XML are supported, but `GPB
<https://developers.google.com/protocol-buffers/>`__ and `CBOR
<http://cbor.io/>`__ are other viable options in the long term. Additional
encoding formats can be implemented in the *libyang* library for optimal
performance, or externally by translating data to/from one of the supported
formats (with a performance penalty).
* Have a formal mechanism to introduce backward-incompatible changes based on
`semantic versioning <http://www.openconfig.net/docs/semver/>`__ (not part of
the YANG standard, which allows backward-compatible module updates only).
* Provide seamless support to the industry-standard NETCONF/RESTCONF protocols
as alternative management APIs. If FRR configuration/state data is modeled
using YANG, supporting YANG-based protocols like NETCONF and RESTCONF is much
easier.
As important as shifting to a model-driven management paradigm, the new
northbound architecture also introduces the concept of configuration

View File

@ -330,10 +330,12 @@ CLI can take too long, potentially long enough to the point of
triggering some protocol timeouts and bringing sessions down.
To avoid this kind of problem, northbound clients are encouraged to do
one of the following: \* Create a separate pthread for handling requests
to fetch operational data. \* Iterate over YANG lists and leaf-lists
asynchronously, returning a maximum number of elements per time instead
of returning all elements in one shot.
one of the following:
* Create a separate pthread for handling requests to fetch operational data.
* Iterate over YANG lists and leaf-lists asynchronously, returning a maximum
number of elements per time instead of returning all elements in one shot.
In order to handle both cases correctly, the ``get_next`` callbacks need
to use locks to prevent the YANG lists from being modified while they

View File

@ -33,34 +33,41 @@ possible to facilitate the process of writing module translators using
the [[YANG module translator]]. As an example, the frr-ripd YANG module
incorporated several parts of the IETF RIP YANG module. The repositories
below contain big collections of YANG models that might be used as a
reference: \* https://github.com/YangModels/yang \*
https://github.com/openconfig/public
reference:
* https://github.com/YangModels/yang
* https://github.com/openconfig/public
When writing a YANG module, its highly recommended to follow the
guidelines from `RFC 6087 <https://tools.ietf.org/html/rfc6087>`__. In
general, most commands should be modeled fairly easy. Here are a few
guidelines specific to authors of FRR YANG models: \* Use
presence-containers or lists to model commands that change the CLI node
(e.g. ``router rip``, ``interface eth0``). This way, if the
presence-container or list entry is removed, all configuration options
below them are removed automatically (exactly like the CLI behaves when
a configuration object is removed using a *no* command). This
recommendation is orthogonal to the `YANG authoring guidelines for
OpenConfig
models <https://github.com/openconfig/public/blob/master/doc/openconfig_style_guide.md>`__
where the use of presence containers is discouraged. OpenConfig YANG
models however were not designed to replicate the behavior of legacy CLI
commands. \* When using YANG lists, be careful to identify what should
be the key leaves. In the ``offset-list WORD <in|out> (0-16) IFNAME``
command, for example, both the direction (``<in|out>``) and the
interface name should be the keys of the list. This can be only known by
analyzing the data structures used to store the commands. \* For
clarity, use non-presence containers to group leaves that are associated
to the same configuration command (as well see later, this also
facilitate the process of writing ``cli_show`` callbacks). \* YANG
leaves of type *enumeration* should define explicitly the value of each
*enum* option based on the value used in the FRR source code. \* Default
values should be taken from the source code whenever they exist.
guidelines specific to authors of FRR YANG models:
* Use presence-containers or lists to model commands that change the CLI node
(e.g. ``router rip``, ``interface eth0``). This way, if the presence-container
or list entry is removed, all configuration options below them are removed
automatically (exactly like the CLI behaves when a configuration object is
removed using a *no* command). This recommendation is orthogonal to the `YANG
authoring guidelines for OpenConfig models
<https://github.com/openconfig/public/blob/master/doc/openconfig_style_guide.md>`__
where the use of presence containers is discouraged. OpenConfig YANG models
however were not designed to replicate the behavior of legacy CLI commands.
* When using YANG lists, be careful to identify what should be the key leaves.
In the ``offset-list WORD <in|out> (0-16) IFNAME`` command, for example, both
the direction (``<in|out>``) and the interface name should be the keys of the
list. This can be only known by analyzing the data structures used to store
the commands.
* For clarity, use non-presence containers to group leaves that are associated
to the same configuration command (as well see later, this also facilitate
the process of writing ``cli_show`` callbacks).
* YANG leaves of type *enumeration* should define explicitly the value of each
*enum* option based on the value used in the FRR source code.
* Default values should be taken from the source code whenever they exist.
Some commands are more difficult to model and demand the use of more
advanced YANG constructs like *choice*, *when* and *must* statements.
@ -729,15 +736,17 @@ Configuration options are edited individually
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Several CLI commands edit multiple configuration options at the same
time. Some examples taken from ripd: \*
``timers basic (5-2147483647) (5-2147483647) (5-2147483647)`` -
*/frr-ripd:ripd/instance/timers/flush-interval* -
*/frr-ripd:ripd/instance/timers/holddown-interval* -
*/frr-ripd:ripd/instance/timers/update-interval* \*
``distance (1-255) A.B.C.D/M [WORD]`` -
*/frr-ripd:ripd/instance/distance/source/prefix* -
*/frr-ripd:ripd/instance/distance/source/distance* -
*/frr-ripd:ripd/instance/distance/source/access-list*
time. Some examples taken from ripd:
* ``timers basic (5-2147483647) (5-2147483647) (5-2147483647)``
* */frr-ripd:ripd/instance/timers/flush-interval*
* */frr-ripd:ripd/instance/timers/holddown-interval*
* */frr-ripd:ripd/instance/timers/update-interval*
* ``distance (1-255) A.B.C.D/M [WORD]``
* */frr-ripd:ripd/instance/distance/source/prefix*
* */frr-ripd:ripd/instance/distance/source/distance*
* */frr-ripd:ripd/instance/distance/source/access-list*
In the new northbound model, theres one or more separate callbacks for
each configuration option. This usually has implications when converting
@ -1037,16 +1046,23 @@ changing the candidate configuration.
the northbound callbacks are not involved).
Other important details to keep in mind while rewriting the CLI
commands: \* ``nb_cli_cfg_change()`` returns CLI errors codes
(e.g. ``CMD_SUCCESS``, ``CMD_WARNING``), so the return value of this
function can be used as the return value of CLI commands. \* Calls to
``VTY_PUSH_CONTEXT`` and ``VTY_PUSH_CONTEXT_SUB`` should be converted to
calls to ``VTY_PUSH_XPATH``. Similarly, the following macros arent
necessary anymore and can be removed: ``VTY_DECLVAR_CONTEXT``,
``VTY_DECLVAR_CONTEXT_SUB``, ``VTY_GET_CONTEXT`` and
``VTY_CHECK_CONTEXT``. The ``nb_cli_cfg_change()`` functions uses the
``VTY_CHECK_XPATH`` macro to check if the data node being edited still
exists before doing anything else.
commands:
* ``nb_cli_cfg_change()`` returns CLI errors codes (e.g. ``CMD_SUCCESS``,
``CMD_WARNING``), so the return value of this function can be used as the
return value of CLI commands.
* Calls to ``VTY_PUSH_CONTEXT`` and ``VTY_PUSH_CONTEXT_SUB`` should be converted
to calls to ``VTY_PUSH_XPATH``. Similarly, the following macros arent
necessary anymore and can be removed:
* ``VTY_DECLVAR_CONTEXT``
* ``VTY_DECLVAR_CONTEXT_SUB``
* ``VTY_GET_CONTEXT``
* ``VTY_CHECK_CONTEXT``.
The ``nb_cli_cfg_change()`` functions uses the ``VTY_CHECK_XPATH`` macro to
check if the data node being edited still exists before doing anything else.
The examples below provide additional details about how the conversion
should be done.
@ -1788,10 +1804,13 @@ Implementation of the ``cli_show`` callback:
}
This is the most complex ``cli_show`` callback we have in ripd. Its
complexity comes from the following: \* The
``ip rip authentication mode ...`` command changes two YANG leaves at
the same time. \* Part of the command should be hidden when the
``show_defaults`` parameter is set to false.
complexity comes from the following:
* The ``ip rip authentication mode ...`` command changes two YANG leaves at the
same time.
* Part of the command should be hidden when the ``show_defaults`` parameter is
set to false.
This is the behavior we want to implement:
@ -1841,19 +1860,27 @@ As mentioned in the fourth step, the northbound retrofitting process can
happen gradually over time, since both “old” and “new” commands can
coexist without problems. Once all commands from a given daemon were
converted, we can proceed to the consolidation step, which consists of
the following: \* Remove the vty configuration lock, which is enabled by
default in all daemons. Now multiple users should be able to edit the
configuration concurrently, using either shared or private candidate
configurations. \* Reference commit:
`57dccdb1 <https://github.com/opensourcerouting/frr/commit/57dccdb18b799556214dcfb8943e248c0bf1f6a6>`__.
\* Stop using the qobj infrastructure to keep track of configuration
objects. This is not necessary anymore, the northbound uses a similar
mechanism to keep track of YANG data nodes in the candidate
configuration. \* Reference commit:
`4e6d63ce <https://github.com/opensourcerouting/frr/commit/4e6d63cebd988af650c1c29d0f2e5a251c8d2e7a>`__.
\* Make the daemon SIGHUP handler re-read the configuration file (and
ensure its not doing anything other than that). \* Reference commit:
`5e57edb4 <https://github.com/opensourcerouting/frr/commit/5e57edb4b71ff03f9a22d9ec1412c3c5167f90cf>`__.
the following:
* Remove the vty configuration lock, which is enabled by default in all daemons.
Now multiple users should be able to edit the configuration concurrently,
using either shared or private candidate configurations.
* Reference commit: `57dccdb1
<https://github.com/opensourcerouting/frr/commit/57dccdb18b799556214dcfb8943e248c0bf1f6a6>`__.
* Stop using the qobj infrastructure to keep track of configuration objects.
This is not necessary anymore, the northbound uses a similar mechanism to keep
track of YANG data nodes in the candidate configuration.
* Reference commit: `4e6d63ce
<https://github.com/opensourcerouting/frr/commit/4e6d63cebd988af650c1c29d0f2e5a251c8d2e7a>`__.
* Make the daemon SIGHUP handler re-read the configuration file (and ensure its
not doing anything other than that).
* Reference commit: `5e57edb4
<https://github.com/opensourcerouting/frr/commit/5e57edb4b71ff03f9a22d9ec1412c3c5167f90cf>`__.
Final Considerations
--------------------

View File

@ -70,18 +70,21 @@ Configuration modes
~~~~~~~~~~~~~~~~~~~
When using the transactional CLI (``--tcli``), FRR supports three
different forms of the ``configure`` command: \* ``configure terminal``:
in this mode, a single candidate configuration is shared by all users.
This means that one user might delete a configuration object thats
being edited by another user, in which case the CLI will detect and
report the problem. If one user issues the ``commit`` command, all
changes done by all users are committed. \* ``configure private``: users
have a private candidate configuration that is edited separately from
the other users. The ``commit`` command commits only the changes done by
the user. \* ``configure exclusive``: similar to ``configure private``,
but also locks the running configuration to prevent other users from
changing it. The configuration lock is released when the user exits the
configuration mode.
different forms of the ``configure`` command:
* ``configure terminal``: in this mode, a single candidate configuration is
shared by all users. This means that one user might delete a configuration
object thats being edited by another user, in which case the CLI will detect
and report the problem. If one user issues the ``commit`` command, all changes
done by all users are committed.
* ``configure private``: users have a private candidate configuration that is
edited separately from the other users. The ``commit`` command commits only
the changes done by the user.
* ``configure exclusive``: similar to ``configure private``, but also locks the
running configuration to prevent other users from changing it. The
configuration lock is released when the user exits the configuration mode.
When using ``configure terminal`` or ``configure private``, the
candidate configuration being edited might become outdated if another
@ -112,12 +115,14 @@ Check if the candidate configuration is valid or not.
Commit the changes done in the candidate configuration into the running
configuration.
Options: \* ``force``: commit even if the candidate configuration is
outdated. Its usually a better option to use the ``update`` command
instead. \* ``comment LINE...``: assign a comment to the configuration
transaction. This comment is displayed when viewing the recorded
transactions in the output of the ``show configuration transaction``
command.
Options:
* ``force``: commit even if the candidate configuration is outdated. Its
usually a better option to use the ``update`` command instead.
* ``comment LINE...``: assign a comment to the configuration transaction. This
comment is displayed when viewing the recorded transactions in the output of
the ``show configuration transaction`` command.
``discard``
'''''''''''
@ -140,10 +145,13 @@ respectively. Its also possible to load a configuration from a previous
transaction by specifying the desired transaction ID
(``(1-4294967296)``).
Options: \* ``translate WORD``: translate the JSON/XML configuration
file using the YANG module translator. \* ``replace``: replace the
candidate by the loaded configuration. The default is to merge the
loaded configuration into the candidate configuration.
Options:
* ``translate WORD``: translate the JSON/XML configuration file using the YANG
module translator.
* ``replace``: replace the candidate by the loaded configuration. The default is
to merge the loaded configuration into the candidate configuration.
``rollback configuration (1-4294967296)``
'''''''''''''''''''''''''''''''''''''''''
@ -156,39 +164,42 @@ identified by its transaction ID (``(1-4294967296)``).
Show the candidate configuration.
Options: \* ``json``: show the configuration in the JSON format. \*
``xml``: show the configuration in the XML format. \*
``translate WORD``: translate the JSON/XML output using the YANG module
translator. \* ``with-defaults``: show default values that are hidden by
default. \* ``changes``: show only the changes done in the candidate
configuration.
Options:
* ``json``: show the configuration in the JSON format.
* ``xml``: show the configuration in the XML format.
* ``translate WORD``: translate the JSON/XML output using the YANG module translator.
* ``with-defaults``: show default values that are hidden by default.
* ``changes``: show only the changes done in the candidate configuration.
``show configuration compare <candidate|running|transaction (1-4294967296)> <candidate|running|transaction (1-4294967296)> [<json|xml> [translate WORD]]``
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Show the difference between two different configurations.
Options: \* ``json``: show the configuration differences in the JSON
format. \* ``xml``: show the configuration differences in the XML
format. \* ``translate WORD``: translate the JSON/XML output using the
YANG module translator.
Options:
* ``json``: show the configuration differences in the JSON format.
* ``xml``: show the configuration differences in the XML format.
* ``translate WORD``: translate the JSON/XML output using the YANG module translator.
``show configuration running [<json|xml> [translate WORD]] [with-defaults]``
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Show the running configuration.
Options: \* ``json``: show the configuration in the JSON format. \*
``xml``: show the configuration in the XML format. \*
``translate WORD``: translate the JSON/XML output using the YANG module
translator. \* ``with-defaults``: show default values that are hidden by
default.
Options:
NOTE: ``show configuration running`` shows only the running
configuration as known by the northbound layer. Configuration
commands not converted to the new northbound model will not be
displayed. To show the full running configuration, the legacy
``show running-config`` command must be used.
* ``json``: show the configuration in the JSON format.
* ``xml``: show the configuration in the XML format.
* ``translate WORD``: translate the JSON/XML output using the YANG module translator.
* ``with-defaults``: show default values that are hidden by default.
NOTE: ``show configuration running`` shows only the running
configuration as known by the northbound layer. Configuration
commands not converted to the new northbound model will not be
displayed. To show the full running configuration, the legacy
``show running-config`` command must be used.
``show configuration transaction [(1-4294967296) [<json|xml> [translate WORD]] [changes]]``
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
@ -199,12 +210,13 @@ configuration associated to the previously committed transaction.
When a transaction ID is not given, show all recorded transactions in
the rollback log.
Options: \* ``json``: show the configuration in the JSON format. \*
``xml``: show the configuration in the XML format. \*
``translate WORD``: translate the JSON/XML output using the YANG module
translator. \* ``with-defaults``: show default values that are hidden by
default. \* ``changes``: show changes compared to the previous
transaction.
Options:
* ``json``: show the configuration in the JSON format.
* ``xml``: show the configuration in the XML format.
* ``translate WORD``: translate the JSON/XML output using the YANG module translator.
* ``with-defaults``: show default values that are hidden by default.
* ``changes``: show changes compared to the previous transaction.
``show yang module [module-translator WORD] [WORD <summary|tree|yang|yin>]``
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
@ -212,11 +224,14 @@ transaction.
When a YANG module is not given, show all loaded YANG modules.
Otherwise, show detailed information about the given module.
Options: \* ``module-translator WORD``: change the context to modules
loaded by the specified YANG module translator. \* ``summary``: display
summary information about the module. \* ``tree``: display module in the
tree (RFC 8340) format. \* ``yang``: display module in the YANG format.
\* ``yin``: display module in the YIN format.
Options:
* ``module-translator WORD``: change the context to modules loaded by the
specified YANG module translator.
* ``summary``: display summary information about the module.
* ``tree``: display module in the tree (RFC 8340) format.
* ``yang``: display module in the YANG format.
* ``yin``: display module in the YIN format.
``show yang module-translator``
'''''''''''''''''''''''''''''''

View File

@ -421,15 +421,20 @@ this shortcoming and make it possible to create more powerful YANG
module translators.
YANG module translators can be evaluated based on the following metrics:
\* Translation potential: is it possible to make complex translations,
taking several variables into account? \* Complexity: measure of how
easy or hard it is to write a module translator. \* Speed: measure of
how fast the translation can be achieved. Translation speed is of
fundamental importance, especially for operational data. \* Robustness:
can the translator be checked for inconsistencies at load time? A module
translator based on scripts wouldnt fare well on this metric. \*
Round-trip conversions: can the translated data be translated back to
the original format without information loss?
* Translation potential: is it possible to make complex translations, taking
several variables into account?
* Complexity: measure of how easy or hard it is to write a module translator.
* Speed: measure of how fast the translation can be achieved. Translation speed
is of fundamental importance, especially for operational data.
* Robustness: can the translator be checked for inconsistencies at load time? A
module translator based on scripts wouldnt fare well on this metric.
* Round-trip conversions: can the translated data be translated back to the
original format without information loss?
CLI Demonstration
-----------------

View File

@ -83,17 +83,19 @@ Indent a YANG file:
--keep-comments -f yang --yang-canonical \
module.yang -o module.yang
Generate skeleton instance data: \* XML:
Generate skeleton instance data:
.. code:: sh
* XML:
.. code:: sh
$ pyang -p <yang-search-path> \
-f sample-xml-skeleton --sample-xml-skeleton-defaults \
module.yang [augmented-module1.yang ...] -o module.xml
- JSON:
* JSON:
.. code:: sh
.. code:: sh
$ pyang -p <yang-search-path> \
-f jsonxsl module.yang -o module.xsl