{% load info %}

{{ room.id }}: {{ netboxes|length }} netbox{{ netboxes|pluralize:"es" }}

Vlan
Last Seen (days ago)
Download CSV-file
You must have Flash 10 installed to download this file.
{% for netbox in netboxes %} {% for interface in netbox.interfaces %} {% endfor %}
{{ netbox.sysname }} {% if netbox.type.name %} - {{ netbox.type.name }} {% endif %}
Name Portname Status Vlan Last active
{{ interface.ifname }} {{ interface.ifalias }} {% if interface.ifoperstatus == interface.OPER_UP  %}Up{% else %}Down{% endif %} {% if interface.trunk %}Trunk{% else %} {% if interface.vlan %}{{ interface.vlan }}{% endif %} {% endif %} {% if not interface.trunk %} {{ interface.last_cam|days_since }} {% endif %}
{% endfor %}
The searchtext matches the whole row including some of the html. You can for instance search for "down" to see all interfaces with status down.
To improve the filtering you can use the other searchboxes that filters on specific rows.
You can also use predefined keywords in the main searchbox to filter what you want to see. The following keywords are currently available:
  • $vlan - Ex: $vlan:130 - Only show interfaces with vlan 130
  • $days - Ex: $days:5 - Only show rows where last active is 5 days or more
You can combine the filters if you want to. fa1/2 $days:5 $vlan:10 is a valid filter. Also combining keywords and searchboxes work, but keywords have presedence