Skip to main content

NetBox plugin for modeling Wavelength Division Multiplexing optical connections

Project description

NetBox Optics Plugin

NetBox plugin for modeling Wavelength Division Multiplexing optical connections.

Features

  • Optical Grid Types: Define wavelength grid templates (DWDM, CWDM, FlexGrid)
  • Optical Grid Instances: Create grid instances from templates
  • Wavelength Management: Track individual wavelengths with their availability status
  • Optical Spans: Model optical fiber connections between sites
  • Optical Connections: Map interfaces to wavelengths on spans
  • Mux Device Support: Map wavelengths to multiplexer ports
  • Validation: Comprehensive validation of wavelength reservations and device assignments
  • REST API: Full API support for automation

Requirements

  • Python 3.10 or higher
  • NetBox 3.7.8 or later

Installation

From PyPI

pip install netbox-optics

From Source

# Build the package
pip install build
python -m build

# Install the wheel
pip install dist/netbox_optics-0.4.4-py3-none-any.whl

From Git Repository

pip install git+https://github.com/dropbox/netbox-optics.git #todo url

Configuration

Add to your NetBox configuration.py:

PLUGINS = ['netbox_optics']

PLUGINS_CONFIG = {
    'netbox_optics': {}
}

Run database migrations:

python manage.py migrate netbox_optics

Restart NetBox services:

sudo systemctl restart netbox

Usage

Quick Start

  1. Define an Optical Grid Type – Create a template with wavelength spacing (e.g., DWDM 50GHz, CWDM)

    • Navigate to: Plugins → Optical Grid Types → Add
    • Set spacing and add wavelengths
  2. Create an Optical Grid – Instantiate a grid from a template

    • Navigate to: Plugins → Optical Grids → Add
    • Select a grid type
  3. Create an Optical Span – Define fiber connection between sites

    • Navigate to: Plugins → Optical Spans → Add
    • Select sites A and B, assign a grid, set vendor circuit ID
  4. Create Optical Connections – Link interfaces through wavelengths

    • Navigate to: Plugins → Optical Connections → Add
    • Select span, wavelength, and interfaces
  5. Optional: Map Mux Devices – Assign wavelengths to multiplexer ports

    • Navigate to: Plugins → Mux Wavelength Maps → Add
    • Select mux device, port, and wavelength

API Usage

import requests

# Get all optical spans
response = requests.get(
    'https://netbox.example.com/api/plugins/optics/optical-spans/',
    headers={'Authorization': 'Token YOUR_TOKEN'}
)

# Create an optical connection
response = requests.post(
    'https://netbox.example.com/api/plugins/optics/optical-connections/',
    headers={'Authorization': 'Token YOUR_TOKEN'},
    json={
        'span': 1,
        'wavelength': 1000.00,
        'interface_a': 100,
        'interface_z': 200,
        'tx_power': 10
    }
)

Development

Setup

# Clone the repository
git clone https://github.com/dropbox/netbox-optics.git #todo url
cd netbox-optics

# Create virtual environment
python -m venv venv
source venv/bin/activate

# Install in development mode with dev dependencies
pip install -e ".[dev]"

NetBox Development Environment

# Clone NetBox (if not already available)
git clone https://github.com/netbox-community/netbox.git
cd netbox

# Install the plugin
pip install -e /path/to/netbox-optics

# Add to configuration.py
echo "PLUGINS = ['netbox_optics']" >> netbox/netbox/configuration.py

# Run migrations
python manage.py migrate netbox_optics

# Start development server
python manage.py runserver

Code Quality

# Lint the code
flake8 netbox_optics/

# Format code
black netbox_optics/

Testing

# Install test dependencies
pip install -e ".[dev]"

# Run tests with NetBox API token
export netbox_token=your_token_here
pytest tests/e2e_tests/ -v -s

Building

# Install build tool
pip install build

# Build distribution packages
python -m build

# Output: dist/netbox_optics-0.4.4.tar.gz and dist/netbox_optics-0.4.4-py3-none-any.whl

Documentation

  • API Documentation: Available at /api/plugins/optics/ on your NetBox instance

Support

  • Issues: Report bugs or request features on GitHub Issues # todo url

Acknowledgments

Thanks to Dropbox for supporting open source development!

License

Copyright (c) 2025 Dropbox, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

See LICENSE file for full license text.

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_optics-0.4.4.tar.gz (38.2 kB view details)

Uploaded Source

Built Distribution

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

netbox_optics-0.4.4-py3-none-any.whl (47.9 kB view details)

Uploaded Python 3

File details

Details for the file netbox_optics-0.4.4.tar.gz.

File metadata

  • Download URL: netbox_optics-0.4.4.tar.gz
  • Upload date:
  • Size: 38.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for netbox_optics-0.4.4.tar.gz
Algorithm Hash digest
SHA256 4e1b7969d0337c809608584cca9269d967560ec795e5303925b05ee642fe6103
MD5 ef8a76b83197ab66bf67964f61f7515e
BLAKE2b-256 5b3f0f17be37bf1f269495c413d501d0f80abf74fdc16cb2c01acd6ec4126c96

See more details on using hashes here.

File details

Details for the file netbox_optics-0.4.4-py3-none-any.whl.

File metadata

  • Download URL: netbox_optics-0.4.4-py3-none-any.whl
  • Upload date:
  • Size: 47.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for netbox_optics-0.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0463a336531634187735d013b7ad0ef796dbdf73ebccff4287bf35458942b8cb
MD5 2f36764d1f6ef4c37fbdc9916de1e667
BLAKE2b-256 bfbbd6d5456edff9c31576eb515dfbf940f3c37415524f425dbb8b2babdf29b2

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