Fix rst links to different section in same page
[netconf.git] / docs / user-guide.rst
1 .. _netconf-user-guide:
2
3 .. |ss| raw:: html
4
5    <strike>
6
7 .. |se| raw:: html
8
9    </strike>
10
11 NETCONF User Guide
12 ==================
13
14 Overview
15 --------
16
17 NETCONF is an XML-based protocol used for configuration and monitoring
18 devices in the network. The base NETCONF protocol is described in
19 `RFC-6241 <http://tools.ietf.org/html/rfc6241>`__.
20
21 **NETCONF in OpenDaylight:.**
22
23 OpenDaylight supports the NETCONF protocol as a northbound server as
24 well as a southbound plugin. It also includes a set of test tools for
25 simulating NETCONF devices and clients.
26
27 Southbound (netconf-connector)
28 ------------------------------
29
30 The NETCONF southbound plugin is capable of connecting to remote NETCONF
31 devices and exposing their configuration/operational datastores, RPCs
32 and notifications as MD-SAL mount points. These mount points allow
33 applications and remote users (over RESTCONF) to interact with the
34 mounted devices.
35
36 In terms of RFCs, the connector supports:
37
38 -  `RFC-6241 <http://tools.ietf.org/html/rfc6241>`__
39
40 -  `RFC-5277 <https://tools.ietf.org/html/rfc5277>`__
41
42 -  `RFC-6022 <https://tools.ietf.org/html/rfc6022>`__
43
44 -  `draft-ietf-netconf-yang-library-06 <https://tools.ietf.org/html/draft-ietf-netconf-yang-library-06>`__
45
46 **Netconf-connector is fully model-driven (utilizing the YANG modeling
47 language) so in addition to the above RFCs, it supports any
48 data/RPC/notifications described by a YANG model that is implemented by
49 the device.**
50
51 .. tip::
52
53     NETCONF southbound can be activated by installing
54     ``odl-netconf-connector-all`` Karaf feature.
55
56 Netconf-connector configuration
57 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
58
59 There are 2 ways for configuring netconf-connector: NETCONF or RESTCONF.
60 This guide focuses on using RESTCONF.
61
62 .. important::
63
64     There are 2 different endpoints related to RESTCONF protocols:
65
66     - | ``http://localhost:8181/restconf`` is related to `draft-bierman-netconf-restconf-02 <https://tools.ietf.org/html/draft-bierman-netconf-restconf-02>`__,
67       | can be activated by installing ``odl-restconf-nb-bierman02``
68        Karaf feature.
69       | This user guide uses this approach.
70
71     - | ``http://localhost:8181/rests`` is related to `RFC-8040 <https://tools.ietf.org/html/rfc8040>`__,
72       | can be activated by installing ``odl-restconf-nb-rfc8040``
73        Karaf feature.
74
75     | In case of `RFC-8040 <https://tools.ietf.org/html/rfc8040>`__
76      resources for configuration and operational datastores start
77      ``/rests/data/``,
78     | e. g. GET
79      http://localhost:8181/rests/data/network-topology:network-topology
80      with response of both datastores. It's allowed to use query
81      parameters to distinguish between them.
82     | e. g. GET
83      http://localhost:8181/rests/data/network-topology:network-topology?content=config
84      for configuration datastore
85     | and GET
86      http://localhost:8181/rests/data/network-topology:network-topology?content=nonconfig
87      for operational datastore.
88
89     | Also in case of `RFC-8040 <https://tools.ietf.org/html/rfc8040>`__,
90      if a data node in the path expression is a YANG leaf-list or list
91      node, the path segment has to be constructed by having leaf-list or
92      list node name, followed by an "=" character, then followed by the
93      leaf-list or list value. Any reserved characters must be
94      percent-encoded.
95     | e. g. GET
96      http://localhost:8181/rests/data/network-topology:network-topology/topology=topology-netconf?content=config
97      for retrieving data from configuration datastore for
98      topology-netconf value of topology list is equivalent to the deprecated request
99     | |ss| GET |se|
100      http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf,
101      which is related to `draft-bierman-netconf-restconf-02
102      <https://tools.ietf.org/html/draft-bierman-netconf-restconf-02>`__.
103
104
105
106
107 Default configuration
108 ^^^^^^^^^^^^^^^^^^^^^
109
110 The default configuration contains all the necessary dependencies (file:
111 01-netconf.xml) and a single instance of netconf-connector (file:
112 99-netconf-connector.xml) called **controller-config** which connects
113 itself to the NETCONF northbound in OpenDaylight in a loopback fashion.
114 The connector mounts the NETCONF server for config-subsystem in order to
115 enable RESTCONF protocol for config-subsystem. This RESTCONF still goes
116 via NETCONF, but using RESTCONF is much more user friendly than using
117 NETCONF.
118
119 Spawning additional netconf-connectors while the controller is running
120 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
121
122 Preconditions:
123
124 1. OpenDaylight is running
125
126 2. In Karaf, you must have the netconf-connector installed (at the Karaf
127    prompt, type: ``feature:install odl-netconf-connector-all``); the
128    loopback NETCONF mountpoint will be automatically configured and
129    activated
130
131 3. Wait until log displays following entry:
132    RemoteDevice{controller-config}: NETCONF connector initialized
133    successfully
134
135 To configure a new netconf-connector you need to send following request
136 to RESTCONF:
137
138 POST
139 http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/controller-config/yang-ext:mount/config:modules
140
141 Headers:
142
143 -  Accept application/xml
144
145 -  Content-Type application/xml
146
147 ::
148
149     <module xmlns="urn:opendaylight:params:xml:ns:yang:controller:config">
150       <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">prefix:sal-netconf-connector</type>
151       <name>new-netconf-device</name>
152       <address xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">127.0.0.1</address>
153       <port xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">830</port>
154       <username xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">admin</username>
155       <password xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">admin</password>
156       <tcp-only xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">false</tcp-only>
157       <event-executor xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
158         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:netty">prefix:netty-event-executor</type>
159         <name>global-event-executor</name>
160       </event-executor>
161       <binding-registry xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
162         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding">prefix:binding-broker-osgi-registry</type>
163         <name>binding-osgi-broker</name>
164       </binding-registry>
165       <dom-registry xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
166         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom">prefix:dom-broker-osgi-registry</type>
167         <name>dom-broker</name>
168       </dom-registry>
169       <client-dispatcher xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
170         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:config:netconf">prefix:netconf-client-dispatcher</type>
171         <name>global-netconf-dispatcher</name>
172       </client-dispatcher>
173       <processing-executor xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
174         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:threadpool">prefix:threadpool</type>
175         <name>global-netconf-processing-executor</name>
176       </processing-executor>
177       <keepalive-executor xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
178         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:threadpool">prefix:scheduled-threadpool</type>
179         <name>global-netconf-ssh-scheduled-executor</name>
180       </keepalive-executor>
181     </module>
182
183 This spawns a new netconf-connector which tries to connect to (or mount)
184 a NETCONF device at 127.0.0.1 and port 830. You can check the
185 configuration of config-subsystem’s configuration datastore. The new
186 netconf-connector will now be present there. Just invoke:
187
188 GET
189 http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/controller-config/yang-ext:mount/config:modules
190
191 The response will contain the module for new-netconf-device.
192
193 Right after the new netconf-connector is created, it writes some useful
194 metadata into the datastore of MD-SAL under the network-topology
195 subtree. This metadata can be found at:
196
197 GET
198 http://localhost:8181/restconf/operational/network-topology:network-topology/
199
200 Information about connection status, device capabilities, etc. can be
201 found there.
202
203 Connecting to a device not supporting NETCONF monitoring
204 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
205
206 The netconf-connector in OpenDaylight relies on ietf-netconf-monitoring
207 support when connecting to remote NETCONF device. The
208 ietf-netconf-monitoring support allows netconf-connector to list and
209 download all YANG schemas that are used by the device. NETCONF connector
210 can only communicate with a device if it knows the set of used schemas
211 (or at least a subset). However, some devices use YANG models internally
212 but do not support NETCONF monitoring. Netconf-connector can also
213 communicate with these devices, but you have to side load the necessary
214 yang models into OpenDaylight’s YANG model cache for netconf-connector.
215 In general there are 2 situations you might encounter:
216
217 **1. NETCONF device does not support ietf-netconf-monitoring but it does
218 list all its YANG models as capabilities in HELLO message**
219
220 This could be a device that internally uses only ietf-inet-types YANG
221 model with revision 2010-09-24. In the HELLO message that is sent from
222 this device there is this capability reported:
223
224 ::
225
226     urn:ietf:params:xml:ns:yang:ietf-inet-types?module=ietf-inet-types&revision=2010-09-24
227
228 **For such devices you only need to put the schema into folder
229 cache/schema inside your Karaf distribution.**
230
231 .. important::
232
233     The file with YANG schema for ietf-inet-types has to be called
234     ietf-inet-types@2010-09-24.yang. It is the required naming format of
235     the cache.
236
237 **2. NETCONF device does not support ietf-netconf-monitoring and it does
238 NOT list its YANG models as capabilities in HELLO message**
239
240 Compared to device that lists its YANG models in HELLO message, in this
241 case there would be no capability with ietf-inet-types in the HELLO
242 message. This type of device basically provides no information about the
243 YANG schemas it uses so its up to the user of OpenDaylight to properly
244 configure netconf-connector for this device.
245
246 Netconf-connector has an optional configuration attribute called
247 yang-module-capabilities and this attribute can contain a list of "YANG
248 module based" capabilities. So by setting this configuration attribute,
249 it is possible to override the "yang-module-based" capabilities reported
250 in HELLO message of the device. To do this, we need to modify the
251 configuration of netconf-connector by adding this XML (It needs to be
252 added next to the address, port, username etc. configuration elements):
253
254 ::
255
256     <yang-module-capabilities xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
257       <capability xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
258         urn:ietf:params:xml:ns:yang:ietf-inet-types?module=ietf-inet-types&amp;revision=2010-09-24
259       </capability>
260     </yang-module-capabilities>
261
262 **Remember to also put the YANG schemas into the cache folder.**
263
264 .. note::
265
266     For putting multiple capabilities, you just need to replicate the
267     capability xml element inside yang-module-capability element.
268     Capability element is modeled as a leaf-list. With this
269     configuration, we would make the remote device report usage of
270     ietf-inet-types in the eyes of netconf-connector.
271
272 Reconfiguring Netconf-Connector While the Controller is Running
273 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
274
275 It is possible to change the configuration of a running module while the
276 whole controller is running. This example will continue where the last
277 left off and will change the configuration for the brand new
278 netconf-connector after it was spawned. Using one RESTCONF request, we
279 will change both username and password for the netconf-connector.
280
281 To update an existing netconf-connector you need to send following
282 request to RESTCONF:
283
284 PUT
285 http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/controller-config/yang-ext:mount/config:modules/module/odl-sal-netconf-connector-cfg:sal-netconf-connector/new-netconf-device
286
287 ::
288
289     <module xmlns="urn:opendaylight:params:xml:ns:yang:controller:config">
290       <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">prefix:sal-netconf-connector</type>
291       <name>new-netconf-device</name>
292       <username xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">bob</username>
293       <password xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">passwd</password>
294       <tcp-only xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">false</tcp-only>
295       <event-executor xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
296         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:netty">prefix:netty-event-executor</type>
297         <name>global-event-executor</name>
298       </event-executor>
299       <binding-registry xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
300         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding">prefix:binding-broker-osgi-registry</type>
301         <name>binding-osgi-broker</name>
302       </binding-registry>
303       <dom-registry xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
304         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom">prefix:dom-broker-osgi-registry</type>
305         <name>dom-broker</name>
306       </dom-registry>
307       <client-dispatcher xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
308         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:config:netconf">prefix:netconf-client-dispatcher</type>
309         <name>global-netconf-dispatcher</name>
310       </client-dispatcher>
311       <processing-executor xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
312         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:threadpool">prefix:threadpool</type>
313         <name>global-netconf-processing-executor</name>
314       </processing-executor>
315       <keepalive-executor xmlns="urn:opendaylight:params:xml:ns:yang:controller:md:sal:connector:netconf">
316         <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:threadpool">prefix:scheduled-threadpool</type>
317         <name>global-netconf-ssh-scheduled-executor</name>
318       </keepalive-executor>
319     </module>
320
321 Since a PUT is a replace operation, the whole configuration must be
322 specified along with the new values for username and password. This
323 should result in a 2xx response and the instance of netconf-connector
324 called new-netconf-device will be reconfigured to use username bob and
325 password passwd. New configuration can be verified by executing:
326
327 GET
328 http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/controller-config/yang-ext:mount/config:modules/module/odl-sal-netconf-connector-cfg:sal-netconf-connector/new-netconf-device
329
330 With new configuration, the old connection will be closed and a new one
331 established.
332
333 Destroying Netconf-Connector While the Controller is Running
334 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
335
336 Using RESTCONF one can also destroy an instance of a module. In case of
337 netconf-connector, the module will be destroyed, NETCONF connection
338 dropped and all resources will be cleaned. To do this, simply issue a
339 request to following URL:
340
341 DELETE
342 http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/controller-config/yang-ext:mount/config:modules/module/odl-sal-netconf-connector-cfg:sal-netconf-connector/new-netconf-device
343
344 The last element of the URL is the name of the instance and its
345 predecessor is the type of that module (In our case the type is
346 **sal-netconf-connector** and name **new-netconf-device**). The type and
347 name are actually the keys of the module list.
348
349 Netconf-connector configuration with MD-SAL
350 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
351
352 It is also possible to configure new NETCONF connectors directly through
353 MD-SAL with the usage of the network-topology model. You can configure
354 new NETCONF connectors both through the NETCONF server for MD-SAL (port
355 2830) or RESTCONF. This guide focuses on RESTCONF.
356
357 .. tip::
358
359     To enable NETCONF connector configuration through MD-SAL install
360     either the ``odl-netconf-topology`` or
361     ``odl-netconf-clustered-topology`` feature. We will explain the
362     difference between these features later.
363
364 Preconditions
365 ^^^^^^^^^^^^^
366
367 1. OpenDaylight is running
368
369 2. In Karaf, you must have the ``odl-netconf-topology`` or
370    ``odl-netconf-clustered-topology`` feature installed.
371
372 3. Feature ``odl-restconf`` must be installed
373
374 4. Wait until log displays following entry:
375
376    ::
377
378        Successfully pushed configuration snapshot 02-netconf-topology.xml(odl-netconf-topology,odl-netconf-topology)
379
380    or until
381
382    ::
383
384        GET http://localhost:8181/restconf/operational/network-topology:network-topology/topology/topology-netconf/
385
386    returns a non-empty response, for example:
387
388    ::
389
390        <topology xmlns="urn:TBD:params:xml:ns:yang:network-topology">
391          <topology-id>topology-netconf</topology-id>
392        </topology>
393
394 Spawning new NETCONF connectors
395 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
396
397 To create a new NETCONF connector you need to send the following request
398 to RESTCONF:
399
400 ::
401
402     PUT http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/new-netconf-device
403
404 Headers:
405
406 -  Accept: application/xml
407
408 -  Content-Type: application/xml
409
410 Payload:
411
412 ::
413
414     <node xmlns="urn:TBD:params:xml:ns:yang:network-topology">
415       <node-id>new-netconf-device</node-id>
416       <host xmlns="urn:opendaylight:netconf-node-topology">127.0.0.1</host>
417       <port xmlns="urn:opendaylight:netconf-node-topology">17830</port>
418       <username xmlns="urn:opendaylight:netconf-node-topology">admin</username>
419       <password xmlns="urn:opendaylight:netconf-node-topology">admin</password>
420       <tcp-only xmlns="urn:opendaylight:netconf-node-topology">false</tcp-only>
421       <!-- non-mandatory fields with default values, you can safely remove these if you do not wish to override any of these values-->
422       <reconnect-on-changed-schema xmlns="urn:opendaylight:netconf-node-topology">false</reconnect-on-changed-schema>
423       <connection-timeout-millis xmlns="urn:opendaylight:netconf-node-topology">20000</connection-timeout-millis>
424       <max-connection-attempts xmlns="urn:opendaylight:netconf-node-topology">0</max-connection-attempts>
425       <between-attempts-timeout-millis xmlns="urn:opendaylight:netconf-node-topology">2000</between-attempts-timeout-millis>
426       <sleep-factor xmlns="urn:opendaylight:netconf-node-topology">1.5</sleep-factor>
427       <!-- keepalive-delay set to 0 turns off keepalives-->
428       <keepalive-delay xmlns="urn:opendaylight:netconf-node-topology">120</keepalive-delay>
429     </node>
430
431 Note that the device name in <node-id> element must match the last
432 element of the restconf URL.
433
434 Reconfiguring an existing connector
435 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
436
437 The steps to reconfigure an existing connector are exactly the same as
438 when spawning a new connector. The old connection will be disconnected
439 and a new connector with the new configuration will be created.
440
441 Deleting an existing connector
442 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
443
444 To remove an already configured NETCONF connector you need to send the
445 following:
446
447 ::
448
449     DELETE http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/new-netconf-device
450
451 Connecting to a device supporting only NETCONF 1.0
452 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
453
454 OpenDaylight is schema-based distribution and heavily depends on YANG
455 models. However some legacy NETCONF devices are not schema-based and
456 implement just RFC 4741. This type of device does not utilize YANG
457 models internally and OpenDaylight does not know how to communicate
458 with such devices, how to validate data, or what the semantics of data
459 are.
460
461 NETCONF connector can communicate also with these devices, but the
462 trade-offs are worsened possibilities in utilization of NETCONF
463 mountpoints. Using RESTCONF with such devices is not suported. Also
464 communicating with schemaless devices from application code is slightly
465 different.
466
467 To connect to schemaless device, there is a optional configuration option
468 in netconf-node-topology model called schemaless. You have to set this
469 option to true.
470
471 Clustered NETCONF connector
472 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
473
474 To spawn NETCONF connectors that are cluster-aware you need to install
475 the ``odl-netconf-clustered-topology`` karaf feature.
476
477 .. warning::
478
479     The ``odl-netconf-topology`` and ``odl-netconf-clustered-topology``
480     features are considered **INCOMPATIBLE**. They both manage the same
481     space in the datastore and would issue conflicting writes if
482     installed together.
483
484 Configuration of clustered NETCONF connectors works the same as the
485 configuration through the topology model in the previous section.
486
487 When a new clustered connector is configured the configuration gets
488 distributed among the member nodes and a NETCONF connector is spawned on
489 each node. From these nodes a master is chosen which handles the schema
490 download from the device and all the communication with the device. You
491 will be able to read/write to/from the device from all slave nodes due
492 to the proxy data brokers implemented.
493
494 You can use the ``odl-netconf-clustered-topology`` feature in a single
495 node scenario as well but the code that uses akka will be used, so for a
496 scenario where only a single node is used, ``odl-netconf-topology``
497 might be preferred.
498
499 Netconf-connector utilization
500 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
501
502 Once the connector is up and running, users can utilize the new mount
503 point instance. By using RESTCONF or from their application code. This
504 chapter deals with using RESTCONF and more information for app
505 developers can be found in the developers guide or in the official
506 tutorial application **ncmount** that can be found in the coretutorials
507 project:
508
509 -  https://github.com/opendaylight/coretutorials/tree/stable/beryllum/ncmount
510
511 Reading data from the device
512 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
513
514 Just invoke (no body needed):
515
516 GET
517 http://localhost:8080/restconf/operational/network-topology:network-topology/topology/topology-netconf/node/new-netconf-device/yang-ext:mount/
518
519 This will return the entire content of operation datastore from the
520 device. To view just the configuration datastore, change **operational**
521 in this URL to **config**.
522
523 Writing configuration data to the device
524 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
525
526 In general, you cannot simply write any data you want to the device. The
527 data have to conform to the YANG models implemented by the device. In
528 this example we are adding a new interface-configuration to the mounted
529 device (assuming the device supports Cisco-IOS-XR-ifmgr-cfg YANG model).
530 In fact this request comes from the tutorial dedicated to the
531 **ncmount** tutorial app.
532
533 POST
534 http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/new-netconf-device/yang-ext:mount/Cisco-IOS-XR-ifmgr-cfg:interface-configurations
535
536 ::
537
538     <interface-configuration xmlns="http://cisco.com/ns/yang/Cisco-IOS-XR-ifmgr-cfg">
539         <active>act</active>
540         <interface-name>mpls</interface-name>
541         <description>Interface description</description>
542         <bandwidth>32</bandwidth>
543         <link-status></link-status>
544     </interface-configuration>
545
546 Should return 200 response code with no body.
547
548 .. tip::
549
550     This call is transformed into a couple of NETCONF RPCs. Resulting
551     NETCONF RPCs that go directly to the device can be found in the
552     OpenDaylight logs after invoking ``log:set TRACE
553     org.opendaylight.controller.sal.connect.netconf`` in the Karaf
554     shell. Seeing the NETCONF RPCs might help with debugging.
555
556 This request is very similar to the one where we spawned a new netconf
557 device. That’s because we used the loopback netconf-connector to write
558 configuration data into config-subsystem datastore and config-subsystem
559 picked it up from there.
560
561 Invoking custom RPC
562 ^^^^^^^^^^^^^^^^^^^
563
564 Devices can implement any additional RPC and as long as it provides YANG
565 models for it, it can be invoked from OpenDaylight. Following example
566 shows how to invoke the get-schema RPC (get-schema is quite common among
567 netconf devices). Invoke:
568
569 POST
570 http://localhost:8181/restconf/operations/network-topology:network-topology/topology/topology-netconf/node/new-netconf-device/yang-ext:mount/ietf-netconf-monitoring:get-schema
571
572 ::
573
574     <input xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring">
575       <identifier>ietf-yang-types</identifier>
576       <version>2013-07-15</version>
577     </input>
578
579 This call should fetch the source for ietf-yang-types YANG model from
580 the mounted device.
581
582 Netconf-connector + Netopeer
583 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
584
585 `Netopeer <https://github.com/cesnet/netopeer>`__ (an open-source
586 NETCONF server) can be used for testing/exploring NETCONF southbound in
587 OpenDaylight.
588
589 Netopeer installation
590 ^^^^^^^^^^^^^^^^^^^^^
591
592 A `Docker <https://www.docker.com/>`__ container with netopeer will be
593 used in this guide. To install Docker and start the `netopeer
594 image <https://index.docker.io/u/dockeruser/netopeer/>`__ perform
595 following steps:
596
597 1. Install docker http://docs.docker.com/linux/step_one/
598
599 2. Start the netopeer image:
600
601    ::
602
603        docker run --rm -t -p 1831:830 dockeruser/netopeer
604
605 3. Verify netopeer is running by invoking (netopeer should send its
606    HELLO message right away:
607
608    ::
609
610        ssh root@localhost -p 1831 -s netconf
611        (password root)
612
613 Mounting netopeer NETCONF server
614 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
615
616 Preconditions:
617
618 -  OpenDaylight is started with features ``odl-restconf-all`` and
619    ``odl-netconf-connector-all``.
620
621 -  Netopeer is up and running in docker
622
623 Now just follow the section: `Spawning new NETCONF connectors`_.
624 In the payload change the:
625
626 -  name, e.g., to netopeer
627
628 -  username/password to your system credentials
629
630 -  ip to localhost
631
632 -  port to 1831.
633
634 After netopeer is mounted successfully, its configuration can be read
635 using RESTCONF by invoking:
636
637 GET
638 http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/netopeer/yang-ext:mount/
639
640 Northbound (NETCONF servers)
641 ----------------------------
642
643 OpenDaylight provides 2 types of NETCONF servers:
644
645 -  **NETCONF server for config-subsystem (listening by default on port
646    1830)**
647
648    -  Serves as a default interface for config-subsystem and allows
649       users to spawn/reconfigure/destroy modules (or applications) in
650       OpenDaylight
651
652 -  **NETCONF server for MD-SAL (listening by default on port 2830)**
653
654    -  Serves as an alternative interface for MD-SAL (besides RESTCONF)
655       and allows users to read/write data from MD-SAL’s datastore and to
656       invoke its rpcs (NETCONF notifications are not available in the
657       Boron release of OpenDaylight)
658
659 .. note::
660
661     The reason for having 2 NETCONF servers is that config-subsystem and
662     MD-SAL are 2 different components of OpenDaylight and require
663     different approach for NETCONF message handling and data
664     translation. These 2 components will probably merge in the future.
665
666 .. note::
667
668     Since Nitrogen release, there is performance regression in NETCONF
669     servers accepting SSH connections. While opening a connection takes
670     less than 10 seconds on Carbon, on Nitrogen time can increase up to
671     60 seconds. Please see https://bugs.opendaylight.org/show_bug.cgi?id=9020
672
673 NETCONF server for config-subsystem
674 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
675
676 This NETCONF server is the primary interface for config-subsystem. It
677 allows the users to interact with config-subsystem in a standardized
678 NETCONF manner.
679
680 In terms of RFCs, these are supported:
681
682 -  `RFC-6241 <http://tools.ietf.org/html/rfc6241>`__
683
684 -  `RFC-5277 <https://tools.ietf.org/html/rfc5277>`__
685
686 -  `RFC-6470 <https://tools.ietf.org/html/rfc6470>`__
687
688    -  (partially, only the schema-change notification is available in
689       Boron release)
690
691 -  `RFC-6022 <https://tools.ietf.org/html/rfc6022>`__
692
693 For regular users it is recommended to use RESTCONF + the
694 controller-config loopback mountpoint instead of using pure NETCONF. How
695 to do that is spesific for each component/module/application in
696 OpenDaylight and can be found in their dedicated user guides.
697
698 NETCONF server for MD-SAL
699 ~~~~~~~~~~~~~~~~~~~~~~~~~
700
701 This NETCONF server is just a generic interface to MD-SAL in
702 OpenDaylight. It uses the stadard MD-SAL APIs and serves as an
703 alternative to RESTCONF. It is fully model driven and supports any data
704 and rpcs that are supported by MD-SAL.
705
706 In terms of RFCs, these are supported:
707
708 -  `RFC-6241 <http://tools.ietf.org/html/rfc6241>`__
709
710 -  `RFC-6022 <https://tools.ietf.org/html/rfc6022>`__
711
712 -  `draft-ietf-netconf-yang-library-06 <https://tools.ietf.org/html/draft-ietf-netconf-yang-library-06>`__
713
714 Notifications over NETCONF are not supported in the Boron release.
715
716 .. tip::
717
718     Install NETCONF northbound for MD-SAL by installing feature:
719     ``odl-netconf-mdsal`` in karaf. Default binding port is **2830**.
720
721 Configuration
722 ^^^^^^^^^^^^^
723
724 The default configuration can be found in file: *08-netconf-mdsal.xml*.
725 The file contains the configuration for all necessary dependencies and a
726 single SSH endpoint starting on port 2830. There is also a (by default
727 disabled) TCP endpoint. It is possible to start multiple endpoints at
728 the same time either in the initial configuration file or while
729 OpenDaylight is running.
730
731 The credentials for SSH endpoint can also be configured here, the
732 defaults are admin/admin. Credentials in the SSH endpoint are not yet
733 managed by the centralized AAA component and have to be configured
734 separately.
735
736 Verifying MD-SAL’s NETCONF server
737 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
738
739 After the NETCONF server is available it can be examined by a command
740 line ssh tool:
741
742 ::
743
744     ssh admin@localhost -p 2830 -s netconf
745
746 The server will respond by sending its HELLO message and can be used as
747 a regular NETCONF server from then on.
748
749 Mounting the MD-SAL’s NETCONF server
750 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
751
752 To perform this operation, just spawn a new netconf-connector as
753 described in `Spawning new NETCONF connectors`_. Just change the ip to
754 "127.0.0.1" port to "2830" and its name to "controller-mdsal".
755
756 Now the MD-SAL’s datastore can be read over RESTCONF via NETCONF by
757 invoking:
758
759 GET
760 http://localhost:8181/restconf/operational/network-topology:network-topology/topology/topology-netconf/node/controller-mdsal/yang-ext:mount
761
762 .. note::
763
764     This might not seem very useful, since MD-SAL can be accessed
765     directly from RESTCONF or from Application code, but the same method
766     can be used to mount and control other OpenDaylight instances by the
767     "master OpenDaylight".
768
769 NETCONF stress/performance measuring tool
770 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
771
772 This is basically a NETCONF client that puts NETCONF servers under heavy
773 load of NETCONF RPCs and measures the time until a configurable amount
774 of them is processed.
775
776 RESTCONF stress-performance measuring tool
777 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
778
779 Very similar to NETCONF stress tool with the difference of using
780 RESTCONF protocol instead of NETCONF.
781
782 YANGLIB remote repository
783 -------------------------
784
785 There are scenarios in NETCONF deployment, that require for a centralized
786 YANG models repository. YANGLIB plugin provides such remote repository.
787
788 To start this plugin, you have to install odl-yanglib feature. Then you
789 have to configure YANGLIB either through RESTCONF or NETCONF. We will
790 show how to configure YANGLIB through RESTCONF.
791
792 YANGLIB configuration through RESTCONF
793 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
794
795 You have to specify what local YANG modules directory you want to provide.
796 Then you have to specify address and port whre you want to provide YANG
797 sources. For example, we want to serve yang sources from folder /sources
798 on localhost:5000 adress. The configuration for this scenario will be
799 as follows:
800
801 ::
802
803     PUT  http://localhost:8181/restconf/config/network-topology:network-topology/topology/topology-netconf/node/controller-config/yang-ext:mount/config:modules/module/yanglib:yanglib/example
804
805 Headers:
806
807 -  Accept: application/xml
808
809 -  Content-Type: application/xml
810
811 Payload:
812
813 ::
814
815    <module xmlns="urn:opendaylight:params:xml:ns:yang:controller:config">
816      <name>example</name>
817      <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:yanglib:impl">prefix:yanglib</type>
818      <broker xmlns="urn:opendaylight:params:xml:ns:yang:controller:yanglib:impl">
819        <type xmlns:prefix="urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding">prefix:binding-broker-osgi-registry</type>
820        <name>binding-osgi-broker</name>
821      </broker>
822      <cache-folder xmlns="urn:opendaylight:params:xml:ns:yang:controller:yanglib:impl">/sources</cache-folder>
823      <binding-addr xmlns="urn:opendaylight:params:xml:ns:yang:controller:yanglib:impl">localhost</binding-addr>
824      <binding-port xmlns="urn:opendaylight:params:xml:ns:yang:controller:yanglib:impl">5000</binding-port>
825    </module>
826
827 This should result in a 2xx response and new YANGLIB instance should be
828 created. This YANGLIB takes all YANG sources from /sources folder and
829 for each generates URL in form:
830
831 ::
832
833     http://localhost:5000/schemas/{modelName}/{revision}
834
835 On this URL will be hosted YANG source for particular module.
836
837 YANGLIB instance also write this URL along with source identifier to
838 ietf-netconf-yang-library/modules-state/module list.
839
840 Netconf-connector with YANG library as fallback
841 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
842
843 There is an optional configuration in netconf-connector called
844 yang-library. You can specify YANG library to be plugged as additional
845 source provider into the mount's schema repository. Since YANGLIB
846 plugin is advertising provided modules through yang-library model, we
847 can use it in mount point's configuration as YANG library.  To do this,
848 we need to modify the configuration of netconf-connector by adding this
849 XML
850
851 ::
852
853     <yang-library xmlns="urn:opendaylight:netconf-node-topology">
854       <yang-library-url xmlns="urn:opendaylight:netconf-node-topology">http://localhost:8181/restconf/operational/ietf-yang-library:modules-state</yang-library-url>
855       <username xmlns="urn:opendaylight:netconf-node-topology">admin</username>
856       <password xmlns="urn:opendaylight:netconf-node-topology">admin</password>
857     </yang-library>
858
859 This will register YANGLIB provided sources as a fallback schemas for
860 particular mount point.
861
862 NETCONF Call Home
863 -----------------
864
865 .. important::
866
867     The call home feature is experimental and will change in a future
868     release. In particular, the Yang models will change to those specified
869     in the `RFC 8071 <https://tools.ietf.org/html/rfc8071>`__
870
871 Call Home Installation
872 ~~~~~~~~~~~~~~~~~~~~~~
873
874 ODL Call-Home server is installed in Karaf by installing karaf feature
875 ``odl-netconf-callhome-ssh``. RESTCONF feature is recommended for
876 configuring Call Home & testing its functionality.
877
878 ::
879
880   feature:install odl-netconf-callhome-ssh
881
882
883 .. note::
884
885     In order to test Call Home functionality we recommend Netopeer.
886     See `Netopeer Call Home <https://github.com/CESNET/netopeer/wiki/CallHome>`__ to learn how to enable call-home on Netopeer.
887
888 Northbound Call-Home API
889 ~~~~~~~~~~~~~~~~~~~~~~~~
890
891 The northbound Call Home API is used for administering the Call-Home Server. The
892 following describes this configuration.
893
894 Global Configuration
895 ^^^^^^^^^^^^^^^^^^^^
896
897 Configuring global credentials
898 ''''''''''''''''''''''''''''''
899
900 ODL Call-Home server allows user to configure global credentials, which
901 will be used for devices which does not have device-specific credentials
902 configured.
903
904 This is done by creating
905 ``/odl-netconf-callhome-server:netconf-callhome-server/global/credentials``
906 with username and passwords specified.
907
908 *Configuring global username & passwords to try*
909
910 .. code-block:: none
911
912     PUT
913     /restconf/config/odl-netconf-callhome-server:netconf-callhome-server/global/credentials HTTP/1.1
914     Content-Type: application/json
915     Accept: application/json
916
917 .. code-block:: json
918
919     {
920       "credentials":
921       {
922         "username": "example",
923         "passwords": [ "first-password-to-try", "second-password-to-try" ]
924       }
925     }
926
927 Configuring to accept any ssh server key using global credentials
928 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
929
930 By default Netconf Call-Home Server accepts only incoming connections
931 from allowed devices
932 ``/odl-netconf-callhome-server:netconf-callhome-server/allowed-devices``,
933 if user desire to allow all incoming connections, it is possible to set
934 ``accept-all-ssh-keys`` to ``true`` in
935 ``/odl-netconf-callhome-server:netconf-callhome-server/global``.
936
937 The name of this devices in ``netconf-topology`` will be in format
938 ``ip-address:port``. For naming devices see Device-Specific
939 Configuration.
940
941 *Allowing unknown devices to connect*
942
943 This is a debug feature and should not be used in production. Besides being an obvious
944 security issue, this also causes the Call-Home Server to drastically increase its output
945 to the log.
946
947 .. code-block:: none
948
949     POST
950     /restconf/config/odl-netconf-callhome-server:netconf-callhome-server/global HTTP/1.1
951     Content-Type: application/json
952     Accept: application/json
953
954 .. code-block:: json
955
956     {
957       "global": {
958         "accept-all-ssh-keys": "true"
959       }
960     }
961
962 Device-Specific Configuration
963 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
964
965 Allowing Device & Configuring Name
966 ''''''''''''''''''''''''''''''''''
967
968 Netconf Call Home Server uses device provided SSH server key (host key)
969 to identify device. The pairing of name and server key is configured in
970 ``/odl-netconf-callhome-server:netconf-callhome-server/allowed-devices``.
971 This list is colloquially called a whitelist.
972
973 If the Call-Home Server finds the SSH host key in the whitelist, it continues
974 to negotiate a NETCONF connection over an SSH session. If the SSH host key is
975 not found, the connection between the Call Home server and the device is dropped
976 immediately. In either case, the device that connects to the Call home server
977 leaves a record of its presence in the operational store.
978
979 *Example of configuring device*
980
981 .. code-block:: none
982
983     PUT
984     /restconf/config/odl-netconf-callhome-server:netconf-callhome-server/allowed-devices/device/example HTTP/1.1
985     Content-Type: application/json
986     Accept: application/json
987
988 .. code-block:: json
989
990     {
991       "device": {
992         "unique-id": "example",
993         "ssh-host-key": "AAAAB3NzaC1yc2EAAAADAQABAAABAQDHoH1jMjltOJnCt999uaSfc48ySutaD3ISJ9fSECe1Spdq9o9mxj0kBTTTq+2V8hPspuW75DNgN+V/rgJeoUewWwCAasRx9X4eTcRrJrwOQKzb5Fk+UKgQmenZ5uhLAefi2qXX/agFCtZi99vw+jHXZStfHm9TZCAf2zi+HIBzoVksSNJD0VvPo66EAvLn5qKWQD4AdpQQbKqXRf5/W8diPySbYdvOP2/7HFhDukW8yV/7ZtcywFUIu3gdXsrzwMnTqnATSLPPuckoi0V2jd8dQvEcu1DY+rRqmqu0tEkFBurlRZDf1yhNzq5xWY3OXcjgDGN+RxwuWQK3cRimcosH"
994       }
995     }
996
997 Configuring Device with Device-specific Credentials
998 '''''''''''''''''''''''''''''''''''''''''''''''''''
999
1000 Call Home Server also allows to configure credentials per device basis,
1001 this is done by introducing ``credentials`` container into
1002 device-specific configuration. Format is same as in global credentials.
1003
1004 *Configuring Device with Credentials*
1005
1006 .. code-block:: none
1007
1008     PUT
1009     /restconf/config/odl-netconf-callhome-server:netconf-callhome-server/allowed-devices/device/example HTTP/1.1
1010     Content-Type: application/json
1011     Accept: application/json
1012
1013 .. code-block:: json
1014
1015     {
1016       "device": {
1017         "unique-id": "example",
1018         "credentials": {
1019           "username": "example",
1020           "passwords": [ "password" ]
1021         },
1022         "ssh-host-key": "AAAAB3NzaC1yc2EAAAADAQABAAABAQDHoH1jMjltOJnCt999uaSfc48ySutaD3ISJ9fSECe1Spdq9o9mxj0kBTTTq+2V8hPspuW75DNgN+V/rgJeoUewWwCAasRx9X4eTcRrJrwOQKzb5Fk+UKgQmenZ5uhLAefi2qXX/agFCtZi99vw+jHXZStfHm9TZCAf2zi+HIBzoVksSNJD0VvPo66EAvLn5qKWQD4AdpQQbKqXRf5/W8diPySbYdvOP2/7HFhDukW8yV/7ZtcywFUIu3gdXsrzwMnTqnATSLPPuckoi0V2jd8dQvEcu1DY+rRqmqu0tEkFBurlRZDf1yhNzq5xWY3OXcjgDGN+RxwuWQK3cRimcosH"
1023       }
1024     }
1025
1026 Operational Status
1027 ^^^^^^^^^^^^^^^^^^
1028
1029 Once an entry is made into the config side of "allowed-devices", the Call-Home Server will
1030 populate an corresponding operational device that is the same as the config device but
1031 has an additional status. By default, this status is *DISCONNECTED*. Once a device calls
1032 home, this status will change to one of:
1033
1034 *CONNECTED* — The device is currently connected and the NETCONF mount is available for network
1035 management.
1036
1037 *FAILED_AUTH_FAILURE* — The last attempted connection was unsuccessful because the Call-Home
1038 Server was unable to provide the acceptable credentials of the device. The device is also
1039 disconnected and not available for network management.
1040
1041 *FAILED_NOT_ALLOWED* — The last attempted connection was unsuccessful because the device was
1042 not recognized as an acceptable device. The device is also disconnected and not available for
1043 network management.
1044
1045 *FAILED* — The last attempted connection was unsuccessful for a reason other than not
1046 allowed to connect or incorrect client credentials. The device is also disconnected and not
1047 available for network management.
1048
1049 *DISCONNECTED* — The device is currently disconnected.
1050
1051 Rogue Devices
1052 '''''''''''''
1053
1054 Devices which are not on the whitelist might try to connect to the Call-Home Server. In
1055 these cases, the server will keep a record by instantiating an operational device. There
1056 will be no corresponding config device for these rogues. They can be identified readily
1057 because their device id, rather than being user-supplied, will be of the form
1058 "address:port". Note that if a device calls back multiple times, there will only be
1059 a single operatinal entry (even if the port changes); these devices are recognized by
1060 their unique host key.
1061
1062 Southbound Call-Home API
1063 ~~~~~~~~~~~~~~~~~~~~~~~~
1064
1065 The Call-Home Server listens for incoming TCP connections and assumes that the other side of
1066 the connection is a device calling home via a NETCONF connection with SSH for
1067 management. The server uses port 6666 by default and this can be configured via a
1068 blueprint configuration file.
1069
1070 The device **must** initiate the connection and the server will not try to re-establish the
1071 connection in case of a drop. By requirement, the server cannot assume it has connectivity
1072 to the device due to NAT or firewalls among others.