Dynamic DNS Connector for NetBox Fork of https://github.com/sjm-steffann/netbox-ddns
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Alarig Le Lay 33013d0c39
netbox_ddns/__init__.py: remove max_version check
2 years ago
.github/workflows Update python-publish.yml 3 years ago
.idea Silly editor update 3 years ago
netbox_ddns netbox_ddns/__init__.py: remove max_version check 2 years ago
.gitignore Initial commit 3 years ago
LICENSE.txt Initial commit 3 years ago
MANIFEST.in Fix MANIFEST.in 3 years ago
README.md Make compatible with NetBox 2.10 2 years ago
pyproject.toml Initial commit 3 years ago
setup.cfg Fix description content type 3 years ago
setup.py Initial commit 3 years ago

README.md

Dynamic DNS Connector for NetBox

This plugin lets you define DNS servers that support RFC3007 Dynamic DNS Updates. For each server you specify which domains and reverse DNS domains it is responsible for, and after that NetBox will automatically send DNS Updates to those servers whenever you change the DNS name of an IP Address in NetBox.

Updates are sent from the worker process in the background. You can see their progress either by configuring Django logging or by looking at the Background Tasks in the NetBox admin back-end.

For now all configuration is done in the NetBox admin back-end. A later version will provide a nicer user interface.

Compatibility

This plugin in compatible with NetBox 2.8, 2.9 and 2.10.

NetBox 2.10 introduced breaking changes that make it unusable for my own use cases. There is work being done to create a fork of NetBox that is friendlier to both network operators and contributors. My future work will be in support of that.

Installation

First, add netbox-ddns to your /opt/netbox/local_requirements.txt file. Create it if it doesn't exist.

Then enable the plugin in /opt/netbox/netbox/netbox/configuration.py, like:

PLUGINS = [
    'netbox_ddns',
]

And finally run /opt/netbox/upgrade.sh. This will download and install the plugin and update the database when necessary. Don't forget to run sudo systemctl restart netbox netbox-rq like upgrade.sh tells you!