{% extends 'peering/autonomoussystem/_base.html' %} {% load helpers %} {% block subcontent %}
AS Details
PeeringDB {% if perms.peering.change_autonomoussystem and peeringdb_last_synchronization %} {% endif %}
{% if instance.general_policy %} {% endif %}
ASN {{ instance.asn }}
Name {{ instance.name }}
IRR AS-SET {{ instance.irr_as_set }}
IPv6 Max Prefixes {{ instance.ipv6_max_prefixes|render_none }}
IPv4 Max Prefixes {{ instance.ipv4_max_prefixes|render_none }}
General Policy {{ instance.general_policy }}
Affiliated {{ instance.affiliated|boolean_as_icon }}
{% include 'includes/contacts.html' %} {% if shared_internet_exchanges %}
Shared Internet Exchanges
    {% for ix, missing_sessions in shared_internet_exchanges.items %}
  • {{ ix|as_link }} {% if missing_sessions %} {% endif %}
  • {% endfor %}
{% endif %}
Routing Policies
{% if instance.export_routing_policies.all.count > 0 or instance.import_routing_policies.all.count > 0 %}
    {% for routing_policy in instance.export_routing_policies.all %}
  • {{ routing_policy|as_link }} {{ routing_policy.get_type_html }}
  • {% endfor %} {% for routing_policy in instance.import_routing_policies.all %}
  • {{ routing_policy|as_link }} {{ routing_policy.get_type_html }}
  • {% endfor %}
{% else %}
None
{% endif %}
BGP Communities
{% if instance.communities.all.count > 0 %}
    {% for community in instance.communities.all %}
  • {{ community|as_link }}{% if community.type %} {{ community.get_type_html }}{% endif %}
  • {% endfor %}
{% else %}
None
{% endif %}
Comments
{% if instance.comments %} {{ instance.comments|markdown }} {% else %} None {% endif %}
{% include 'includes/tags_card.html' with tags=instance.tags.all url='peering:autonomoussystem_list' %}
{% endblock %} {% block javascript %} {% endblock %}