Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sjm-steffann/netbox-ddns
Dynamic DNS Connector for NetBox
https://github.com/sjm-steffann/netbox-ddns
dns dns-updates hacktoberfest netbox netbox-plugin
Last synced: 26 days ago
JSON representation
Dynamic DNS Connector for NetBox
- Host: GitHub
- URL: https://github.com/sjm-steffann/netbox-ddns
- Owner: sjm-steffann
- License: apache-2.0
- Created: 2020-04-14T23:09:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-21T18:13:17.000Z (9 months ago)
- Last Synced: 2024-04-24T03:35:30.335Z (8 months ago)
- Topics: dns, dns-updates, hacktoberfest, netbox, netbox-plugin
- Language: Python
- Homepage:
- Size: 82 KB
- Stars: 94
- Watchers: 16
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-netbox - sjm-steffann/netbox-ddns - Dynamic DNS Connector for NetBox (Plugins)
README
# Dynamic DNS Connector for NetBox
This plugin lets you define DNS servers that support [RFC3007 Dynamic DNS Updates](https://tools.ietf.org/html/rfc3007).
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](https://netbox.readthedocs.org/) v3.0.0 and greater, support for Netbox v2.11.0 is dropped in v1.1.4 due to UI implementation.
> [!Important]
> Netbox 4.0 - Admin interface disabled by default
> Can be re-enabled by specifying `DJANGO_ADMIN_ENABLED = True` in `configuration.py`
> If static files are not loaded, re-run `upgrade.sh` this will copy back the required static assets.## 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:
```python
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!