{% extends "master.html" %} {% from "_formhelpers.html" import render_field %} {% block title %}New Host netblock{% endblock %} {%block tag %}home{% endblock %} {% block content %}
Add host netblock

Netblocks are used to try to guide and end user to a site-specific mirror. For example, a university might list their netblocks, and the mirrorlist CGI would return the university-local mirror rather than a country-local mirror. Format is one of 18.0.0.0/255.0.0.0, 18.0.0.0/8, an IPv6 prefix/length, or a DNS hostname. Values must be public IP addresses (no RFC1918 private space addresses).

{{ render_field(form.netblock) }} {{ render_field(form.name) }}

{{ form.csrf_token }}

{% endblock %}