Skip to main content

Dynamic configuration files and images from NetBox.

Project description

Netbox Ninja Plugin

Development Status

A NetBox plugin for generating dynamic text files and images using Jinja2 templates.

Overview

Netbox Ninja Plugin enables dynamic content generation in NetBox through Jinja2 templates. It supports both text file generation and SVG image creation from draw.io XML templates, seamlessly integrating with NetBox's data model.

graph LR
    DATA[Any data in Netbox] --> TEMPLATE[Ninja template]
    TEMPLATE --> DRAWIO[Drawio file]
    DRAWIO[Drawio file] --> SVG[SVG image]
    TEMPLATE --> JSON[JSON file]
    TEMPLATE --> TEXT[Generic text]
    SVG --> NBUI[Netbox UI]
    JSON --> NBUI[Netbox UI]
    TEXT --> NBUI[Netbox UI]
    SVG --> API[Netbox API]
    JSON --> API[Netbox API]
    TEXT --> API[Netbox API]

Output files can be seen via Netbox UI and accessed via API.

See video introduction in Youtube.

Note: This plugin is currently in beta. While it's functional, some features are still under development and the API may change in future releases.

Use cases

Netbox Ninja Plugin can be used to generate always up-to-date outputs for many use cases including (but not limited to) following:

  • Network diagrams
  • Any other visualization of any Netbox data
  • Configuration files for others systems to fetch from Netbox
  • Any other text based output for any purpose

Key Features

  • Dynamic text file generation using Jinja2 templates
  • Template-based SVG image generation from draw.io XML format
  • Direct integration with NetBox's data model
  • REST API endpoints for template management
  • Support for object-specific template rendering
    • Show output in Ninja tab in chosen Netbox object view (i.e. Site)
    • Tempalate rendered per object (i.e for each Site)

Requirements

  • NetBox v4.0.11 - v4.3.6
  • drawio-export-api Docker container. Optional, required for SVG images that need to be fetched through REST API.

Compatibility

Plugin versions listed below have been tested with its corresponding NetBox version.

NetBox Version Plugin Version
4.2.3 - 4.3.6 0.1.10
4.0.11 - 4.3.2 0.1.9

Test Ninja in Codespaces

The quickest way to test Ninja is using GitHub Codespaces:

  1. Click the "Code" button on the repository and select "Create codespace on main"
  2. Once your Codespace is ready, run make demo_environment in the terminal
  3. Access the development environment at http://localhost:8000 with credentials admin/admin

Quick Start

  1. Install the plugin:
pip install netbox-ninja-plugin
  1. Add to NetBox configuration:
PLUGINS = [
    'netbox_ninja_plugin',
]
  1. Configure the plugin (see CONFIGURATION.md for detailed options):
PLUGINS_CONFIG = {
    "netbox_ninja_plugin": {
        "target_models": {
            "dcim": ["device", "interface", "site", "region"],
            "ipam": ["prefix"],
        },
        "jinja_model_querysets": {
            "dcim": ["device", "interface", "site", "region"],
            "ipam": ["prefix"],
        },
        "drawio_export_api": {
            "enabled": True,
            "url": "https://drawio-export-api:443/svg",
            "token": "your-token",
            "pem_file_path": "/path/to/drawio_export_api.pem",
            "verify_tls": True,
            "timeout": 60,
        },
        "top_level_menu": False,
    }
}

Usage

Template Creation

  1. Navigate to NetBox's Ninja Templates section
  2. Create a new template with:
    • Name: Template identifier
    • Output type: Text or Draw.io format
    • Object types: NetBox objects to associate with the template
    • Template code: Your Jinja2 template

Template Variables

  • Access NetBox objects using object queries, e.g. {{ sites.first() }} or {{ regions.get(slug='region1') }}
  • For object-specific templates, use {{ target_object }} to reference the current object

For detailed examples and use cases, see EXAMPLES.md.

Security Note

The plugin currently doesn't enforce object-level permissions in templates. Exercise caution when exposing data through templates, as users may access data beyond their normal permissions.

Documentation

  • Examples - Detailed usage examples and tutorials
  • Configuration - Detailed configuration options and examples

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

netbox_ninja_plugin-0.1.10.tar.gz (743.9 kB view details)

Uploaded Source

Built Distribution

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

netbox_ninja_plugin-0.1.10-py3-none-any.whl (757.2 kB view details)

Uploaded Python 3

File details

Details for the file netbox_ninja_plugin-0.1.10.tar.gz.

File metadata

  • Download URL: netbox_ninja_plugin-0.1.10.tar.gz
  • Upload date:
  • Size: 743.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for netbox_ninja_plugin-0.1.10.tar.gz
Algorithm Hash digest
SHA256 ab961bc2a961f80959f09aabf12d0e5bdacf699a1a58e95e56a0c0de63a0fb8b
MD5 255c30e1f2d39a6dc6416dfe724be3c5
BLAKE2b-256 b56e074669f72f4447214d46bf07338b408a7e12e5c469347c413372d03b1feb

See more details on using hashes here.

File details

Details for the file netbox_ninja_plugin-0.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for netbox_ninja_plugin-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 5863fad93b45072f4dac4ef1a4c789d0aa916f293faff759216f92f73c443498
MD5 52c9cd234352905b1c28e0f65993a2de
BLAKE2b-256 f3dea80cf57fa5a1f0a1de0e450a41f481299ed3aa08f9add1f28d743c55342d

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