{% extends '_base.html' %} {% load render_table from django_tables2 %} {% load form_helpers %} {% block title %}Zone Import{% endblock %} {% block content %}

Zone Import

{% csrf_token %} {% render_form form %}
Cancel

CSV Format

Field Description Example
Name Name of zone foo.net
TTL Time to live, in seconds 10800
SOA Name SOA name field, @ for origin @
SOA Contact SOA contact field ns.foo.net. noc.foo.net.
SOA Serial Serial code of zone (string) 2016070401
SOA Refresh SOA refresh time field, in seconds 3600
SOA Retry SOA retry time field, in seconds 3600
SOA Expire SOA expire time field, in seconds 604800
SOA Minimum SOA minimum time field, in seconds 1800

Example

foo.net,10800,@,ns.foo.net. noc.foo.net.,2016070401,3600,3600,604800,1800
{% endblock %}