Bottle-based YANG Extractor and 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 following tools will need to be manually preinstalled:

Preparing the YANG modules

The sync.sh script uses rsync to download all IETF RFCs and drafts to a temporary directory, and then extracts all found YANG modules using xym. Please read and understand the script before you run it.

Building and Deploying Docker Image

The Dockerfile contains a two-stage build with the first stage downloading and preparing the YANG modules, and the second stage installs the runtime requirements and the prepared modules in single image ready for deployment.

The NSO configuration is setup to listen to port 8080 to avoid requiring root to run it, so remember to use portmapping when you start the container:

docker run -p 0.0.0.0:80:8080

Running the Validator in AWS

The current yangvalidator.org instance is running on docker on an AWS EC2 t2.micro instance. The docker image is pushed to a repository in Amazon ECS and then pulled from the EC2 instance.

Remember to set up the appropriate Security Group definition for the EC2 instance if you expect to reach the web server from the outside.