This chapter provides information to configure NETCONF.
Topics in this chapter include:
NETCONF is a standardized IETF configuration management protocol published in RFC 6241. It is secure, connection-oriented, and runs on top of the SSHv2 transport protocol as specified in RFC 6242. NETCONF can be used as an alternative to CLI or SNMP for managing an SR OS node.
NETCONF is an XML-based protocol used to configure network devices. It uses RPC messaging for communication between a NETCONF client and the NETCONF server running on the SR OS node. An RPC message and configuration data is encapsulated within an XML document. These XML documents are exchanged between a NETCONF client and a NETCONF server in a request/response type of interaction. The SR OS NETCONF interface supports both configuration and retrieval of operational information. Figure 10 shows a NETCONF RPC request.
NETCONF can be conceptually partitioned into four layers as described in RFC 6241. Figure 11 shows the NETCONF layers.
NETCONF can be used on an SR OS router to perform router management operations including:
NETCONF is not used for notifications on an SR OS router; for example, log events, syslog, or SNMP notifications (traps).
The equivalent of some admin commands are available via the SR OS NETCONF interface:
The bof, debug, tools, and other general CLI operational commands (for example, telnet or ping) are not supported via NETCONF on an SR OS router.
The SR OS NETCONF server advertises base capability 1.1 (in addition to 1.0).
The SR OS supports both a CLI content layer and an XML-based content layer for NETCONF.
The SR OS NETCONF XML content layer supports two similar proprietary configuration data models. Each configuration data model is described in a set of YANG modules. A unique set of XML namespaces is used for each of the two data models.
The YANG modules for the first configuration data model (Alcatel-Lucent Base-R13 SR OS YANG modules) have the following attributes.
The YANG modules for the second configuration data model (Nokia SR OS YANG modules) have the following attributes.
The two configuration data models are not interchangeable. An XML request based on the Alcatel-Lucent Base-R13 YANG modules will not work if applied to a router using the urn:nokia.com:sros:ns:yang:sr:* namespace (and vice versa).
All configuration modules are advertised in the SR OS NETCONF server <hello>.
The proprietary configuration YANG data models both closely align to the SR OS CLI configuration tree structure and commands.
The YANG modules are published and distributed as part of an SR OS image in the cflash/support directory.
The following areas of the CLI do not have equivalent YANG data models:
SSH transport for NETCONF is supported on TCP port 830 with IPv4 or IPv6 in the Base routing instance. NETCONF SSH sessions (such as CLI, SCP and sFTP sessions) are subject to any configurable and non-configurable session limits; for example, inbound-max-sessions. Both the SSH server and NETCONF protocol must be enabled in the router configuration in order to use NETCONF. NETCONF sessions can be disconnected using the “admin disconnect” command.
NETCONF sessions do not time out automatically and are not subject to the CLI session timeout. Operators can disconnect sessions manually if they need to.
A client establishing a NETCONF session must log into the router so user accounts must exist for NETCONF on the SR. A new access type 'netconf' is provided. The user must be configured with both 'console' and 'netconf' access.
Only authentication via the local user database is supported for NETCONF users/sessions (no RADIUS or TACACS+ authentication). Access to various CLI config and show commands (authorization) via NETCONF is controlled through the profile assigned to the user that is used to authenticate the underlying SSH session.
Access to LI commands is based on the “access li” setting for the user.
If a NETCONF request attempts to execute a CLI command which is outside the scope of its access profile, an error response will be sent. For example:
Reply:
The SR OS supports the <running> datastore, the <candidate> datastore, the <startup> datastore, and <url> tags (Note: <url> is not a datastore in itself).
Support for the <candidate> datastore capability is advertised via the SR OS NETCONF server <hello> using the urn:ietf:params:netconf:capability:candidate:1.0 capability string.
All configuration changes (<edit-config>) done to the <running> datastore via NETCONF take immediate operational effect. Configuration changes to the <candidate> datastore take effect after a successful <commit> operation.
The <startup> datastore and <url> tags can only be used with <copy-config> and <delete-config> and are not supported with any other operations (including <edit-config>, <get-config>, <get>, <validate>, etc).
The :startup capability is advertised in the SR OS NETCONF server <hello>:
<capability>urn:ietf:params:netconf:capability:startup:1.0</capability>
The <url> tag supports the same options as CLI <file-url>: local urls (CF) and remote urls (ftp and tftp).
The :url capability is advertised in the SR OS NETCONF server <hello>:
<capability>urn:ietf:params:netconf:capability:url:1.0?scheme=ftp,tftp,file</capability>
The following examples show the format of each URL scheme:
![]() | Note:
The examples use “///” for the file URL. Also, the file://localhost/... format is not supported. |
The <startup> datastore is identified by following the bof primary-config/secondary-config/tertiary-config paths as configured by the operator. The <startup> datastore is effectively an alias for a URL (a special URL used for system startup) with some extra resiliency (primary/secondary/tertiary).
The BOF is not considered part of any configuration datastore.
Debug configuration (such as debug mirrors, or anything saved with admin debug-save) is not considered part of any configuration datastore.
Lawful Interception configuration information is contained in the <running> datastore but is not saved in the <startup> datastore. The equivalent of the CLI li save command is available in an <edit-config>.
Configuration changes done via NETCONF are subject to CLI rollback (revert, save, and so on) and are included in the configuration when the operator performs an admin save in the CLI.
Only the data model described by Nokia SR OS YANG modules can be used with the <candidate> datastore. The data model described by the Alcatel-Lucent Base-R13 SR OS YANG modules is not applicable to the <candidate> datastore but continues to work with the <running> datastore. All <edit-config> requests to the candidate datastore must use the urn:nokia.com:sros:ns:yang:sr:conf-* namespaces.
The candidate datastore supports the XML content layer only. Requests/Replies to/from the candidate datastore cannot contain the CLI content layer.
The following base protocol operations are supported:
The following optional capabilities from RFC 6241 are supported:
The following capability from RFC 6243 is supported:
The <edit-config> operation's <error-option> is not supported. SR OS implements the stop-on-error behavior by default. The continue-on-error and rollback-on-error are not supported.
The CLI content layer <get> operation is supported with both configuration and state data returned in a <get> reply. The XML content layer <get> operation is supported but only configuration data is returned (no state data) in a <get> reply.
A <get> request is first analyzed for syntax errors before any execution starts. If a syntax error is found then a single global <rpc-error> for the entire request is sent in the reply.
Responses are provided for each item in the request until the first item with an error is found. The item with an error has a <response> tag containing some error information, followed by an <rpc-error> tag (and sub-tags). The reply is then returned and subsequent items are not executed.
The <rpc-error> for an individual item (i.e. for a non-syntax error) is after the </response> information and not inside the <response>.
Example — <get> request with a non-syntax error in the 2nd item:
Reply:
The <get-config> operation returns non-default configuration by default (i.e. the 'trim' mode as per RFC 6243).
The following values for the <test-option> parameter under <edit-config> are supported:
The <copy-config> and <delete-config> base protocol operations are supported for specific combinations of source and target datastores.
The <copy-config> operation is supported for the following combinations of sources and targets:
The <running> datastore cannot be a <target> for a <copy-config>.
The <candidate> datastore cannot be a <target> or a <source> for a <copy-config>.
Remote URL to remote URL copies are not supported. For example, if primary-image is a remote URL, then a <startup> to copy will fail with an error.
The <copy-config> operation uses the CLI Content Layer format. The format of the source and target is block CLI.
The <delete-config> operation is supported for the following targets:
The <delete-config> operation is not allowed on the <running> or <candidate> datastore.
Taking the <candidate> datastore’s lock is equivalent to doing a CLI exclusive transaction.
Although the NETCONF protocol allows specifying a target datastore for a lock operation, the SR OS only implements a single lock:
When either the running datastore’s lock or the candidate datastore’s lock is taken by a NETCONF session:
A datastore’s lock is unlocked when disconnecting a NETCONF session (either from the CLI using Ctrl-c, or by performing a <kill-session> or <close-session> operation). Upon disconnecting a NETCONF session that had acquired a datastore’s lock, SR OS:
![]() | Note:
The behavior is different if the disconnected NETCONF session had the "implicit" lock (see the <edit-config> with XML Content Layer section). In that case, the SR OS keeps the "uncommitted" changes in the <candidate> datastore. |
Timeouts of locks are not supported. No specific admin/tools commands are provided to release the lock, but the session that holds the lock can be administratively disconnected using the CLI to release the lock.
From the CLI, the operator can configure whether users that belong to a specific profile have permission to lock NETCONF sessions; see the NETCONF Configuration Command Reference.
Using CLI show commands, the operator can determine if either the <running> datastore’s lock or the <candidate> datastore’s lock is currently taken and which session has the lock; see the NETCONF Show Command Reference.
Because there is a single lock per datastore regardless of what the scope of that lock is, the following applies.
The <commit> command has the following characteristics.
The <discard-changes> operation causes the <candidate> datastore to revert back to match the <running> datastore and releases the “implicit” lock. From the CLI, the operator can do the equivalent of a <discard-changes> operation which releases the implicit lock as well (see NETCONF Admin Command Reference).
The validate:1.1 capability is supported as follows.
Table 51 shows the which operations are supported by data model and datastore combination.
Operation | R13 Modules | Nokia Modules | ||
<running> | <candidate> | <running> | <candidate> | |
<edit-config> | supported | not supported | not supported | supported |
<get-config> | supported | not supported | supported | supported |
<get>* | retrieves CLI content layer state data (no XML content layer) | retrieves configuration data only (XML format only) |
* - Note that datastore is not applicable for a <get> operation
Pressing Ctrl-c in a NETCONF session will immediately terminate the session.
The SR OS NETCONF implementation does support XML namespaces (xmlns).
In the RPC tag, the allowed XML namespaces are:
If any other XML namespace is declared (or assigned to a prefix) in the RPC tag, then the SR OS returns an error.
Any prefix declarations in the rest of the request are ignored and unused. The SR OS NETCONF server puts the correct NETCONF namespace declaration (“urn:ietf:params:xml:ns:netconf:base:1.0”) in all replies.
A request may contain a mix of namespaces depending on which parts of the configurations data tree it is trying to access:
Example 1 — the standard NETCONF namespace “urn:ietf:params:xml:ns:netconf:base:1.0” is used more than once in the RPC tag:
Reply (no error message):
Example 2 — an allowed non-NETCONF base namespace is used in the RPC tag:
Reply (non-NETCONF base namespace is allowed and no error is returned):
Example 3 — A non-standard NETCONF namespace is used in the RPC tag:
Reply (the SR OS returns an error):
Example 4 — a non-standard NETCONF namespace/prefix is used in one of the tags but is not defined in the RPC tag:
Reply (non-standard namespace/prefix used in tag is ignored):
The chunked framing mechanism is supported (in addition to the EOM mechanism). As per RFC 6242, Section 4.1 - Framing Protocol, “[...] If the :base:1.1 capability is advertised by both peers, the chunked framing mechanism (see Section 4.2) is used for the remainder of the NETCONF session. Otherwise, the old end-of-message-based mechanism (see Section 4.3) is used.”
Example 5 — Chunked message:
Example 6 — Chunked message:
Handling of default data (for example, ' info' vs 'info detail') is done using the mechanisms detailed in RFC 6243. The SR OS NETCONF server supports the 'trim' method and advertises that in the <hello>:
<capability>urn:ietf:params:netconf:capability:with-defaults:1.0?basic-mode=trim</capability>
A user can save a rollback checkpoint (for example, prior to doing an <edit-config> or a series of <edit-config>) and perform a rollback revert if needed later.
Example 7 — Two rollback items with responses:
Reply:
Example 8 — Syntax error in the request resulting in global rpc-error reply:
Reply:
Example 9 — Error processing the request:
Reply:
Example 10 — Error in the 2nd item of the request, resulting in no 3rd item in the reply:
Reply:
There are a set of configuration objects that are provisioned (added to the <running> datastore) automatically by SR OS; for example, log-id 99.
Some of these objects can be deleted/removed by a user (Deletable SPC Objects).
Some SPC objects cannot be deleted (Non-Deletable SPC Objects).
Some Non-Deletable SPC Objects are visible in a <get-config> request in the “urn:alcatel-lucent.com:sros:ns:yang:conf-*-r13” namespace (the Alcatel-Lucent Base-R13 SR OS YANG modules), even if they are set to default values:
The following example shows a client on a Linux PC initiating a connection to an SR OS NETCONF server. The SSH session must be invoked using an SSH subsystem (as recommended in RFC 6242):
The following example shows an exchange of hello messages which include advertisement of capabilities.
From the SR OS server:
From a client:
XML is the default content layer format for the SR OS NETCONF server. When using the XML format at the NETCONF content layer, configuration changes and configuration information retrieved are expressed as XML tags.
A <get> operation with an XML content layer is supported with the <candidate> datastore only. A <get> request retrieves the configuration data from the “urn:nokia.com:sros:ns:yang:sr:conf-*” namespace (the Nokia SR OS YANG modules) only. If any nodes from the configure tree are included in a <get> request filter, then at minimum the <configure> tag must contain a namespace. If the namespace is not specified, the SR OS returns errors.
Example 1: The <configure> tag contains a namespace
Reply: no errors
Example 2: The <configure> tag does not contain a namespace
Reply: with SR OS errors
An <edit-config> operation is supported with the <running> datastore and the <candidate> datastore.
The <edit-config> requests to the <candidate> datastore can only write XML-formatted content.
The <edit-config> requests that specify the running datastore as a target while using the “urn:nokia.com:sros:ns:yang:sr:conf-*” namespace (the Nokia SR OS YANG modules) result in an error response.
Example 1: using the <running> datastore with the urn:nokia.com:sros:ns:yang:sr:conf-* namespace
Reply: with SR OS errors
There is an internal “implicit” lock that has a scope of all configuration commands in the SR OS (not just the “urn:nokia.com:sros:ns:yang:sr:conf-*” namespace). The following actions take/release the “implicit” lock:
The following scenarios are impacted when an “implicit” lock is taken.
One or more <edit-config> requests can be performed on the candidate datastore before the changes are committed or discarded.
NETCONF <edit-config> and <commit> operations impact the configuration of the router and, as with some CLI or SNMP configuration changes, additional actions or steps may need to occur before certain configuration changes take operational effect. Some examples include:
The supported <edit-config> operation attribute values are listed in Table 52.
Command | Notes |
urn:alcatel-lucent.com:sros:ns:yang:conf-*-r13 namespace Alcatel-Lucent Base-R13 SR OS YANG modules | |
merge (Base-R13 SR OS modules) |
|
remove (Base-R13 SR OS modules) |
|
delete (Base-R13 SR OS modules) |
|
create (Base-R13 SR OS modules) |
|
replace (Base-R13 SR OS modules) |
|
urn:nokia.com:sros:ns:yang:sr:conf-* namespace Nokia SR OS YANG modules | |
merge (Nokia SR OS modules) |
|
remove (Nokia SR OS modules) |
|
delete (Nokia SR OS modules) |
|
create (Nokia SR OS modules) |
|
replace (Nokia SR OS modules) |
|
The <edit-config> operation’s <default-operation> parameter is supported with the following values:
For <delete> and <remove> operations, the SR OS NETCONF server will recursively “unwind” any children of the node being deleted or removed first before removing the node itself. The 'deepest' child branch of the request is examined first and any leaves are processed, after which the server works backwards out of the deepest branches back up to the object where the delete operation was specified.
For urn:alcatel-lucent.com:sros:ns:yang:conf-*-r13 namespace (the Alcatel-Lucent Base-R13 SR OS YANG modules), if child branches of an object are required to be removed before deleting the object in the CLI, then the equivalent delete request in a NETCONF <edit-config> request must contain all those children if they exist). For example:
In the example above, the SR OS will first shut down the test interface, then delete the interface, then shut down the VPLS, and then finally remove it.
![]() | Note:
In the urn:alcatel-lucent.com:sros:ns:yang:conf-*-r13 namespace (the Alcatel-Lucent Base-R13 SR OS YANG modules), the 'operation="merge"' is required in the shutdown nodes; otherwise the inherited operation is delete, which is not supported on boolean leaves. |
In the example above, if other children of vpls 11 exist in the config besides the interface test specified in the delete request above, and those children are required in the CLI to be deleted before removing vpls 11, then the deletion request above will fail. All configured children must be specified in the delete request.
The following applies to the urn:nokia.com:sros:ns:yang:sr:conf-* namespace (the Nokia SR OS YANG modules).
A <get-config> operation is supported with the <running> datastore and the <candidate> datastore.
The <get-config> requests on the <candidate> datastore return only XML-formatted content.
On a <candidate> datastore, if no filter is specified, SR OS returns the Nokia SR OS configurations only.
On the <running> datastore, if no filter is specified, SR OS returns both the Alcatel-Lucent Base-R13 configurations and the Nokia SR OS configurations.
On the <running> datastore, to return configurations from the Alcatel-Lucent Base-R13 configurations only (or the Nokia SR OS configurations only), the user must specify at least a top-level tag and a namespace in the filter. If the namespace is not specified, SR OS returns an error.
The following applies to the urn:nokia.com:sros:ns:yang:sr:conf-* namespace (the Nokia SR OS YANG modules):
Using the 'report-all' value with the <with-defaults> tag (RFC 6243) in an XML-content layer <get-config>, returns the equivalent of the CLI command info detail (the returned data includes attributes that are set to their default values).
Example 1: use of <with-defaults> with a value of "report-all"
Reply: returns even attributes with default values
Example 2: without using <with-defaults>
Reply: Attributes with default values are not returned
Subtree filtering for basic subtree selection is supported for XML content layer <get-config> requests. Post-filtering of the selected subtrees is not supported.
In the urn:alcatel-lucent.com:sros:ns:yang:conf-*-r13 namespace (the Alcatel-Lucent Base-R13 SR OS YANG modules), the subtree filtering support behaves as follows.
Example 3 — A non key leaf is specified (for example, delayed-enable)
Reply: SR OS errors
Multiple key leafs for the same key cannot be requested inside the same instance of the list name node; for example, <interface-name>abc</interface-name> <interface-name>def</interface-name>. Each key value must be inside its own instance of the list name node; for example, <interface> <interface-name>abc</interface-name> </interface> <interface> <interface-name>def</interface-name> </interface>.
Example 4 — A valid <get-config> request (content match on a list key):
Reply:
Example 5 — A valid <get-config> request (selection node that is a container):
The reply will contain all the configuration for all child nodes of config>router
Example 6 — An invalid <get-config> request (list name node - invalid selection node):
Reply:
Example 7 — An invalid <get-config> request (empty leaf node - invalid selection node):
Reply:
Example 8 — An invalid <get-config> request (key repeated in the same instance of the list node):
Reply:
The full configuration (equivalent to the CLI command 'admin display-config') can be obtained via a <get-config> request:
The <get-config> requests that specify a non-existent list node or presence container will result in a reply that contains no data for those list nodes or containers. An rpc-error is not sent in this case.
The following examples can be used after a NETCONF session has been established including the exchange of the <hello> messages.
Below is an example of a <get-config> request on the <running> datastore to check on whether netconf is shut down or not on the router:
Reply:
Below is an example for a <get-config> request on the <candidate> datastore to get the full configurations of the system, qos and log branches:
Reply:
Below is an example of an <edit-config> request om the <running> datastore to create a basic VPRN service:
Reply:
Below is an example of an <edit-config> request on the <candidate> datastore to create a basic epipe service:
Reply:
Below is an example of a <edit-config> request on the <running> datastore to create a basic VPRN service with a SAP (creates the service/interface but fails to create the SAP as the specified port's encapsulation is invalid):
Reply:
When using the CLI format at the NETCONF content layer, configuration changes and configuration information retrieved are expressed as untagged (non-XML) CLI commands; for example, CLI script.
The script must be correctly ordered and has the same dependencies and behavior as CLI. The location of CR/LF (ENTER) within the CLI for an <edit-config> is significant and affects the processing of the CLI commands, such as what CLI branch is considered the “working context”. In the following two examples, the “working context” after the commands are issued are different.
Example 1:
Example 2:
After example 1, the CLI working context is the root and immediately sending 'dst-zone CEST' would return an error. After example 2, the CLI working context is config>system>time and sending 'dst-zone CEST' would work as expected.
Configuration changes done via NETCONF trigger the same “change” log events (for example, tmnxConfigCreate) as a normal CLI user doing the same changes.
The <with-defaults> tag (RFC 6243) is not supported in a CLI content layer request.
The operator can get a full configuration including defaults for a CLI Content Layer using an empty <cli-info-detail>. The full configuration (equivalent to the CLI command 'admin display-config [detail]') can be obtained via a <get-config> request in a CLI Content Layer format with an empty <cli-info> or <cli-info-detail> tag inside a <config-format-cli-block>. <report-all> is not supported.
Post-processing commands are ignored: "| match" (pipe match), "| count" (pipe count) and ">" (redirect to file) and CLI ranges are not supported for any command; for example, show card [1..5].
The following examples can be used after a NETCONF session has been established including the exchange of the <hello> messages.
The following shows an example of a configuration change request and response.
![]() | Note:
The exit all command is not required at the beginning of the CLI block; it is automatically assumed by the SR OS NETCONF server. |
Reply:
The following is an example of a <get-config> request and response to retrieve configuration information:
Reply:
The following example shows a <get-config> request and response to retrieve full configuration information.
![]() | Note:
The <cli-info-detail/> request can be used to get the full configuration, including default settings. |
Reply:
The following is an example of a <get> request and the response to it:
Reply: