Skip to main content

Nothing but a human leveraging the power of threads to save time. See the below diagram and try to get it.

Project description

AutoFetch

Nothing but a human leveraging the power of threads to save time. See the below diagram and try to get it.

AutoFetchDiag Image will be here

AutoFetcher OSPF Configuration Checker

This script is an example of how to leverage the AutoFetcher Python library to remotely connect to a list of network devices (DUTs - Devices Under Test) and determine if OSPF (Open Shortest Path First) routing protocol is configured on them. It's designed for efficient, concurrent checking across a large number of devices.

🚀 Features

  • Automated OSPF Detection: Connects to devices and checks their running configuration for OSPF.
  • AutoFetcher Integration: Demonstrates the use of DutFetcher for retrieving device lists and DutGrabber for parallel execution of custom logic.
  • Concurrent Execution: Utilizes multithreading to check OSPF configuration on up to 'n' (configurable) devices simultaneously.
  • Structured Output: Saves the results for each device in a clear JSON format.
  • Robust Error Handling: Catches AutoFetchException for connectivity/command issues and general exceptions for unexpected errors.

📋 Requirements

This script requires the AutoFetcher library. You can install it via pip:

pip install AFAD

🛠️ Setup

To get started with this script, follow these steps:

1. Save the Script

Save the provided Python code into a file named check_ospf.py (or any other .py file name you prefer).

2. Create strings.json

In the same directory as your check_ospf.py script, create a file named strings.json. This file stores your TAC server credentials, which AutoFetcher uses to authenticate and retrieve the device list.

Example strings.json Format:

{
  "TAC_ART_SERVER": "your_tac_server_address",
  "TAC_HOST": "your_tac_host_username",
  "PASSWORD": "your_tac_host_password"
}
  • Replace "your_tac_server_address" with the actual TAC server address.
  • Replace "your_tac_host_username" with your TAC username.
  • Replace "your_tac_host_password" with your TAC password.

⚠️ Security Warning

strings.json contains sensitive credentials. Please:

  • Do NOT commit this file to public repositories.
  • Set file permissions to restrict access on your local machine.

💡 Usage

Once you have set up the script and the strings.json file, run the OSPF configuration checker:

python check_ospf.py

What Happens:

  • Initializes DutFetcher with credentials from strings.json.
  • Fetches the full device list using: Art list --domain=all.
  • Runs filter_for_affected_dut for each device concurrently (default: 500 threads).
  • Saves results to output.json.

📊 Output: output.json

The file will look like this:

{
  ...,
  "[AUTO-FETCH] Failure: OSPF is not configured!": [
    "dut123",
    "dut456"
    ],
  ...,
  "[AUTO-FETCH] Success: OSPF is configured!": [
    "dut-a",
    "dut-b",
    "dut-x"
  ],
  ...
  
}

Each key is a reason/message string, and the value under that key is list of DUTs affected for that key.


🔍 filter_for_affected_dut Function

Here’s the core logic used for checking OSPF config:

def filter_for_affected_dut(device: str, grabber: DutGrabber):
    try:
        show_running_config_output = grabber.execute_to_dut(device, ['enable', 'show running-config'])
        commands = show_running_config_output[1]['cmds']

        is_ospf_configured = any(line.startswith("router ospf ") for line in commands)
        
        if is_ospf_configured:
            return "[AUTO-FETCH] Success: OSPF is configured!"
        else:
            return "[AUTO-FETCH] Failure: OSPF is not configured!"

    except AutoFetchException as e:
        return f"[AUTO-FETCH] Exception from command execution : {e}"
    except Exception as e:
        print("[AUTO-FETCH] Exception occurred!")
        return f"[AUTO-FETCH] Exception : {e}"

This function:

  • Executes show running-config
  • Parses returned lines to check for "router ospf "
  • Returns a result string

🤝 Contributing

Contributions, issues, and feature requests are welcome! Feel free to check the issues page or open a pull request.


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

afad-0.1.0.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

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

afad-0.1.0-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file afad-0.1.0.tar.gz.

File metadata

  • Download URL: afad-0.1.0.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for afad-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c2a1e6d071662de1f14753f522b643f937aebae66927ba73146b2b58cd3370bc
MD5 031e967f742fdba872da963a24fa5747
BLAKE2b-256 6490118de93ac03d2e1bea76b0a59e25c9dae1907cf5c60d1f2002c0dc866b42

See more details on using hashes here.

File details

Details for the file afad-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: afad-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 11.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for afad-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a0952e253728f236cadf2f2db4baaad0814b33d9351aacb36a087ca1feb58004
MD5 7b838e5712b128ab6514fb7e50feb2ae
BLAKE2b-256 f5dbbd968e81fea0d1a003194465c6edfaf8094933f2f70cea673e49a9268ee9

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