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-1.0.0.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

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

afad-1.0.0-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for afad-1.0.0.tar.gz
Algorithm Hash digest
SHA256 072c423f0582e08234fc239e76169a17ecc4dfb73ced1110d18a5be1bebb6a9b
MD5 7815505bdb753ccd13120594b467bbb5
BLAKE2b-256 97c0a1c85e2eecf467eafd1d93b8a4ca178053ed85fe69cc8d4f4e8f4920903b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for afad-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c3da4005dd66fcb5061b7bb6b9db21796181c985e62c910a8e3db26b063f1484
MD5 50371d2748df12b09161c06f7478bf12
BLAKE2b-256 0bebdd89bb63d467bd49e3d260355c899f83f05a871acf5928d530b7996850fd

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