{% load info %}
×

About the search

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:

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

About the search

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

{% for netbox in netboxes %} {% for interface in netbox.interfaces %} {% if interface.to_netbox and not interface.trunk %} {# If the interface is connected to other equipment, it should be considered active #} {% else %} {# If not connected to other equipment, use information from the cam table to indicate last used #} {% endif %} {% 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 %} {{ interface.to_netbox }} {% if not interface.trunk %} {{ interface.last_cam|days_since }} {% endif %}
{% endfor %}