A Netbox plugin that supports Virtual Circuit management
Project description
NetBox Virtual Circuit Plugin
A plugin for NetBox that supports Virtual Circuit management.
Definitions
A Virtual Circuit is a circuit created by routing two or more VLANs together.
Each Virtual Circuit is identified by a name, a numeric ID (0-32767), along with a context. Each Virtual Circuit must be assigned one of the following operational statuses:
- Pending Configuration
- Configured
- Pending Deletion
- Configuration Error
When a VLAN is assigned to a Virtual Circuit, it can not exist in another Virtual Circuit without first being removed.
Installing
Since the plugin is published on PyPI, simply issue:
pip install netbox-virtual-circuit-plugin
to download and install it.
To enable to plugin, add the plugin's name to the PLUGINS
list in
configuration.py
like so:
PLUGINS = ['netbox_virtual_circuit_plugin'] # Note that the name here use underscore, not hyphen.
Don't forget to restart NetBox to load the new plugin.
You might also have to manually run the database migrations for Netbox to create the appropriate tables for virtual circuits.
python3 manage.py migrate
For more information about installing plugins, refer to NetBox's documentation.
Using
Once the plugin is installed correctly as instructed above, one can find the Virtual Circuit section under Plugins navigation tab via NetBox UI that is ready to use with correct admin permission.
As for REST API use cases, the 2 group endpoints are exposed at:
/api/plugins/virtual-circuit/virtual-circuits
/api/plugins/virtual-circuit/vlans
While the former one is for creating/retrieving/modifying/deleting Virtual
Circuits, the later one is for assigning and managing Virtual-Circuit-to-VLAN
connections. For more information, refer to /api/docs
as it also conforms
to Swagger Specification for hosted visual documentations.
Developing
Plugins are essentially self-contained Django apps which integrate with NetBox to provide custom functionality. For more information, see NetBox documentation.
To help setup the development environment, it comes with a CLI helper
based on Makefile
, including the following commands:
clean Clean up build artifacts
deploy Run a local development deployment of the plugin with NetBox
docker Build a local docker image
help Print usage information
release Package and distribute the current release to PyPI
test Run unit tests
version Print the version
That said, one can simply build and run a local development image of the plugin with NetBox with a single line:
make build && make deploy
The application will be available after a few minutes at
http://0.0.0.0:8000/
. The default credentials are:
- Username: admin
- Password: admin
- API Token: 0123456789abcdef0123456789abcdef01234567
Below are several screenshots of the UI:
Contributing
If you experience a bug, would like to ask a question, or request a feature, open a new issue and provide as much context as possible. All contributions, questions, and feedback are welcomed and appreciated.
License
NetBox Virtual Circuit Plugin is licensed under GPLv3. See LICENSE for more info.
Project details
Release history Release notifications | RSS feed
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
Hashes for netbox-virtual-circuit-plugin-0.2.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 422c739f38502e34340a0c8e7ad814c991d64f6f6c3a9cd6479a1869ab7bd20e |
|
MD5 | d4ea72ce921dbfa4283439cef1630998 |
|
BLAKE2b-256 | 3e8c78e683a9f5b996a05f4e7ba5bad694164ba84fcdd220ad2207ddf33fa95d |
Hashes for netbox_virtual_circuit_plugin-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97e51ee96266be541a51e4492388f04414872a52e4829cbe06163df27e5cd4a6 |
|
MD5 | 0367a706a017ca071de7ec2deec9c157 |
|
BLAKE2b-256 | e019594158750eb497341e0f4b776b6bd3d13c72712b9bf84a4c442dd24bf28a |