mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
29 lines
875 B
Python
29 lines
875 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Forms for BIND module.
|
|
"""
|
|
|
|
from django import forms
|
|
from django.core.validators import validate_ipv46_address
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from plinth.forms import AppForm
|
|
|
|
|
|
def validate_ips(ips):
|
|
"""Validate that ips is a list of IP addresses, separated by space."""
|
|
for ip_addr in ips.split():
|
|
validate_ipv46_address(ip_addr)
|
|
|
|
|
|
class BindForm(AppForm):
|
|
"""BIND configuration form"""
|
|
forwarders = forms.CharField(
|
|
label=_('Forwarders'), required=False, validators=[validate_ips],
|
|
help_text=_('A list DNS servers, separated by space, to which '
|
|
'requests will be forwarded'))
|
|
|
|
enable_dnssec = forms.BooleanField(
|
|
label=_('Enable DNSSEC'), required=False,
|
|
help_text=_('Enable Domain Name System Security Extensions'))
|