{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}
VRF administration —> edit VRF
{% include 'vrf_form.html' %}

Statistics for VRF: {{ c.edit_vrf.name }}

IPv4
{% if c.edit_vrf.num_prefixes_v4 == 0 %} No IPv4 prefixes in VRF. {% else %} VRF {{c.edit_vrf.name}} contains {{c.edit_vrf.num_prefixes_v4}} IPv4 prefixes containing a total of {{c.edit_vrf.total_addresses_v4}} addresses. {{c.edit_vrf.used_addresses_v4}} of those are in use while {{c.edit_vrf.free_addresses_v4}} are free, representing a usage of {{ (c.edit_vrf.used_addresses_v4 / c.edit_vrf.total_addresses_v4 * 100) | round(1) }}%. {% endif %}
IPv6
{% if c.edit_vrf.num_prefixes_v6 == 0 %} No IPv6 prefixes in VRF. {% else %} VRF {{c.edit_vrf.name}} contains {{c.edit_vrf.num_prefixes_v6}} IPv6 prefixes containing a total of {{c.edit_vrf.total_addresses_v6}} addresses. {{c.edit_vrf.used_addresses_v6}} of those are in use while {{c.edit_vrf.free_addresses_v6}} are free, representing a usage of {{ (c.edit_vrf.used_addresses_v6 / c.edit_vrf.total_addresses_v6 * 100) | round(1) }}%. {% endif %}
{% endblock %}