Skip to main content

Parse, Audit, Query, Build, and Modify Cisco IOS-style and JunOS-style configurations

Project description

Github unittest workflow Version Downloads License

Introduction: What is ciscoconfparse?

Short answer: ciscoconfparse is a Python library that helps you quickly answer questions like these about your configurations:

  • What interfaces are shutdown?

  • Which interfaces are in trunk mode?

  • What address and subnet mask is assigned to each interface?

  • Which interfaces are missing a critical command?

  • Is this configuration missing a standard config line?

It can help you:

  • Audit existing router / switch / firewall / wlc configurations

  • Modify existing configurations

  • Build new configurations

Speaking generally, the library examines an IOS-style config and breaks it into a set of linked parent / child relationships. You can perform complex queries about these relationships.

CiscoConfParse Parent / Child relationships

Usage

The following code will parse a configuration stored in ‘exampleswitch.conf’ and select interfaces that are shutdown.

from ciscoconfparse import CiscoConfParse

parse = CiscoConfParse('exampleswitch.conf', syntax='ios')

for intf_obj in parse.find_objects_w_child('^interface', '^\s+shutdown'):
    print("Shutdown: " + intf_obj.text)

The next example will find the IP address assigned to interfaces.

from ciscoconfparse import CiscoConfParse

parse = CiscoConfParse('exampleswitch.conf', syntax='ios')

for intf_obj in parse.find_objects('^interface'):

    intf_name = intf_obj.re_match_typed('^interface\s+(\S.+?)$')

    # Search children of all interfaces for a regex match and return
    # the value matched in regex match group 1.  If there is no match,
    # return a default value: ''
    intf_ip_addr = intf_obj.re_match_iter_typed(
        r'ip\saddress\s(\d+\.\d+\.\d+\.\d+)\s', result_type=str,
        group=1, default='')
    print("{0}: {1}".format(intf_name, intf_ip_addr))

What if we don’t use Cisco?

Don’t let that stop you.

As of CiscoConfParse 1.2.4, you can parse brace-delimited configurations into a Cisco IOS style (see Github Issue #17), which means that CiscoConfParse can parse these configurations:

  • Juniper Networks Junos

  • Palo Alto Networks Firewall configurations

  • F5 Networks configurations

CiscoConfParse also handles anything that has a Cisco IOS style of configuration, which includes:

  • Cisco IOS, Cisco Nexus, Cisco IOS-XR, Cisco IOS-XE, Aironet OS, Cisco ASA, Cisco CatOS

  • Arista EOS

  • Brocade

  • HP Switches

  • Force 10 Switches

  • Dell PowerConnect Switches

  • Extreme Networks

  • Enterasys

  • Screenos

Docs

Building the Package

  • cd into the root ciscoconfparse directory

  • Edit the version number in pyproject.toml (as required)

  • git commit all pending changes

  • make test

  • make repo-push

  • make pypi

Pre-requisites

ciscoconfparse requires Python versions 3.5+ (note: version 3.7.0 has a bug - ref Github issue #117, but version 3.7.1 works); the OS should not matter.

Installation and Downloads

  • Use poetry for Python3.x…

    python -m pip install ciscoconfparse

If you’re interested in the source, you can always pull from the github repo:

  • From github source download:

    git clone git://github.com/mpenning/ciscoconfparse
    cd ciscoconfparse/
    python -m pip install .

Other Resources

Bug Tracker and Support

  • Please report any suggestions, bug reports, or annoyances with ciscoconfparse through the github bug tracker.

  • If you’re having problems with general python issues, consider searching for a solution on Stack Overflow. If you can’t find a solution for your problem or need more help, you can ask a question.

  • If you’re having problems with your Cisco devices, you can open a case with Cisco TAC; if you prefer crowd-sourcing, you can ask on the Stack Exchange Network Engineering site.

Unit-Tests

Github workflow tests ciscoconfparse on Python versions 3.6 and higher, as well as a pypy JIT executable.

Click the image below for details; the current build status is:

Github unittest workflow

Author and Thanks

ciscoconfparse was written by David Michael Pennington (mike [~at~] pennington [/dot] net).

Special thanks:

  • Thanks to David Muir Sharnoff for his suggestion about making a special case for IOS banners.

  • Thanks to Alan Cownie for his API suggestions.

  • Thanks to CrackerJackMack for reporting Github Issue #13

  • Soli Deo Gloria

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

ciscoconfparse-1.6.23.tar.gz (112.5 kB view details)

Uploaded Source

Built Distribution

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

ciscoconfparse-1.6.23-py3-none-any.whl (118.9 kB view details)

Uploaded Python 3

File details

Details for the file ciscoconfparse-1.6.23.tar.gz.

File metadata

  • Download URL: ciscoconfparse-1.6.23.tar.gz
  • Upload date:
  • Size: 112.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.7.0 Linux/5.10.0-9-amd64

File hashes

Hashes for ciscoconfparse-1.6.23.tar.gz
Algorithm Hash digest
SHA256 8b59ae06967d5c9c9b09064ebcdff8312ee89a92d0d284c6377460ced6c59fc0
MD5 dececb416c9407b313b595c9c5614d02
BLAKE2b-256 a9a88d2cf943819bc98bad83a09c11101d55ee36a36dcb992425f52f778cc13a

See more details on using hashes here.

File details

Details for the file ciscoconfparse-1.6.23-py3-none-any.whl.

File metadata

  • Download URL: ciscoconfparse-1.6.23-py3-none-any.whl
  • Upload date:
  • Size: 118.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.7.0 Linux/5.10.0-9-amd64

File hashes

Hashes for ciscoconfparse-1.6.23-py3-none-any.whl
Algorithm Hash digest
SHA256 08d4a98b6f20eea9c182e34453a198841312114759f7580840a00b5aadc6686e
MD5 41098a3f32abcbdabac60415502590f9
BLAKE2b-256 36a03762e963c2ce1dfc3febf328112b6c3981407a4d33a0acb34e141b0d80f2

See more details on using hashes here.

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