{% extends "base.html" %} {% block title %}DNS Control Panel - Domain Management{% endblock %} {% block dashboard_stat %} {% if status %} {% if status.get('status') == 'ok' %}
Success! {{ status.get('msg') }}
{% elif status.get('status') == 'error' %}
{% if status.get('msg') != None %} Error! {{ status.get('msg') }} {% else %} Error! An undefined error occurred. {% endif %}
{% endif %} {% endif %}

Manage domain {{ domain.name }}

{% endblock %} {% block content %}

Domain Access Control

Users on the right have access to manage the records in the {{ domain.name }} domain.

Click on users to move from between columns.

Users in red are Administrators and already have access to ALL domains.

Auto PTR creation

 Allow automatic reverse pointer creation on record updates?{% if auto_ptr_setting %}
Auto-ptr is enabled globally on the PDA system!{% endif %}

DynDNS 2 Settings

 Allow on-demand creation of records via DynDNS updates?

Change SOA-EDIT-API

The SOA-EDIT-API setting defines when and how the SOA serial number will be updated after a change is made to the domain.

  • (OFF) - Not set
  • INCEPTION-INCREMENT - Uses YYYYMMDDSS format for SOA serial numbers. If the SOA serial from the backend is within two days after inception, it gets incremented by two (the backend should keep SS below 98).
  • INCEPTION - Sets the SOA serial to the last inception time in YYYYMMDD01 format. Uses localtime to find the day for inception time. Not recomended.
  • INCREMENT-WEEK - Sets the SOA serial to the number of weeks since the epoch, which is the last inception time in weeks. Not recomended.
  • INCREMENT-WEEKS - Increments the serial with the number of weeks since the UNIX epoch. This should work in every setup; but the result won't look like YYYYMMDDSS anymore.
  • EPOCH - Sets the SOA serial to the number of seconds since the epoch.
  • INCEPTION-EPOCH - Sets the new SOA serial number to the maximum of the old SOA serial number, and age in seconds of the last inception.
New SOA-EDIT-API Setting:

Domain Deletion

This function is used to remove a domain from PowerDNS-Admin AND PowerDNS. All records and user privileges which associated to this domain will also be removed. This change cannot be reverted.

{% endblock %} {% block extrascripts %} {% endblock %} {% block modals %} {% endblock %}