NetBox Labs, Diode NetBox plugin
Project description
Diode NetBox Plugin
The Diode NetBox plugin is a NetBox plugin. It is a required component of the Diode ingestion service.
Diode is a NetBox ingestion service that greatly simplifies and enhances the process to add and update network data in NetBox, ensuring your network source of truth is always accurate and can be trusted to power your network automation pipelines.
More information about Diode can be found at https://netboxlabs.com/blog/introducing-diode-streamlining-data-ingestion-in-netbox/.
Compatibility
NetBox Version | Plugin Version |
---|---|
>= 3.7.2 | 0.1.0 |
>= 4.1.0 | 0.4.0 |
Installation
Source the NetBox Python virtual environment:
cd /opt/netbox
source venv/bin/activate
Install the plugin:
pip install netboxlabs-diode-netbox-plugin
In your NetBox configuration.py
file, add netbox_diode_plugin
to the PLUGINS
list.
PLUGINS = [
"netbox_diode_plugin",
]
Also in your configuration.py
file, in order to customise the plugin settings, add netbox_diode_plugin
to the
PLUGINS_CONFIG
dictionary, e.g.:
PLUGINS_CONFIG = {
"netbox_diode_plugin": {
# Auto-provision users for Diode plugin
"auto_provision_users": False,
# Diode gRPC target for communication with Diode server
"diode_target_override": "grpc://localhost:8080/diode",
# User allowed for Diode to NetBox communication
"diode_to_netbox_username": "diode-to-netbox",
# User allowed for NetBox to Diode communication
"netbox_to_diode_username": "netbox-to-diode",
# User allowed for data ingestion
"diode_username": "diode-ingestion",
},
}
Note: Once you customise usernames with PLUGINS_CONFIG during first installation, you should not change or remove them later on. Doing so will cause the plugin to stop working properly.
auto_provision_users
is a boolean flag (default: False
) that determines whether the plugin should automatically
create the users during
migration. If set to False
, you will need to provision Diode users with their API keys manually via the plugin's setup
page in the NetBox UI.
Restart NetBox services to load the plugin:
sudo systemctl restart netbox netbox-rq
See NetBox Documentation for details.
Configuration
Source the NetBox Python virtual environment (if not already):
cd /opt/netbox
source venv/bin/activate
Three API keys will be needed (these are random 40 character long alphanumeric strings). They can be generated and set to the appropriate environment variables with the following commands:
# API key for the Diode service to interact with NetBox
export DIODE_TO_NETBOX_API_KEY=$(head -c20 </dev/urandom|xxd -p); env | grep DIODE_TO_NETBOX_API_KEY
# API key for the NetBox service to interact with Diode
export NETBOX_TO_DIODE_API_KEY=$(head -c20 </dev/urandom|xxd -p); env | grep NETBOX_TO_DIODE_API_KEY
# API key for Diode SDKs to ingest data into Diode
export DIODE_API_KEY=$(head -c20 </dev/urandom|xxd -p); env | grep DIODE_API_KEY
Note: store these API key strings in a safe place as they will be needed later to configure the Diode server.
If you don't set these environment variables, the plugin will generate random API keys for you either during the
migration process (with auto_provision_users
set to True
) or when you manually create the users in the plugin's
setup page in the NetBox UI.
It's important to note that environment variables with API keys should be populated in the Diode server's environment variables (see docs) as well to ensure proper communication between the Diode SDK, Diode server and the NetBox plugin.
Run migrations to create all necessary resources:
cd /opt/netbox/netbox
./manage.py migrate netbox_diode_plugin
Running Tests
make docker-compose-netbox-plugin-test
License
Distributed under the PolyForm Shield License 1.0.0 License. See LICENSE.md for more information.
Required Notice
Copyright NetBox Labs, Inc.
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
File details
Details for the file netboxlabs-diode-netbox-plugin-0.6.0.tar.gz
.
File metadata
- Download URL: netboxlabs-diode-netbox-plugin-0.6.0.tar.gz
- Upload date:
- Size: 46.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27a4e9717b701bde594a1612e790c62c8e3b9e8c1af73fd2670f35240b6d813f |
|
MD5 | 75c89f34b953891259fa4c16f226bdd3 |
|
BLAKE2b-256 | b71016b6328c03f4205e58db5f144648ed38aa9f76d838fd428168a3f3f78dd2 |