Skip to content

wz88/omoikane

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Omoikane - Cisco Configuration Parser

A Python library for parsing and managing network device configurations using Pydantic models and Ansible-like parsing capabilities.

Features

  • Parse device configurations into structured Python objects
  • Type-safe configuration handling with Pydantic models
  • Support for interfaces, VLANs, routing protocols, and more
  • Easy access to parsed configuration data

Installation

Openssl is needed to run the code. Run the following commands:

# Install Openssl on mac
brew install openssl

# Install Openssl on ubuntu/debian
sudo apt-get install libssl-dev

# Install Openssl on red hat/centos
sudo yum install openssl-devel

Then, set the necessary environment variables to point to your OpenSSL installation:

export LDFLAGS="-L$(brew --prefix openssl)/lib"
export CPPFLAGS="-I$(brew --prefix openssl)/include"

Install the packages using pip

uv pip install -e .
uv pip install -e ".[dev]"

Usage

from models import CiscoIOS

# Create a router instance with config
config = """
hostname ROUTER-01
interface GigabitEthernet0/0
 description WAN Interface
 ip address 192.168.1.1 255.255.255.0
 no shutdown
"""

router = CiscoIOS(config)

# Access parsed configuration
print(router.config.hostname)  # ROUTER-01
print(router.get_interface('GigabitEthernet0/0').description)  # WAN Interface

Development

To run tests:

uv run --dev pytest tests/ -v

To run coverage:

uv run --dev pytest --cov=src --cov-report=term-missing tests/

About

A network path and policy analysis tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages