Skip to main content

jnprsr is a Parser for Juniper Configuration Files

Project description

jnprsr

PyPI Version

jnprsr ('ʤunəpɑrsər) is a Parser for Juniper configuration files.

It is based around a Lexer and Parser built using ANTLR4 (https://www.antlr.org/). The formal grammar used in our project was initially created by the batfish (https://github.com/batfish/batfish) project.

Our tool allows to generate an Abstract Syntax Tree (AST) from a given Juniper configuration file. This AST can then be processed further. Currently, we provide the following functions:

  • Pretty-Printing
  • Configuration Merge
  • Sub-Tree Selection

The AST generated by our implementation uses a data-type provided by the anytree (https://github.com/c0fec0de/anytree) library. You can easily process the AST generated by our implementation and use it in our own tools.

Please note: This is currently still a beta release. This product comes with absolutely no warranty. It is neither supported nor endorsed in any way by Juniper Networks Inc. We assume no liability for any undesired or incorrect behavior you might experience with this software. If you break your network using jnprsr, it is your responsibility and you should be ashamed of yourself for not testing your software properly.

Installation

You can install jnprsr using pip:

pip install jnprsr

You can also install directly from Git:

pip install git+https://github.com/markusju/jnprsr.git

TL;DR - What you can do with jnprsr

Pretty-Printing

It allows you to transform a configuration file looking like this

interfaces { et-0/0/0 {description "More Bandwidth!"; unit 0 {family inet{address 192.0.2.1/24;}}}}

into this

interfaces {
    et-0/0/0 {
        description "More Bandwidth!";
        unit 0 {
            family inet {
                address 192.0.2.1/24;
            }
        }
    }
}

Configuration Merge

Suppose you have this snippet

interfaces {
    et-0/0/0 {
        description "Skynet NNI";
    }
}

and this target configuration

interfaces {
    et-0/0/0 {
        unit 0 {
            family inet {
                address 192.0.2.1/24;
            } 
        }
    }
}

using jnprsr you can perform a > load merge operation on the target configuration with the snippet to generate this:

interfaces {
    et-0/0/0 {
        description "Skynet NNI";
        unit 0 {
            family inet {
                address 192.0.2.1/24;
            } 
        }
    }
}

Sub-Tree Selection

Let's say you have this configuration file:

protocols {
    bgp {
        group SKYNET-PEER {
            type external;
            peer-as 1337;
            neighbor 1.2.3.4;
        }
        group EVILCORP-PEER {
            type external;
            peer-as 1338;
            neighbor 1.2.3.5;
        }
        group UMBRELLACORP-PEER {
            type external;
            peer-as 1339;
            neighbor 1.2.3.6;
        }
    }
}

and you want to access the sub-tree of the SKYNET-PEER BGP peer-group.

Using jnprsr you can easily perform the equivalent of > show configuration protocols bgp group SKYNET-PEER:

protocols {
    bgp {
        group SKYNET-PEER {
            type external;
            peer-as 1337;
            neighbor 1.2.3.4;
        }
    }
}

Other Stuff

Since jnprsr creates an anytree object, you can easily work with the parsed configuration data. Some things you could do include, but are not limited to:

  • Validation and/or Verification: Does a certain configuration element or sub-tree exist?
  • Comparison: Comparing two given configurations, what nodes are different?
  • Editing: Create, Remove, Change a given configuration and generate textual output from the changed tree again.

Getting Started

On the shell

jnprsr currently comes with 3 commands that you can use on your shell:

  • jnprsr-pretty
  • jnprsr-subtree
  • jnprsr-merge

jnprsr-pretty

is a pretty printer. You can supply a Juniper Configuration file and it will pretty print the received configuration. Meaning that the configuration is returned with the proper indentation and spacing. You can use the script interactively. Simply call it and then paste the configuration. You can end your input on an empty new line with CTRL+D or by typing !END.

$ jnprsr-pretty
[Type CTRL+D or '!END' at a new line to end input]
interfaces { et-0/0/0 {description "More Bandwidth!"; unit 0 {family inet{address 192.0.2.1/24;}}}}
interfaces {
    et-0/0/0 {
        description "More Bandwidth!";
        unit 0 {
            family inet {
                address 192.0.2.1/24;
            }
        }
    }
}

Alternatively you can also simply pipe your messed up config at the script to make it pretty. In this case you do not need to end the input. Note that we are using the -s flag in this example. This silences any additional output, so that you can process the output more easily.

$ cat what-a-mess.txt | jnprsr-pretty -s
interfaces {
    et-0/0/0 {
        description "More Bandwidth!";
        unit 0 {
            family inet {
                address 192.0.2.1/24;
            }
        }
    }
}

jnprsr-subtree

is an interactive CLI allowing you to navigate a configuration (almost) as if you are working on a real device. Once you have loaded the configuration over STDIN you can use the auto completion function using the <TAB> key. You can navigate to a suggestion using the arrow keys. This script can be helpful when navigating large configuration files.

GIF showing the interactive use of jnprsr-subtree

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jnprsr-0.0.9.tar.gz (28.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jnprsr-0.0.9-py3-none-any.whl (27.0 kB view details)

Uploaded Python 3

File details

Details for the file jnprsr-0.0.9.tar.gz.

File metadata

  • Download URL: jnprsr-0.0.9.tar.gz
  • Upload date:
  • Size: 28.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for jnprsr-0.0.9.tar.gz
Algorithm Hash digest
SHA256 9f52c55fd3df6d0e0104aaeae52db3a9f08f67b0892f78b3ce5912ebb67764c7
MD5 61d329a4e4e7ab0697ff5de8c9abe41b
BLAKE2b-256 8bc6e939ec364d3bfa64b484bf567cd866c67e4f4e23863aacf4bc6cf5b08509

See more details on using hashes here.

Provenance

The following attestation bundles were made for jnprsr-0.0.9.tar.gz:

Publisher: publish.yml on markusju/jnprsr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jnprsr-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: jnprsr-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for jnprsr-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 272c6d6ce1afeb33a3d3271ccda44121e23ab6872eb921e92666590997d80b26
MD5 77b26f814d39a45d5723a9c0542237d5
BLAKE2b-256 2a76656799c8e417c3f84be59279bd0ef5369bbc536dfcdc6a8941d14d0a3383

See more details on using hashes here.

Provenance

The following attestation bundles were made for jnprsr-0.0.9-py3-none-any.whl:

Publisher: publish.yml on markusju/jnprsr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page