netbox-plugin-dns 1.3b1__py3-none-any.whl → 1.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of netbox-plugin-dns might be problematic. Click here for more details.
- netbox_dns/__init__.py +3 -2
- netbox_dns/api/nested_serializers.py +54 -49
- netbox_dns/api/serializers_/dnssec_key_template.py +22 -13
- netbox_dns/api/serializers_/dnssec_policy.py +89 -40
- netbox_dns/api/serializers_/nameserver.py +25 -13
- netbox_dns/api/serializers_/record.py +46 -38
- netbox_dns/api/serializers_/record_template.py +21 -12
- netbox_dns/api/serializers_/registrar.py +14 -5
- netbox_dns/api/serializers_/registration_contact.py +13 -5
- netbox_dns/api/serializers_/view.py +28 -19
- netbox_dns/api/serializers_/zone.py +87 -62
- netbox_dns/api/serializers_/zone_template.py +40 -34
- netbox_dns/choices/dnssec_key_template.py +4 -0
- netbox_dns/choices/record.py +4 -2
- netbox_dns/filtersets/dnssec_key_template.py +10 -4
- netbox_dns/filtersets/dnssec_policy.py +2 -0
- netbox_dns/filtersets/nameserver.py +9 -4
- netbox_dns/filtersets/record.py +16 -15
- netbox_dns/filtersets/record_template.py +13 -12
- netbox_dns/filtersets/registrar.py +1 -0
- netbox_dns/filtersets/registration_contact.py +1 -0
- netbox_dns/filtersets/view.py +10 -4
- netbox_dns/filtersets/zone.py +39 -20
- netbox_dns/filtersets/zone_template.py +10 -9
- netbox_dns/forms/dnssec_key_template.py +97 -46
- netbox_dns/forms/dnssec_policy.py +124 -105
- netbox_dns/forms/nameserver.py +71 -36
- netbox_dns/forms/record.py +96 -78
- netbox_dns/forms/record_template.py +87 -59
- netbox_dns/forms/registrar.py +55 -39
- netbox_dns/forms/registration_contact.py +64 -41
- netbox_dns/forms/view.py +98 -51
- netbox_dns/forms/zone.py +273 -243
- netbox_dns/forms/zone_template.py +151 -101
- netbox_dns/graphql/types.py +3 -3
- netbox_dns/locale/de/LC_MESSAGES/django.mo +0 -0
- netbox_dns/locale/fr/LC_MESSAGES/django.mo +0 -0
- netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py +25 -0
- netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py +29 -0
- netbox_dns/migrations/0021_alter_record_ptr_record.py +25 -0
- netbox_dns/models/dnssec_key_template.py +24 -22
- netbox_dns/models/dnssec_policy.py +17 -16
- netbox_dns/models/nameserver.py +26 -25
- netbox_dns/models/record.py +117 -61
- netbox_dns/models/record_template.py +30 -29
- netbox_dns/models/registrar.py +13 -12
- netbox_dns/models/registration_contact.py +33 -32
- netbox_dns/models/view.py +16 -15
- netbox_dns/models/zone.py +88 -57
- netbox_dns/models/zone_template.py +35 -34
- netbox_dns/tables/dnssec_key_template.py +13 -12
- netbox_dns/tables/dnssec_policy.py +18 -15
- netbox_dns/tables/nameserver.py +10 -8
- netbox_dns/tables/record.py +55 -34
- netbox_dns/tables/record_template.py +21 -17
- netbox_dns/tables/registrar.py +15 -9
- netbox_dns/tables/registration_contact.py +15 -9
- netbox_dns/tables/view.py +25 -12
- netbox_dns/tables/zone.py +23 -21
- netbox_dns/tables/zone_template.py +17 -13
- netbox_dns/template_content.py +13 -2
- netbox_dns/templates/netbox_dns/record.html +13 -11
- netbox_dns/templates/netbox_dns/zone.html +10 -0
- netbox_dns/validators/dns_name.py +1 -1
- netbox_dns/views/dnssec_key_template.py +3 -3
- netbox_dns/views/record.py +19 -3
- netbox_dns/views/record_template.py +3 -1
- netbox_dns/views/zone_template.py +5 -3
- {netbox_plugin_dns-1.3b1.dist-info → netbox_plugin_dns-1.3.1.dist-info}/METADATA +3 -2
- {netbox_plugin_dns-1.3b1.dist-info → netbox_plugin_dns-1.3.1.dist-info}/RECORD +73 -70
- {netbox_plugin_dns-1.3b1.dist-info → netbox_plugin_dns-1.3.1.dist-info}/WHEEL +1 -1
- {netbox_plugin_dns-1.3b1.dist-info → netbox_plugin_dns-1.3.1.dist-info}/licenses/LICENSE +0 -0
- {netbox_plugin_dns-1.3b1.dist-info → netbox_plugin_dns-1.3.1.dist-info}/top_level.txt +0 -0
netbox_dns/tables/view.py
CHANGED
|
@@ -14,6 +14,19 @@ __all__ = (
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class ViewTable(TenancyColumnsMixin, NetBoxTable):
|
|
17
|
+
class Meta(NetBoxTable.Meta):
|
|
18
|
+
model = View
|
|
19
|
+
|
|
20
|
+
fields = (
|
|
21
|
+
"description",
|
|
22
|
+
"ip_address_filter",
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
default_columns = (
|
|
26
|
+
"name",
|
|
27
|
+
"default_view",
|
|
28
|
+
)
|
|
29
|
+
|
|
17
30
|
name = tables.Column(
|
|
18
31
|
verbose_name=_("Name"),
|
|
19
32
|
linkify=True,
|
|
@@ -23,21 +36,11 @@ class ViewTable(TenancyColumnsMixin, NetBoxTable):
|
|
|
23
36
|
)
|
|
24
37
|
tags = TagColumn(url_name="plugins:netbox_dns:view_list")
|
|
25
38
|
|
|
26
|
-
class Meta(NetBoxTable.Meta):
|
|
27
|
-
model = View
|
|
28
|
-
fields = ("description", "ip_address_filter")
|
|
29
|
-
default_columns = ("name", "default_view")
|
|
30
|
-
|
|
31
39
|
|
|
32
40
|
class RelatedViewTable(TenancyColumnsMixin, NetBoxTable):
|
|
33
|
-
actions = ActionsColumn(actions=())
|
|
34
|
-
|
|
35
|
-
name = tables.Column(
|
|
36
|
-
linkify=True,
|
|
37
|
-
)
|
|
38
|
-
|
|
39
41
|
class Meta(NetBoxTable.Meta):
|
|
40
42
|
model = View
|
|
43
|
+
|
|
41
44
|
fields = (
|
|
42
45
|
"name",
|
|
43
46
|
"description",
|
|
@@ -45,4 +48,14 @@ class RelatedViewTable(TenancyColumnsMixin, NetBoxTable):
|
|
|
45
48
|
"tenant_group",
|
|
46
49
|
"tags",
|
|
47
50
|
)
|
|
48
|
-
|
|
51
|
+
|
|
52
|
+
default_columns = (
|
|
53
|
+
"name",
|
|
54
|
+
"description",
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
name = tables.Column(
|
|
58
|
+
linkify=True,
|
|
59
|
+
)
|
|
60
|
+
tags = TagColumn(url_name="plugins:netbox_dns:view_list")
|
|
61
|
+
actions = ActionsColumn(actions=())
|
netbox_dns/tables/zone.py
CHANGED
|
@@ -19,6 +19,27 @@ __all__ = (
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
class ZoneTable(TenancyColumnsMixin, NetBoxTable):
|
|
22
|
+
class Meta(NetBoxTable.Meta):
|
|
23
|
+
model = Zone
|
|
24
|
+
|
|
25
|
+
fields = (
|
|
26
|
+
"description",
|
|
27
|
+
"soa_rname",
|
|
28
|
+
"soa_serial",
|
|
29
|
+
"inline_signing",
|
|
30
|
+
"rfc2317_parent_managed",
|
|
31
|
+
"registry_domain_id",
|
|
32
|
+
"expiration_date",
|
|
33
|
+
"domain_status",
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
default_columns = (
|
|
37
|
+
"name",
|
|
38
|
+
"view",
|
|
39
|
+
"status",
|
|
40
|
+
"tags",
|
|
41
|
+
)
|
|
42
|
+
|
|
22
43
|
name = tables.Column(
|
|
23
44
|
verbose_name=_("Name"),
|
|
24
45
|
linkify=True,
|
|
@@ -78,28 +99,9 @@ class ZoneTable(TenancyColumnsMixin, NetBoxTable):
|
|
|
78
99
|
def render_name(self, value, record):
|
|
79
100
|
return record.display_name
|
|
80
101
|
|
|
81
|
-
class Meta(NetBoxTable.Meta):
|
|
82
|
-
model = Zone
|
|
83
|
-
fields = (
|
|
84
|
-
"description",
|
|
85
|
-
"soa_rname",
|
|
86
|
-
"soa_serial",
|
|
87
|
-
"inline_signing",
|
|
88
|
-
"rfc2317_parent_managed",
|
|
89
|
-
"registry_domain_id",
|
|
90
|
-
"expiration_date",
|
|
91
|
-
"domain_status",
|
|
92
|
-
)
|
|
93
|
-
default_columns = (
|
|
94
|
-
"name",
|
|
95
|
-
"view",
|
|
96
|
-
"status",
|
|
97
|
-
"tags",
|
|
98
|
-
)
|
|
99
|
-
|
|
100
102
|
|
|
101
103
|
class ZoneDisplayTable(ZoneTable):
|
|
102
|
-
actions = ActionsColumn(actions=("changelog",))
|
|
103
|
-
|
|
104
104
|
class Meta(ZoneTable.Meta):
|
|
105
105
|
pass
|
|
106
|
+
|
|
107
|
+
actions = ActionsColumn(actions=("changelog",))
|
|
@@ -14,6 +14,19 @@ __all__ = (
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class ZoneTemplateTable(TenancyColumnsMixin, NetBoxTable):
|
|
17
|
+
class Meta(NetBoxTable.Meta):
|
|
18
|
+
model = ZoneTemplate
|
|
19
|
+
|
|
20
|
+
fields = (
|
|
21
|
+
"soa_rname",
|
|
22
|
+
"description",
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
default_columns = (
|
|
26
|
+
"name",
|
|
27
|
+
"tags",
|
|
28
|
+
)
|
|
29
|
+
|
|
17
30
|
name = tables.Column(
|
|
18
31
|
verbose_name=_("Name"),
|
|
19
32
|
linkify=True,
|
|
@@ -50,25 +63,16 @@ class ZoneTemplateTable(TenancyColumnsMixin, NetBoxTable):
|
|
|
50
63
|
linkify=True,
|
|
51
64
|
)
|
|
52
65
|
|
|
53
|
-
class Meta(NetBoxTable.Meta):
|
|
54
|
-
model = ZoneTemplate
|
|
55
|
-
fields = (
|
|
56
|
-
"soa_rname",
|
|
57
|
-
"description",
|
|
58
|
-
)
|
|
59
|
-
default_columns = (
|
|
60
|
-
"name",
|
|
61
|
-
"tags",
|
|
62
|
-
)
|
|
63
|
-
|
|
64
66
|
|
|
65
67
|
class ZoneTemplateDisplayTable(ZoneTemplateTable):
|
|
66
|
-
actions = ActionsColumn(actions="")
|
|
67
|
-
|
|
68
68
|
class Meta(NetBoxTable.Meta):
|
|
69
69
|
model = ZoneTemplate
|
|
70
|
+
|
|
70
71
|
fields = ("description",)
|
|
72
|
+
|
|
71
73
|
default_columns = (
|
|
72
74
|
"name",
|
|
73
75
|
"description",
|
|
74
76
|
)
|
|
77
|
+
|
|
78
|
+
actions = ActionsColumn(actions="")
|
netbox_dns/template_content.py
CHANGED
|
@@ -20,6 +20,7 @@ class RelatedDNSRecords(PluginTemplateExtension):
|
|
|
20
20
|
|
|
21
21
|
def right_page(self):
|
|
22
22
|
ip_address = self.context.get("object")
|
|
23
|
+
request = self.context.get("request")
|
|
23
24
|
|
|
24
25
|
address_records = ip_address.netbox_dns_records.all()
|
|
25
26
|
pointer_records = [
|
|
@@ -32,6 +33,7 @@ class RelatedDNSRecords(PluginTemplateExtension):
|
|
|
32
33
|
address_record_table = RelatedRecordTable(
|
|
33
34
|
data=address_records,
|
|
34
35
|
)
|
|
36
|
+
address_record_table.configure(request)
|
|
35
37
|
else:
|
|
36
38
|
address_record_table = None
|
|
37
39
|
|
|
@@ -39,6 +41,7 @@ class RelatedDNSRecords(PluginTemplateExtension):
|
|
|
39
41
|
pointer_record_table = RelatedRecordTable(
|
|
40
42
|
data=pointer_records,
|
|
41
43
|
)
|
|
44
|
+
pointer_record_table.configure(request)
|
|
42
45
|
else:
|
|
43
46
|
pointer_record_table = None
|
|
44
47
|
|
|
@@ -56,11 +59,16 @@ class RelatedDNSViews(PluginTemplateExtension):
|
|
|
56
59
|
|
|
57
60
|
def right_page(self):
|
|
58
61
|
prefix = self.context.get("object")
|
|
62
|
+
request = self.context.get("request")
|
|
59
63
|
|
|
60
64
|
if assigned_views := prefix.netbox_dns_views.all():
|
|
61
|
-
|
|
65
|
+
assigned_views_table = RelatedViewTable(data=assigned_views)
|
|
66
|
+
assigned_views_table.configure(request)
|
|
67
|
+
context = {"assigned_views": assigned_views_table}
|
|
62
68
|
elif inherited_views := get_views_by_prefix(prefix):
|
|
63
|
-
|
|
69
|
+
inherited_views_table = RelatedViewTable(data=inherited_views)
|
|
70
|
+
inherited_views_table.configure(request)
|
|
71
|
+
context = {"inherited_views": inherited_views_table}
|
|
64
72
|
else:
|
|
65
73
|
context = {}
|
|
66
74
|
|
|
@@ -86,6 +94,7 @@ class IPRelatedDNSRecords(PluginTemplateExtension):
|
|
|
86
94
|
|
|
87
95
|
def right_page(self):
|
|
88
96
|
ip_address = self.context.get("object")
|
|
97
|
+
request = self.context.get("request")
|
|
89
98
|
|
|
90
99
|
address_records = Record.objects.filter(
|
|
91
100
|
type__in=(RecordTypeChoices.A, RecordTypeChoices.AAAA),
|
|
@@ -100,6 +109,7 @@ class IPRelatedDNSRecords(PluginTemplateExtension):
|
|
|
100
109
|
address_record_table = RelatedRecordTable(
|
|
101
110
|
data=address_records,
|
|
102
111
|
)
|
|
112
|
+
address_record_table.configure(request)
|
|
103
113
|
else:
|
|
104
114
|
address_record_table = None
|
|
105
115
|
|
|
@@ -107,6 +117,7 @@ class IPRelatedDNSRecords(PluginTemplateExtension):
|
|
|
107
117
|
pointer_record_table = RelatedRecordTable(
|
|
108
118
|
data=pointer_records,
|
|
109
119
|
)
|
|
120
|
+
pointer_record_table.configure(request)
|
|
110
121
|
else:
|
|
111
122
|
pointer_record_table = None
|
|
112
123
|
|
|
@@ -116,22 +116,24 @@
|
|
|
116
116
|
<td>{{ object.ptr_record|linkify }}</td>
|
|
117
117
|
</tr>
|
|
118
118
|
{% endif %}
|
|
119
|
-
{% if object.
|
|
119
|
+
{% if object.address_records.exists %}
|
|
120
120
|
<tr>
|
|
121
|
-
<th scope="row">{% trans "Address
|
|
122
|
-
<td>
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
121
|
+
<th scope="row">{% trans "Address Records" %}</th>
|
|
122
|
+
<td>
|
|
123
|
+
<table>
|
|
124
|
+
{% for address_record in object.address_records.all %}
|
|
125
|
+
<tr>
|
|
126
|
+
<td>{{ address_record|linkify:"name" }}.{{ address_record.zone|linkify:"name" }}</td>
|
|
127
|
+
</tr>
|
|
128
|
+
{% endfor %}
|
|
129
|
+
</table>
|
|
130
|
+
</td>
|
|
128
131
|
</tr>
|
|
129
132
|
{% endif %}
|
|
130
|
-
{%
|
|
131
|
-
{% if object.ipam_ip_address %}
|
|
133
|
+
{% if ipam_ip_address %}
|
|
132
134
|
<tr>
|
|
133
135
|
<th scope="row">{% trans "IPAM IP Address" %}</th>
|
|
134
|
-
<td>{{
|
|
136
|
+
<td>{{ ipam_ip_address|linkify }}</td>
|
|
135
137
|
</tr>
|
|
136
138
|
{% endif %}
|
|
137
139
|
<tr>
|
|
@@ -108,6 +108,16 @@
|
|
|
108
108
|
<th scope="row">{% trans "Use Inline Signing" %}</th>
|
|
109
109
|
<td>{% checkmark object.inline_signing %}</td>
|
|
110
110
|
</tr>
|
|
111
|
+
<tr>
|
|
112
|
+
<th scope="row">{% trans "Parental Agents" %}</th>
|
|
113
|
+
<td>
|
|
114
|
+
<table>
|
|
115
|
+
{% for parental_agent in object.parental_agents %}
|
|
116
|
+
<tr><td>{{ parental_agent }}</td></tr>
|
|
117
|
+
{% endfor %}
|
|
118
|
+
</table>
|
|
119
|
+
</td>
|
|
120
|
+
</tr>
|
|
111
121
|
</table>
|
|
112
122
|
</div>
|
|
113
123
|
{% endif %}
|
|
@@ -49,7 +49,7 @@ def _get_label(tolerate_leading_underscores=False, always_tolerant=False):
|
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
def _has_invalid_double_dash(name):
|
|
52
|
-
return bool(re.findall(r"
|
|
52
|
+
return bool(re.findall(r"(^|\.)(?!xn)..--", name, re.IGNORECASE))
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
def validate_fqdn(name, always_tolerant=False):
|
|
@@ -37,9 +37,9 @@ class DNSSECKeyTemplateView(generic.ObjectView):
|
|
|
37
37
|
|
|
38
38
|
def get_extra_context(self, request, instance):
|
|
39
39
|
if instance.policies.exists():
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
40
|
+
policy_table = DNSSECPolicyDisplayTable(data=instance.policies.all())
|
|
41
|
+
policy_table.configure(request)
|
|
42
|
+
return {"policy_table": policy_table}
|
|
43
43
|
|
|
44
44
|
return {}
|
|
45
45
|
|
netbox_dns/views/record.py
CHANGED
|
@@ -51,7 +51,7 @@ class RecordListView(generic.ObjectListView):
|
|
|
51
51
|
@register_model_view(Record, "list_managed", path="managed", detail=False)
|
|
52
52
|
class ManagedRecordListView(generic.ObjectListView):
|
|
53
53
|
queryset = Record.objects.filter(managed=True).prefetch_related(
|
|
54
|
-
"ipam_ip_address", "
|
|
54
|
+
"ipam_ip_address", "address_records"
|
|
55
55
|
)
|
|
56
56
|
filterset = RecordFilterSet
|
|
57
57
|
filterset_form = RecordFilterForm
|
|
@@ -141,11 +141,26 @@ class RecordView(generic.ObjectView):
|
|
|
141
141
|
|
|
142
142
|
if instance.type == RecordTypeChoices.CNAME:
|
|
143
143
|
try:
|
|
144
|
-
|
|
144
|
+
cname_target_table = self.get_value_records(instance)
|
|
145
|
+
if cname_target_table is not None:
|
|
146
|
+
cname_target_table.configure(request)
|
|
147
|
+
context["cname_target_table"] = cname_target_table
|
|
145
148
|
except CNAMEWarning as exc:
|
|
146
149
|
context["cname_warning"] = str(exc)
|
|
147
150
|
else:
|
|
148
|
-
|
|
151
|
+
cname_table = self.get_cname_records(instance)
|
|
152
|
+
if cname_table is not None:
|
|
153
|
+
cname_table.configure(request)
|
|
154
|
+
context["cname_table"] = cname_table
|
|
155
|
+
|
|
156
|
+
if instance.ipam_ip_address is not None:
|
|
157
|
+
context["ipam_ip_address"] = instance.ipam_ip_address
|
|
158
|
+
elif instance.address_records is not None:
|
|
159
|
+
address_record = instance.address_records.filter(
|
|
160
|
+
ipam_ip_address__isnull=False
|
|
161
|
+
).first()
|
|
162
|
+
if address_record is not None:
|
|
163
|
+
context["ipam_ip_address"] = address_record.ipam_ip_address
|
|
149
164
|
|
|
150
165
|
if not instance.managed:
|
|
151
166
|
name = dns_name.from_text(instance.name, origin=None)
|
|
@@ -155,6 +170,7 @@ class RecordView(generic.ObjectView):
|
|
|
155
170
|
|
|
156
171
|
if Zone.objects.filter(
|
|
157
172
|
active=True,
|
|
173
|
+
view=instance.zone.view,
|
|
158
174
|
name__iregex=regex_from_list(
|
|
159
175
|
get_parent_zone_names(
|
|
160
176
|
instance.fqdn,
|
|
@@ -50,9 +50,11 @@ class RecordTemplateView(generic.ObjectView):
|
|
|
50
50
|
context["unicode_value"] = unicode_value
|
|
51
51
|
|
|
52
52
|
if instance.zone_templates.exists():
|
|
53
|
-
|
|
53
|
+
zone_template_table = ZoneTemplateDisplayTable(
|
|
54
54
|
data=instance.zone_templates.all()
|
|
55
55
|
)
|
|
56
|
+
zone_template_table.configure(request)
|
|
57
|
+
context["zone_template_table"] = zone_template_table
|
|
56
58
|
|
|
57
59
|
return context
|
|
58
60
|
|
|
@@ -37,10 +37,12 @@ class ZoneTemplateView(generic.ObjectView):
|
|
|
37
37
|
|
|
38
38
|
def get_extra_context(self, request, instance):
|
|
39
39
|
if instance.record_templates.exists():
|
|
40
|
+
record_template_table = RecordTemplateDisplayTable(
|
|
41
|
+
data=instance.record_templates.all()
|
|
42
|
+
)
|
|
43
|
+
record_template_table.configure(request)
|
|
40
44
|
return {
|
|
41
|
-
"record_template_table":
|
|
42
|
-
data=instance.record_templates.all()
|
|
43
|
-
)
|
|
45
|
+
"record_template_table": record_template_table,
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
return {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: netbox-plugin-dns
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: NetBox DNS is a NetBox plugin for managing DNS data.
|
|
5
5
|
Author-email: Peter Eckel <pete@netbox-dns.org>
|
|
6
6
|
Project-URL: Homepage, https://github.com/peteeckel/netbox-plugin-dns
|
|
@@ -8,7 +8,7 @@ Project-URL: Documentation, https://github.com/peteeckel/netbox-plugin-dns/blob/
|
|
|
8
8
|
Project-URL: Repository, https://github.com/peteeckel/netbox-plugin-dns
|
|
9
9
|
Project-URL: Issues, https://github.com/peteeckel/netbox-plugin-dns/issues
|
|
10
10
|
Keywords: netbox,netbox-plugin,dns
|
|
11
|
-
Classifier: Development Status ::
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Requires-Python: >=3.10
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
@@ -52,6 +52,7 @@ The main focus of the plugin is to ensure the quality of the data stored in it.
|
|
|
52
52
|
* Support for [RFC 2317](https://datatracker.ietf.org/doc/html/rfc2317) delegation of PTR zones for IPv4 subnets longer than 24 bits
|
|
53
53
|
* Templating for zones and records enables faster creations of zones with given boilerplate object relations, such as name servers, tags, tenants or registration information, or records like standard SPF or MX records that are the same for a subset of zones
|
|
54
54
|
* IPAM DNSsync can be used to automatically create address and pointer records for IP addresses by assigning prefixes to DNS views. When an IP address has a DNS name assigned and there are zones with matching names in the DNS views linked to the IP address' prefix, a matching DNS record will be created in these zones
|
|
55
|
+
* DNSSEC support for storing configuration data relevant to DNSSEC operation in NetBox DNS
|
|
55
56
|
|
|
56
57
|
Other main features include:
|
|
57
58
|
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=
|
|
1
|
+
netbox_dns/__init__.py,sha256=GEWbFp50kHBgrhLUzp8A7ExgJAOKlyH0Oz8BdkjQjAk,4890
|
|
2
2
|
netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
|
|
3
3
|
netbox_dns/navigation.py,sha256=u90MwWBySg1Z9yfZEdvUctYWEkab5z1Y3019J7U_-3g,7741
|
|
4
|
-
netbox_dns/template_content.py,sha256=
|
|
4
|
+
netbox_dns/template_content.py,sha256=nwjbWkMc02vpTmcFQdiAA1TdopJiZ0MkRy6qa18_wLI,4848
|
|
5
5
|
netbox_dns/urls.py,sha256=wrse8l5scD-jz_O7WY0YXRlYPzpkL-0-kyAd-wCPtbQ,2596
|
|
6
6
|
netbox_dns/api/field_serializers.py,sha256=nVZ6d69DWagONDwbYCP2j3cmL-x9lryitF1wThEJxyI,725
|
|
7
|
-
netbox_dns/api/nested_serializers.py,sha256=
|
|
7
|
+
netbox_dns/api/nested_serializers.py,sha256=7ViTZBNMEZ7-NAGn5LXnd7AWxt7TbpFdAq1pcCPtTK8,3695
|
|
8
8
|
netbox_dns/api/serializers.py,sha256=OHrpfJkBn6D1y6b3nIxBEFyE50U5p-Aqv4lBojMEFgk,474
|
|
9
9
|
netbox_dns/api/urls.py,sha256=-kQaei47yZeGbDpQ9RaFaFlFb682ThuPA5h321_2cgM,1000
|
|
10
10
|
netbox_dns/api/views.py,sha256=w71SRyZue5zPD1C64TIr496nYFA_ARjHTlpSVFTZ76o,4522
|
|
11
11
|
netbox_dns/api/serializers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
netbox_dns/api/serializers_/dnssec_key_template.py,sha256=
|
|
13
|
-
netbox_dns/api/serializers_/dnssec_policy.py,sha256=
|
|
14
|
-
netbox_dns/api/serializers_/nameserver.py,sha256=
|
|
12
|
+
netbox_dns/api/serializers_/dnssec_key_template.py,sha256=gZNv8hdpTc_X0rhfuKfUcsLzV_l6CV_tTzElw6tyEGw,1654
|
|
13
|
+
netbox_dns/api/serializers_/dnssec_policy.py,sha256=DOGtQDiLLMmH2TvmVp9w-enZtrXygiSwfiREWk2IjH0,4322
|
|
14
|
+
netbox_dns/api/serializers_/nameserver.py,sha256=0ItKFCmDVqMbw9i5LandYMZTpJAGClu6lejaWvpLbBY,1288
|
|
15
15
|
netbox_dns/api/serializers_/prefix.py,sha256=kZ1DjDly6VFZamXSxGa57YC6MfZZcI5S7jmGBkVB2_I,551
|
|
16
|
-
netbox_dns/api/serializers_/record.py,sha256=
|
|
17
|
-
netbox_dns/api/serializers_/record_template.py,sha256=
|
|
18
|
-
netbox_dns/api/serializers_/registrar.py,sha256=
|
|
19
|
-
netbox_dns/api/serializers_/registration_contact.py,sha256=
|
|
20
|
-
netbox_dns/api/serializers_/view.py,sha256=
|
|
21
|
-
netbox_dns/api/serializers_/zone.py,sha256=
|
|
22
|
-
netbox_dns/api/serializers_/zone_template.py,sha256=
|
|
16
|
+
netbox_dns/api/serializers_/record.py,sha256=wHs86KwLCgeC_7ORw2b0gvlpAustwfBSfbPva1yPb-k,2570
|
|
17
|
+
netbox_dns/api/serializers_/record_template.py,sha256=imRRPkCXQMCpXUUk58kB2KwXC6SyAo4HN18pSZyLpHI,1682
|
|
18
|
+
netbox_dns/api/serializers_/registrar.py,sha256=ul_6SJVqxvTE2ysXBy52U59oTzwmaD781URH1l1OW9o,927
|
|
19
|
+
netbox_dns/api/serializers_/registration_contact.py,sha256=P_aoG_1rriHn4KkwTx5Dhw37Rn3VY2whg0vAIm55cjk,1108
|
|
20
|
+
netbox_dns/api/serializers_/view.py,sha256=ipuL4FVTl5MYt5_ThayBAOBMGu61ZUGnCb8Co1tNQGU,1894
|
|
21
|
+
netbox_dns/api/serializers_/zone.py,sha256=JfjhxmfbpJRNzFqnjueFvpJS5ASnbomm1jzJrjYPpqo,6407
|
|
22
|
+
netbox_dns/api/serializers_/zone_template.py,sha256=AYlkOiAuPf0hWcj-FU3j_byY3MO3kkZ7f5xuIGA5m-Y,4407
|
|
23
23
|
netbox_dns/choices/__init__.py,sha256=K3JfawICeoUny8O_Dqexr7DOxwyg3QqijZ4DO6j5yP8,106
|
|
24
|
-
netbox_dns/choices/dnssec_key_template.py,sha256=
|
|
24
|
+
netbox_dns/choices/dnssec_key_template.py,sha256=Xl3y_ScKJmnsqMH1sv6ezLcZI1rruHDGJP5e2IRSC4s,1511
|
|
25
25
|
netbox_dns/choices/dnssec_policy.py,sha256=1EH1VoLbewiTZmnACpxq6GN0UJDVA1L6cxs-Jf6OagI,839
|
|
26
|
-
netbox_dns/choices/record.py,sha256=
|
|
26
|
+
netbox_dns/choices/record.py,sha256=Ynw1aDASQEovzIPJbRFRM6F-M9u39iHMe0aj9DZsrfk,2650
|
|
27
27
|
netbox_dns/choices/utilities.py,sha256=osvDMxOZnvxx9Jc7zKjkMGNFGxtnhM49q71Q-h61lLA,123
|
|
28
28
|
netbox_dns/choices/zone.py,sha256=KvyNL_TR_2FXCoH6usrXTRJYRzZ9W1PiDvunutAUYhY,4294
|
|
29
29
|
netbox_dns/fields/__init__.py,sha256=yUVrNQ7BvoeVRGoiRFmrZxXsp1LIwHLRLl0_5mBIyzk,143
|
|
@@ -34,32 +34,32 @@ netbox_dns/fields/network.py,sha256=a5nTzjscRufxgMjVsf5juszSYuTujU50pQ9P7q4qMVs,
|
|
|
34
34
|
netbox_dns/fields/rfc2317.py,sha256=y72PZKlXZ8_6P4eeWZ8IF3gqOMjPxW48gk3AB81XboE,2642
|
|
35
35
|
netbox_dns/fields/timeperiod.py,sha256=InK3FVc8gHNQjx101a7HsGfrHxvoG1y6drYwuRjRSIE,941
|
|
36
36
|
netbox_dns/filtersets/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
|
|
37
|
-
netbox_dns/filtersets/dnssec_key_template.py,sha256=
|
|
38
|
-
netbox_dns/filtersets/dnssec_policy.py,sha256=
|
|
39
|
-
netbox_dns/filtersets/nameserver.py,sha256=
|
|
40
|
-
netbox_dns/filtersets/record.py,sha256=
|
|
41
|
-
netbox_dns/filtersets/record_template.py,sha256=
|
|
42
|
-
netbox_dns/filtersets/registrar.py,sha256=
|
|
43
|
-
netbox_dns/filtersets/registration_contact.py,sha256=
|
|
44
|
-
netbox_dns/filtersets/view.py,sha256=
|
|
45
|
-
netbox_dns/filtersets/zone.py,sha256=
|
|
46
|
-
netbox_dns/filtersets/zone_template.py,sha256=
|
|
37
|
+
netbox_dns/filtersets/dnssec_key_template.py,sha256=dFaNGYdGXghe_uDMedOPxrMGxhDu4gHXwSQ6VLSY7gk,1625
|
|
38
|
+
netbox_dns/filtersets/dnssec_policy.py,sha256=FRmHulpWmglf89J6bzQYUVFFxvt0mvp29kp7LHA5080,3071
|
|
39
|
+
netbox_dns/filtersets/nameserver.py,sha256=4hkFsohhvBptFwY9_LJJN8_8KkMhCPsFujzIlDhlnqw,1251
|
|
40
|
+
netbox_dns/filtersets/record.py,sha256=7asGcd2zePhnIDAvuVE-aKAo_NNM0Pm06epXzEql4y4,3916
|
|
41
|
+
netbox_dns/filtersets/record_template.py,sha256=Pc4P479MqfgdUMvBK39ic2nsV_gg4GT_tbdVcCL9wSI,1605
|
|
42
|
+
netbox_dns/filtersets/registrar.py,sha256=6QrsrWXu19bMa99DzwwXqfNqxpvTG0JwGEpybhOSYps,978
|
|
43
|
+
netbox_dns/filtersets/registration_contact.py,sha256=42j7NkwkbSEfomCDekkIE9ZWNug_qfvmTO_D1e-fFIw,1140
|
|
44
|
+
netbox_dns/filtersets/view.py,sha256=g8Qz363F9sieNtf4zA2L87mR86HFtkpvHTCkql6TxGk,1107
|
|
45
|
+
netbox_dns/filtersets/zone.py,sha256=Uzlgo2dGCQhH_S3tI8gVYHi7tMoNS1YK5agbLRkV7bc,7603
|
|
46
|
+
netbox_dns/filtersets/zone_template.py,sha256=U7lj26nxxSHZ0csRxWbdUTbgopTzTt_sxE5z3skn9mo,4738
|
|
47
47
|
netbox_dns/forms/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
48
|
-
netbox_dns/forms/dnssec_key_template.py,sha256=
|
|
49
|
-
netbox_dns/forms/dnssec_policy.py,sha256=
|
|
50
|
-
netbox_dns/forms/nameserver.py,sha256=
|
|
51
|
-
netbox_dns/forms/record.py,sha256=
|
|
52
|
-
netbox_dns/forms/record_template.py,sha256=
|
|
53
|
-
netbox_dns/forms/registrar.py,sha256=
|
|
54
|
-
netbox_dns/forms/registration_contact.py,sha256=
|
|
55
|
-
netbox_dns/forms/view.py,sha256=
|
|
56
|
-
netbox_dns/forms/zone.py,sha256=
|
|
57
|
-
netbox_dns/forms/zone_template.py,sha256=
|
|
48
|
+
netbox_dns/forms/dnssec_key_template.py,sha256=7zQCbpLaMiVcZ__zMswVJ2MNqlStFm22YWr1wZbi93I,5793
|
|
49
|
+
netbox_dns/forms/dnssec_policy.py,sha256=_KCGgWZB8yrC2wNFefqaM32cYMFzHsCAdqq83AF9jiw,17139
|
|
50
|
+
netbox_dns/forms/nameserver.py,sha256=_iQJXbdFrrtMnRT8yZHnOp1Nj1iwxjHIAH_hrvCkrKU,3848
|
|
51
|
+
netbox_dns/forms/record.py,sha256=wRl3uRY13VK8cF79u69-DDJmHJnZjwuLR60PsUGJ3p0,8493
|
|
52
|
+
netbox_dns/forms/record_template.py,sha256=5yuY2ppV2diEOdm_IN3QSLLEdWkOkWZOYRtOh0qPY7A,6796
|
|
53
|
+
netbox_dns/forms/registrar.py,sha256=oLMcXJOpt0F02a2Aga6A45rja7TvI18nTCZb_Dx_8t0,4038
|
|
54
|
+
netbox_dns/forms/registration_contact.py,sha256=GtUmHzPmAFNRt81rTgJbmb5TMoEJ-mpmjltkuyppJwc,6157
|
|
55
|
+
netbox_dns/forms/view.py,sha256=KZ2enzbqAEElt3b5C02kMJwnIDEjdQf_BsgMuMqKP50,10836
|
|
56
|
+
netbox_dns/forms/zone.py,sha256=Z6YypsV9tKdnNPWekLZFZVGoHz8UBO2Hylnium5M26c,29921
|
|
57
|
+
netbox_dns/forms/zone_template.py,sha256=ACx8YJirsrGMMQExVL-aEOaitsUYMyNBL793CoQZrWQ,11716
|
|
58
58
|
netbox_dns/graphql/__init__.py,sha256=0xg_5d1PPFTadBOZo752t5sfZeLFrqs2jM51Rbf8ti4,652
|
|
59
59
|
netbox_dns/graphql/enums.py,sha256=vC-v24AuNbaGoekLTDu1PBVbnR1aYeX6LmvrZkfd2F4,1453
|
|
60
60
|
netbox_dns/graphql/filter_lookups.py,sha256=P6wW2JrtkzUiIx6mJz_DvwYg5Sov68IKAx0zVQfuvYY,355
|
|
61
61
|
netbox_dns/graphql/schema.py,sha256=KlbJmlfQEqZhvb6-cYmq94mrMFcQoCh3MldaUD5eVV4,2904
|
|
62
|
-
netbox_dns/graphql/types.py,sha256=
|
|
62
|
+
netbox_dns/graphql/types.py,sha256=H03lx5YTkxLevGtTHGV5VkdKbTJbgvUYPGqBWl3X8Q4,10182
|
|
63
63
|
netbox_dns/graphql/filters/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
|
|
64
64
|
netbox_dns/graphql/filters/dnssec_key_template.py,sha256=EPZqXaQyZ6UAnUgKy6_NjxbhXDbOI8oM7I62BuwGzR0,2071
|
|
65
65
|
netbox_dns/graphql/filters/dnssec_policy.py,sha256=MImrsCGjNKxqCRB8HGOoNKyqxRuZyhq3su_nT5hdxW4,4651
|
|
@@ -71,9 +71,9 @@ netbox_dns/graphql/filters/registration_contact.py,sha256=Gwwj55846y90xJiVIdBfPD
|
|
|
71
71
|
netbox_dns/graphql/filters/view.py,sha256=dNjGoSj5aKuQmofRDEIhxTs07ZWc8T0uheI6FOPTafQ,929
|
|
72
72
|
netbox_dns/graphql/filters/zone.py,sha256=y5262E4Xqghny8-oUgkt0pod5KtPvZjxAsEowJ5HCdU,5248
|
|
73
73
|
netbox_dns/graphql/filters/zone_template.py,sha256=I7_NFFkI8dsVMgIS5PV-VBkoxGZg2w74G3XXq2Fmdco,3095
|
|
74
|
-
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
74
|
+
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=lwJghKXnXryPoDpC8TpvN2QyzY8vCBfF-Bmf_MWhZYs,29944
|
|
75
75
|
netbox_dns/locale/en/LC_MESSAGES/django.mo,sha256=GDnSZkfHs3yjtTsll7dksEEej4B50F8pc9RGytZNubM,393
|
|
76
|
-
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
76
|
+
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=vL8TcVYyBiDFZ3GVdZe4Kkc42mmtbMF3fot8maY-Q_s,30088
|
|
77
77
|
netbox_dns/management/commands/cleanup_database.py,sha256=1-tAl0Sht80qaNZyfFyUW19Eh9gBUuc7GdbHN4aemGU,5935
|
|
78
78
|
netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=UFRURLBcFeGHUS2lrYFv7UWIebjI72aG1EUQJt0XsXw,2046
|
|
79
79
|
netbox_dns/management/commands/rebuild_dnssync.py,sha256=Tcl385u6kJTX47SvSyRzKm1RIx4nYRYCMcKr3uVnV60,1246
|
|
@@ -98,7 +98,10 @@ netbox_dns/migrations/0015_dnssec.py,sha256=PRS8wjN3_h-M17gOHagM-5pkZuuS5nlaJjlI
|
|
|
98
98
|
netbox_dns/migrations/0016_dnssec_policy_status.py,sha256=MAGTAz95WYkp2PR1Q1EQehEvAYgL1V-ksMa3wlKHgGE,384
|
|
99
99
|
netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py,sha256=m36a08UMLzs2l-IpKY1nXdspcbGouCQWMG15m19s8kE,1162
|
|
100
100
|
netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py,sha256=P_JaNl3NhTPgX7pgA-ZyBJpujrg4HzPcpW6X3FbghMk,595
|
|
101
|
+
netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py,sha256=ENbj3lhsCYHBflUnb2LrfUyTxwvPwcACmL8sUsm7P7A,655
|
|
101
102
|
netbox_dns/migrations/0020_netbox_3_4.py,sha256=UMcHdn8ZAuQjUaM_3rEGpktYrM0TuvhccD7Jt7WQnPs,1271
|
|
103
|
+
netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py,sha256=Fq2Tv-yz4TAY0yzyVs6j79ztIJa1wOm5oSdbPosYdh0,756
|
|
104
|
+
netbox_dns/migrations/0021_alter_record_ptr_record.py,sha256=arSb_EVRX0RjuldPpFTjfyLHPmzQbyzHq9qw1It50c0,656
|
|
102
105
|
netbox_dns/migrations/0021_record_ip_address.py,sha256=EqdhWXmq7aiK4X79xTRUZng3zFncCl-8JoO65HqlJKw,3244
|
|
103
106
|
netbox_dns/migrations/0022_search.py,sha256=KW1ffEZ4-0dppGQ_KD1EN7iw8eQJOnDco-xfJFRZqKQ,172
|
|
104
107
|
netbox_dns/migrations/0023_alter_record_value.py,sha256=4_4v8YZzU8_jadJqIUUjH6SIhNTeALWhclozTqYDmv0,378
|
|
@@ -112,40 +115,40 @@ netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
112
115
|
netbox_dns/mixins/__init__.py,sha256=LxTEfpod_RHCyMtnzDljv0_dwqp2z3Q6tqbXW8LTGD8,35
|
|
113
116
|
netbox_dns/mixins/object_modification.py,sha256=AR64fU5f7g-scNAj9b54eSoS9dpjyOpqrxXVXPcOhY8,1807
|
|
114
117
|
netbox_dns/models/__init__.py,sha256=CuwFENIVUv0FNMDlY18Am-mvN5kBGkPOGavCP0cle7c,273
|
|
115
|
-
netbox_dns/models/dnssec_key_template.py,sha256=
|
|
116
|
-
netbox_dns/models/dnssec_policy.py,sha256=
|
|
117
|
-
netbox_dns/models/nameserver.py,sha256=
|
|
118
|
-
netbox_dns/models/record.py,sha256=
|
|
119
|
-
netbox_dns/models/record_template.py,sha256=
|
|
120
|
-
netbox_dns/models/registrar.py,sha256
|
|
121
|
-
netbox_dns/models/registration_contact.py,sha256=
|
|
122
|
-
netbox_dns/models/view.py,sha256=
|
|
123
|
-
netbox_dns/models/zone.py,sha256=
|
|
124
|
-
netbox_dns/models/zone_template.py,sha256=
|
|
118
|
+
netbox_dns/models/dnssec_key_template.py,sha256=Nv0vjdkOFWMptRYR1sT60bM6D8n_SnCpPZhI7WE5_UQ,2588
|
|
119
|
+
netbox_dns/models/dnssec_policy.py,sha256=REsE8p04bgJVF8yJuWuUITXpsZmvVlXWyQuJ9I6dEMs,5268
|
|
120
|
+
netbox_dns/models/nameserver.py,sha256=oVfyc_iWRzxVE2tIhfRb1Vuj2gZmlfFFzEtXj9ZEr6s,3848
|
|
121
|
+
netbox_dns/models/record.py,sha256=hXQDW28mau6DJ1p6clol3-5-N-OF2L_PYS--CW9QhrE,31275
|
|
122
|
+
netbox_dns/models/record_template.py,sha256=Qr43_YZm1z3Od1cBdDY9wpNlV-UCzvpn2c6_dDzFzN8,5145
|
|
123
|
+
netbox_dns/models/registrar.py,sha256=-ozazecvd-oryEoDlOUvTWhEQKKQp3my6YVTEzWlUuI,1747
|
|
124
|
+
netbox_dns/models/registration_contact.py,sha256=9ehnTjg8KUrUYJKRRu2SaJX-NE5dO4wy90FRPlT2ys4,3620
|
|
125
|
+
netbox_dns/models/view.py,sha256=pwo7i8gtukIRgAC1A4rm58jcEpIbsSW_IUq6vSv-mRo,4618
|
|
126
|
+
netbox_dns/models/zone.py,sha256=olGZyUsSF0orwefxNUtilsxByr3UceDdF8g8QIYCcsE,35642
|
|
127
|
+
netbox_dns/models/zone_template.py,sha256=aUkMtWL7SAcmmBd-w33Z5HN6N9LlSlKmYNwf9MlwNq4,5051
|
|
125
128
|
netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
129
|
netbox_dns/signals/dnssec.py,sha256=o4MOEg6ftxoDWFAhDtajkXzb7Nb6KuUHjtx1zNu7C1w,1040
|
|
127
130
|
netbox_dns/signals/ipam_dnssync.py,sha256=1zhlf4cMcJLlFosX7YzyqVYdFFHV4MFwTz5KCdL8xQc,7730
|
|
128
131
|
netbox_dns/tables/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
129
|
-
netbox_dns/tables/dnssec_key_template.py,sha256=
|
|
130
|
-
netbox_dns/tables/dnssec_policy.py,sha256=
|
|
132
|
+
netbox_dns/tables/dnssec_key_template.py,sha256=5Y4S3Q_RtDdUHI4KxY37Trm7uKQCFUcqkC5mrb8Wi_A,1101
|
|
133
|
+
netbox_dns/tables/dnssec_policy.py,sha256=6GIhoecku3BjYwx7wsOzzkZ0uEVZk5bA63foJ3_g9sw,3332
|
|
131
134
|
netbox_dns/tables/ipam_dnssync.py,sha256=7IK95XlA2ter6gsHqXjXPd6WubpOxrV-O5-UT6R1CKU,330
|
|
132
|
-
netbox_dns/tables/nameserver.py,sha256=
|
|
133
|
-
netbox_dns/tables/record.py,sha256=
|
|
134
|
-
netbox_dns/tables/record_template.py,sha256=
|
|
135
|
-
netbox_dns/tables/registrar.py,sha256=
|
|
136
|
-
netbox_dns/tables/registration_contact.py,sha256=
|
|
137
|
-
netbox_dns/tables/view.py,sha256=
|
|
138
|
-
netbox_dns/tables/zone.py,sha256=
|
|
139
|
-
netbox_dns/tables/zone_template.py,sha256=
|
|
135
|
+
netbox_dns/tables/nameserver.py,sha256=NFFHwwW174x_XskHF9oBllnI22PGV0J78mklrJF_psw,741
|
|
136
|
+
netbox_dns/tables/record.py,sha256=DRe0voUIlqi3Q4CHDp-xgzCqgnSG9ynBhNPO8vnzHQw,4777
|
|
137
|
+
netbox_dns/tables/record_template.py,sha256=ueNSya2Zyrm_zU1Z-ZxwhsJIfxBtYXXoi2pSX-l4Bt8,1977
|
|
138
|
+
netbox_dns/tables/registrar.py,sha256=yI4n0jq7igYwa-zs6YT6YVV2FxkgpfkSAsA_iPzel7A,776
|
|
139
|
+
netbox_dns/tables/registration_contact.py,sha256=PeXp5l2WC5qIwctNdk_WP9LRDq_7bnoUlSS3OS6-SDs,980
|
|
140
|
+
netbox_dns/tables/view.py,sha256=BFM50EgudRvcB32hqi0I5qA5nLBfXLzHbt_2q4_KeJA,1318
|
|
141
|
+
netbox_dns/tables/zone.py,sha256=0lsfI3N9rY11Cxgr-t0PReyNRSnB10JOh-jMVZ4qEBA,2434
|
|
142
|
+
netbox_dns/tables/zone_template.py,sha256=90geASGP6jSqKnvx2t-DaSxNZpp7j67lH1t0UzsKZ1Q,1755
|
|
140
143
|
netbox_dns/templates/netbox_dns/dnsseckeytemplate.html,sha256=dSEyHgUp0k_5JSdR4s4m_7Rom67TqvRIQN0zbQKYfjE,2839
|
|
141
144
|
netbox_dns/templates/netbox_dns/dnssecpolicy.html,sha256=dXHAt8ISsSWv-vK_kaJMcAzUBh4TZ2hAmeaYa47u0PU,7694
|
|
142
145
|
netbox_dns/templates/netbox_dns/nameserver.html,sha256=MawPiuAmjFrbv0zRi-7xkm8vr-dT1tlEno8EcoQ9peU,1714
|
|
143
|
-
netbox_dns/templates/netbox_dns/record.html,sha256=
|
|
146
|
+
netbox_dns/templates/netbox_dns/record.html,sha256=8r-tulEu2_Is4b2RU4pjUKS2eASFdZh8z5GfHsRFz6s,6619
|
|
144
147
|
netbox_dns/templates/netbox_dns/recordtemplate.html,sha256=a29PAUl-KI_I1lxWpVdPp2loJtzgis9DG9erOWrOZM0,3708
|
|
145
148
|
netbox_dns/templates/netbox_dns/registrar.html,sha256=4kJuj3biiDxQrIMQEQUEmF4iGRE4psr6Fh0CBP1evz8,2308
|
|
146
149
|
netbox_dns/templates/netbox_dns/registrationcontact.html,sha256=sljVp_MrPSJRc2vJCPFXq9MiWOw4wjbr1kI_YStBntw,3094
|
|
147
150
|
netbox_dns/templates/netbox_dns/view.html,sha256=1MuzOYNQezRrryNjlklgxErjGTFoVnwqcxf4qceuglw,3320
|
|
148
|
-
netbox_dns/templates/netbox_dns/zone.html,sha256=
|
|
151
|
+
netbox_dns/templates/netbox_dns/zone.html,sha256=3G80d3_oJM8LfLZNBGR2mO_UHadGK4Glr1sk5MO92dA,7997
|
|
149
152
|
netbox_dns/templates/netbox_dns/zonetemplate.html,sha256=a3QD0O_8CW2MUBnU_nXGweGhCwo5pYDVlwJHzovC1RU,4344
|
|
150
153
|
netbox_dns/templates/netbox_dns/record/managed.html,sha256=uwpxQTxyfAXkWqThLT-T2ZssKNUhXTDDMnLWJSVuDNU,119
|
|
151
154
|
netbox_dns/templates/netbox_dns/record/related.html,sha256=R59aPhE4CyIZtTH0ncwDyS6_wAe_Y-oZjuN_j4qk8iA,1158
|
|
@@ -168,23 +171,23 @@ netbox_dns/utilities/conversions.py,sha256=qYnzecmR28l8Je_H0vFvzJ2sikTiEiyxr6drl
|
|
|
168
171
|
netbox_dns/utilities/dns.py,sha256=UBiyQe8thiOTnKOmU9e2iRHHnGF9toVLe4efU623kX4,322
|
|
169
172
|
netbox_dns/utilities/ipam_dnssync.py,sha256=_yuHoah_QN-opsZB51yGCkwjkij7nrmTgKHUZ-bQrBI,9625
|
|
170
173
|
netbox_dns/validators/__init__.py,sha256=X0hPZlC3VZcXMcvXKZ2_5LSoEJdXPNSBr4QtEIFSBJ0,94
|
|
171
|
-
netbox_dns/validators/dns_name.py,sha256=
|
|
174
|
+
netbox_dns/validators/dns_name.py,sha256=1MKnYAmkSTIQGf6zInqkpbIj5SCeCM0YGKmYOqFzUK4,3770
|
|
172
175
|
netbox_dns/validators/dns_value.py,sha256=cADhgTohXAtOLPzaoMKO9DahEUiDanpdiuKonrwFw0E,5278
|
|
173
176
|
netbox_dns/validators/dnssec.py,sha256=FzWLXX3qwS9ZMaLWHaBJStwJ_D96wp7GI4LYoKjoegc,4909
|
|
174
177
|
netbox_dns/validators/rfc2317.py,sha256=uKkwxpakiFFKdYA0qy8WSlEnbFwJD4MDw6gGV4F6skg,706
|
|
175
178
|
netbox_dns/views/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
176
|
-
netbox_dns/views/dnssec_key_template.py,sha256=
|
|
179
|
+
netbox_dns/views/dnssec_key_template.py,sha256=06omBc2RCTltGH078mNLLwz3A_y9gqrtQ08ex1XEwlg,2694
|
|
177
180
|
netbox_dns/views/dnssec_policy.py,sha256=ZvkCVfvI78w8e9c0m8lSWgRwg-jg07PM8Od0HwAVjGI,4427
|
|
178
181
|
netbox_dns/views/nameserver.py,sha256=cLB0W1UnnvEmYdoCYH5HmjrFhbEZ1gWxJTKdMS-wuh0,3564
|
|
179
|
-
netbox_dns/views/record.py,sha256=
|
|
180
|
-
netbox_dns/views/record_template.py,sha256=
|
|
182
|
+
netbox_dns/views/record.py,sha256=cPvsc20EUFcVidQ9YGIdsSTLHZKYzZD3JcV9bFv7iak,7123
|
|
183
|
+
netbox_dns/views/record_template.py,sha256=Cye1rjlpAewRgIv7QGD7o5n-knjzqjEUJzZHVxtGX4s,3041
|
|
181
184
|
netbox_dns/views/registrar.py,sha256=gYpMyz3rRJDmBfEeRfVENvR6fdWXN1y0XbN4JBlXoHc,2625
|
|
182
185
|
netbox_dns/views/registration_contact.py,sha256=5bJWjNBisqCkBo6d2TJyyBJlc95WM7VcSA6wsEB184k,3383
|
|
183
186
|
netbox_dns/views/view.py,sha256=xLXt7sKrda3FpNXsBSJk8L8P2XhZ1sVb5OOXovCsKEU,3089
|
|
184
187
|
netbox_dns/views/zone.py,sha256=tJiQWMmcuWX6OBtsflQwoTNVjp_GzeZ3-jmywRp74ZU,7065
|
|
185
|
-
netbox_dns/views/zone_template.py,sha256=
|
|
186
|
-
netbox_plugin_dns-1.
|
|
187
|
-
netbox_plugin_dns-1.
|
|
188
|
-
netbox_plugin_dns-1.
|
|
189
|
-
netbox_plugin_dns-1.
|
|
190
|
-
netbox_plugin_dns-1.
|
|
188
|
+
netbox_dns/views/zone_template.py,sha256=5P9DT3XBRL-TiM5zFhBTMlMusL4bP2jTu3GHxKz5ojc,2553
|
|
189
|
+
netbox_plugin_dns-1.3.1.dist-info/licenses/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
|
|
190
|
+
netbox_plugin_dns-1.3.1.dist-info/METADATA,sha256=WTrrtHmaWlCmJS3nQRbylLWz445zCDpvXyBzW058wq0,7787
|
|
191
|
+
netbox_plugin_dns-1.3.1.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
192
|
+
netbox_plugin_dns-1.3.1.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
|
|
193
|
+
netbox_plugin_dns-1.3.1.dist-info/RECORD,,
|