netwninja / nornir-apps

Repository with some applications I created using Nornir framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Repository with examples of Nornir applications

Supporting my DEVNET-2192 Automate your Network with Nornir presentation.

To run these examples, you need an environment with IOS-XE routers. You can have any number, but at least two is recommended. You would also want to modify the inventory folder with the details for your environment (IP addresses, credentials).

On the control machine, you need to have Python 3.6+ installed (though it was tested on Python 3.7.5). Dependencies are managed with poetry. After cloning the repository, use poetry install to install dependencies. When you are running the scripts, you would want to prepend them with poetry run, for example: poetry run python scripts/gather_commands.py. Run scripts in the root of the repository.

License

It is MIT licensed. Feel free to do whatever you want with the code (including commercial use). No attribution is required.

Scripts details

  • gather_commands.py - executes some show commands and saves outputs to a file, one per each device
  • cli_configure.py - configures network devices based on Jinja2 template templates/config.j2
  • netconf_save_config.py - retrieves XML configuration via NETCONF and saves it to a file, one per each device
  • restconf_get_lldp_neighbors.py - retrieves LLDP details using OpenConfig LLDP YANG model + RESTCONF as a tranport protocol. Prints all connections on the console
  • build_network_diagram_lldp.py - retrieves LLDP details using OpenConfig LLDP YANG model + RESTCONF as a tranport protocol, then parses them, builds a graph and creates a network diagram based on that graph
  • netconf_configure.py - configures network devices using NETCONF where the data resides in YAML files. Jinja XML templates are NOT used.

About

Repository with some applications I created using Nornir framework

License:MIT License


Languages

Language:Jupyter Notebook 49.1%Language:Python 48.7%Language:Makefile 2.2%