commit | a528d4ad529566f5236ffbc3c9eb0a8af8c1c6c8 | [log] [tgz] |
---|---|---|
author | Radek Krejci <rkrejci@cesnet.cz> | Fri Nov 03 16:56:13 2017 +0100 |
committer | Radek Krejci <rkrejci@cesnet.cz> | Fri Nov 03 16:56:13 2017 +0100 |
tree | 39cc5b08a0b3ef5db7516f97d42897c180679d12 | |
parent | 3c7082292e4caa54c55f5a8202a4cf211232c048 [diff] |
doc CHANGE update main README - update dependencies information - add features list
Web-based NETCONF management center
This tool is currently under development and not intended for production use. However, we welcome your feedback provided via the issue tracker.
The application is created as a module to the liberouter-gui framework, so to install it, follow the liberouter-gui instructions.
The backend is a Flask server written in Python 3 and utilizing libyang and libnetconf2 Python bindings. Unfortunatelly, the code of the bindings is not yet finished, so please use the devel branches of the mentioned libraries:
$ git clone -b devel https://github.com/CESNET/libyang $ mkdir -p libyang/build && cd libyang/build $ cmake -DGEN_LANGUAGE_BINDINGS=ON .. $ make # make install
$ git clone -b devel https://github.com/CESNET/libnetconf2 $ mkdir -p libnetconf2/build && cd libnetconf2/build $ cmake -DENABLE_PYTHON=ON .. $ make # make install