{% extends 'ipv6ula/base.html' %} {% load crispy_forms_tags %} {% block content %}

{% if method == 'submit' %}

Submitting existing prefix

You submit an existing prefix. Please follow the RFC4193 rules for generation (basically: use a random network, do not pick "cool numbers" as they will clash with somebody else in the future).

{% elif method == 'generate' %}

Generate new prefix

A new random prefix will be generated for you.

{% endif %}

All ULA prefixes are /48 networks. Simply add the first IP address (without any netmask, for instance fd23:2323:2323::). You can choose the name of your liking and an organization name.

ULA prefixes are always subnets of the fd00::/8 network.

{% csrf_token %} {{ form|crispy }}
{% endblock %}