{% extends '_base.html' %} {% load helpers %} {% block content %}
{% csrf_token %} {% for field in form.hidden_fields %} {{ field }} {% endfor %}
{% block title %}Add AS{{ network.asn }} as peer on {{ instance }}{% endblock %}
{% if not known_autonomous_system %}

The AS{{ network.asn }} defined by the following details will be recorded as a known AS.

Name {{ network.name }}
IRR AS-SET {{ network.irr_as_set }}
IPv6 Max Prefixes {{ network.info_prefixes6 }}
IPv4 Max Prefixes {{ network.info_prefixes4 }}
{% endif %} {% if netixlan.ipaddr6 or netixlan.ipaddr4 %}

{% if netixlan.ipaddr6 and netixlan.ipaddr4 %}New peering sessions{% else %}A new peering session{% endif %} will be recorded with:

    {% if netixlan.ipaddr6 %}
  • {{ netixlan.ipaddr6 }}
  • {% endif %} {% if netixlan.ipaddr4 %}
  • {{ netixlan.ipaddr4 }}
  • {% endif %}
{% endif %}
Cancel
{% endblock %}