Parse, Audit, Query, Build, and Modify Cisco IOS-style and JunOS-style configurations
Reason this release was yanked:
CiscoConfParse Github Issue #289
Project description
ciscoconfparse
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.
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
- The latest copy of the docs are archived on the web
- There is also a CiscoConfParse Tutorial
Editing the Package
git clone https://github.com/mpenning/ciscoconfparsecd ciscoconfparsegit checkout -b develop- Add / modify / delete on the
developbranch make test- If tests run clean,
git commitall the pending changes on thedevelopbranch - (as required) Edit the version number in pyproject.toml
git checkout maingit merge developmake testmake repo-pushmake pypi
Pre-requisites
The ciscoconfparse python package requires Python versions 3.6+ (note: Python 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
poetryfor Python3.x... :python -m pip install ciscoconfparse
If you're interested in the source, you can always pull from the github repo:
-
Download from the github repo: :
git clone git://github.com/mpenning/ciscoconfparse cd ciscoconfparse/ python -m pip install .
Other Resources
- Dive into Python3 is a good way to learn Python
- Team CYMRU has a Secure IOS Template, which is especially useful for external-facing routers / switches
- Cisco's Guide to hardening IOS devices
- Center for Internet Security Benchmarks (An email address, cookies, and javascript are required)
Bug Tracker and Support
- Please report any suggestions, bug reports, or annoyances with a github bug report.
- 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 on Stack Overflow or reddit/r/Python.
- If you're having problems with your Cisco devices, you can contact:
Unit-Tests
The project's test workflow checks 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:
License and Copyright
ciscoconfparse is licensed GPLv3
- Copyright (C) 2021-2022 David Michael Pennington
- Copyright (C) 2020-2021 David Michael Pennington at Cisco Systems (post-acquisition: Cisco acquired ThousandEyes)
- Copyright (C) 2019 David Michael Pennington at ThousandEyes
- Copyright (C) 2012-2019 David Michael Pennington at Samsung Data Services
- Copyright (C) 2011-2012 David Michael Pennington at Dell Computer Corp
- Copyright (C) 2007-2011 David Michael Pennington
The word "Cisco" is a registered trademark of Cisco Systems.
Author
ciscoconfparse was written by David Michael Pennington (mike [~at~] pennington [.dot.] net).
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ciscoconfparse-1.6.41.tar.gz.
File metadata
- Download URL: ciscoconfparse-1.6.41.tar.gz
- Upload date:
- Size: 132.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.7.0 Linux/5.10.0-15-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10b5d5c8c34d9e7b1c8e0f20353b64dbb7746e64861e1242c6bfe15aabc967eb
|
|
| MD5 |
c0718ef2b439a4963695cc8a2f30d31e
|
|
| BLAKE2b-256 |
23e28e987fccf13ea5daeaa7314fd5f5b5d9111f9b59cd029695aa45b1b5eff4
|
File details
Details for the file ciscoconfparse-1.6.41-py3-none-any.whl.
File metadata
- Download URL: ciscoconfparse-1.6.41-py3-none-any.whl
- Upload date:
- Size: 140.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.7.0 Linux/5.10.0-15-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d4149c4c69b0cbff5678d3318ac7aad90655a124740c022fbb4e9a7c9dcfefb
|
|
| MD5 |
33335abf41821f3ecbfee8fec7387e9f
|
|
| BLAKE2b-256 |
04ca8d1f2803586d244dd37b4c1e21a7b8b664c7a95fc84ed5b3c77449155f8d
|