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.3.0-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
-
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
-
Create an Optical Grid – Instantiate a grid from a template
- Navigate to: Plugins → Optical Grids → Add
- Select a grid type
-
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
-
Create Optical Connections – Link interfaces through wavelengths
- Navigate to: Plugins → Optical Connections → Add
- Select span, wavelength, and interfaces
-
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.3.0.tar.gz and dist/netbox_optics-0.3.0-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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netbox_optics-0.4.2.tar.gz.
File metadata
- Download URL: netbox_optics-0.4.2.tar.gz
- Upload date:
- Size: 37.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92b08abf4b604b2558fe72b9758ada1a3a10805bf848b6a90a7c8259fb32d9dc
|
|
| MD5 |
db7518bd3efaa781c34bb8ddde6ff4c0
|
|
| BLAKE2b-256 |
580a8b68994d4cd23b53dc825dfadcd080ec65cd9c79c45711820aeff8411ffd
|
File details
Details for the file netbox_optics-0.4.2-py3-none-any.whl.
File metadata
- Download URL: netbox_optics-0.4.2-py3-none-any.whl
- Upload date:
- Size: 47.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00122962670d04654c1e9de1fffa664db228c8688897d3a12d1e49c2d17c3e9a
|
|
| MD5 |
bf8ee340b2f30df8b25980342ec8433d
|
|
| BLAKE2b-256 |
733400b55142f5b71d5bd4528f4d48ec356d6bccf9d458492181f51175f42b60
|