{% extends 'info/vlan/base.html' %} {% block base_header_additional_head %} {{ block.super }} {% endblock %} {% block footer_scripts %} {% endblock %} {% block vlandetails %}

Vlan details

{% comment %} Print vlan information {% endcomment %}
Vlan {{ vlan }}
Vlan {{ vlan.vlan|default_if_none:"N/A" }}
Type {{ vlan.net_type|default_if_none:"" }}
Organization {{ vlan.organization|default_if_none:"" }}
Net Ident {{ vlan.net_ident|default_if_none:"" }}
Usage {{ vlan.usage|default_if_none:"" }}
Description {{ vlan.description|default_if_none:"" }}
{% comment %} Print gwportprefixes {% endcomment %} {% for gwportprefix in gwportprefixes %} {% endfor %}
Router ports
Netbox Address Interface
{{ gwportprefix.interface.netbox.sysname }} {{ gwportprefix.gw_ip }} {{ gwportprefix.interface.ifname }}
{% comment %} Print prefixes {% endcomment %} {% for prefix in prefixes %} {% endfor %}
Prefixes
Net address
{{ prefix.net_address }}
{% comment %} Graph with stacked ip-address count from all ipv4 and ipv6 prefixes {% endcomment %}

Vlan graphs

{% comment %} Graph for each prefix containing ip-addresses, mac-addresses and size of range {% endcomment %}

Prefix graphs

{% endblock %}