A NetBox source for octoDNS.
Project description
A NetBox source for octoDNS
This project provides a NetBox source for OctoDNS. It retrieves IP address information from NetBox so that OctoDNS creates corresponding A/AAAA and PTR records.
Note: This is just a source for OctoDNS, not a provider. It only serve to populate records into a zone, cannot be synced to.
Installation
pip install octodns-netbox
Getting started
You must configure the url
and token
parameters in your YAML file to work with the NetBox API. You can also specify the TTL (Time to Live) for the generated records, but this parameter is optional, and the default value is 60.
providers:
netbox:
class: octodns_netbox.NetboxSource
url: https://ipam.example.com
token: env/NETBOX_TOKEN
ttl: 60
A records / AAAA records
To create A/AAAA records for octoDNS, you need to manage the mapping between IP addresses and fully qualified domain names (FQDNs) in NetBox. The description
field is used for this purpose, and it should contain a comma-separated list of hostnames (FQDNs).
Starting with Netbox v2.6.0, Netbox now has a dns_name
field in IP address records. But we do not use this field by default because this dns_name
field can only store single FQDN. To use a dns_name
field, set field_name: dns_name
in the configuration.
PTR records
octodns-netbox
also supports PTR records. By default, only the first FQDN in the field is used to generate the PTR record, but you can enable multiple PTR records for a single IP by setting the multivalue_ptr
parameter to true
in the configuration.
🔍 Example (multivalue_ptr: false
- default)
- IP Address:
192.0.2.1/24
- Description:
en0.host1.example.com,host1.example.com
- Description:
- DNS Zone:
2.0.192.in-addr.arpa.
1. PTR en0.host1.example.com.
🔍 Example (multivalue_ptr: true
)
- IP Address:
192.0.2.1/24
- Description:
en0.host1.example.com,host1.example.com
- Description:
- DNS Zone:
2.0.192.in-addr.arpa.
1. PTR en0.host1.example.com.
1. PTR host1.example.com.
Classless subnet delegation (IPv4 /31 to /25)
If you are using classless subnets in Netbox, you can automatically expand records for the following format zones:
<subnet>-<subnet mask bit count>.2.0.192.in-addr.arpa
(RFC 4183 style)<subnet>/<subnet mask bit count>.2.0.192.in-addr.arpa
(RFC 2317 style)
Examples
Here is an example configuration for octodns-netbox:
providers:
netbox:
class: octodns_netbox.NetboxSource
# Your Netbox URL
url: https://ipam.example.com
# Your Netbox Access Token (read-only)
# This token should have read-only access to Netbox.
token: env/NETBOX_TOKEN
# The TTL of the generated records (Optional, default: 60)
# Time to Live (TTL) specifies the time interval that a DNS record is stored in cache.
# The default value of 60 is commonly used for dynamic DNS records.
ttl: 60
# Advanced Parameters:
# The following parameters are optional and can be ignored for most use cases.
# Generate records including subdomains (Optional, default: `true`)
# If `false`, only records that belong directly to the zone (domain) will be generated.
# This can be useful to reduce the number of DNS queries and avoid `SubzoneRecordException` errors.
populate_subdomains: true
# FQDN field name (Optional, default: `description`)
# The `dns_name` field on Netbox is provided to hold only a single name,
# but typically one IP address will correspond to multiple DNS records (FQDNs).
# The `description` does not have any limitations so by default
# we use the `description` field to store multiple FQDNs, separated by commas.
# Other tested values are `dns_name`.
field_name: description
# Tag Name (Optional)
# By default, all records are retrieved from Netbox, but it can be restricted
# to only IP addresses assigned a specific tag.
# Multiple values can be passed, resulting in a logical AND operation.
populate_tags:
- tag_name
# VRF ID (Optional)
# By default, all records are retrieved from Netbox, but it can be restricted
# to only IP addresses assigned a specific VRF ID.
# If `0`, it explicitly points to the global VRF.
populate_vrf_id: 1
# VRF Name (Optional)
# VRF can also be specified by name.
# If there are multiple VRFs with the same name, it would be better to use `populate_vrf_id`.
# If `Global`, it explicitly points to the global VRF.
populate_vrf_name: mgmt
# Multi-value PTR records support (Optional, default: `false`)
# If `true`, multiple-valued PTR records will be generated.
# If `false`, the first FQDN value in the field will be used.
multivalue_ptr: true
route53:
class: octodns_route53.Route53Provider
access_key_id: env/AWS_ACCESS_KEY_ID
secret_access_key: env/AWS_SECRET_ACCESS_KEY
zones:
example.com.:
sources:
- netbox # will add A/AAAA records
targets:
- route53
0/26.2.0.192.in-addr.arpa.:
sources:
- netbox # will add PTR records (corresponding to A records)
targets:
- route53
0.8.b.d.0.1.0.0.2.ip6.arpa:
sources:
- netbox # will add PTR records (corresponding to AAAA records)
targets:
- route53
Contributing
See the contributing guide for detailed instructions on how to get started with our project.
License
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
File details
Details for the file octodns_netbox-0.3.0.tar.gz
.
File metadata
- Download URL: octodns_netbox-0.3.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da67874fbc675420c495e8c96bb2f42b0348da2c3b26c354b5fbba2a4593f970 |
|
MD5 | 776aefc282955023df05af9fdd0b47f0 |
|
BLAKE2b-256 | 3ea1d040fec4a13e0898320eba1151cc17579c12d1579801ff98884bcfb60a76 |
Provenance
File details
Details for the file octodns_netbox-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: octodns_netbox-0.3.0-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 242b09b60aee75f50ad3a7b07df68909e039f8a35b59426e05724aa65fc6e035 |
|
MD5 | 6d6179a82b340edc5d5179ee2c8fc1fb |
|
BLAKE2b-256 | 52f0a16901b193ff0df6a8f61b2815ef3daf589bbf8ee8ccd8e1c7577338873e |