Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 1.6 KB

README.md

File metadata and controls

16 lines (13 loc) · 1.6 KB

bottle-yang-extractor-validator

A web application that allows you to fetch, extract and validate YANG modules by RFC number, by IETF draft name, or by uploading YANG files. It is built on top of the bottle python micro-web framework using a combination of xym to fetch and extract YANG modules from IETF specifications, and pyang, confdc and yanglint YANG compilers to validate the extracted modules.

Prerequisites

The following requirements will be installed by the pip installation script:

  • The bottle micro-framework
  • The bottle application defaults to requiring the cherrypy
  • The pyang tool
  • The xym tool

The following tools will need to be manually preinstalled:

  • The yanglint tool needs to be preinstalled
  • The confdc compiler needs to be preinstalled, use the --confd-install-path option to point to the ConfD install directory (i.e. $CONFD_DIR)
  • YANG modules commonly required for validation (e.g. the IETF modules for interface and ip configuration as well as the types) are expected to be in /opt/local/share/yang/
  • The default port is 8080 to avoid requiring root privileges. Use the --port=80 option with root privileges to listen to the default HTTP port.