{% load info %}
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
Name | Portname | Status | Vlan | Last active | |
---|---|---|---|---|---|
{{ interface.ifname }} | {{ interface.ifalias }} |
![]() |
{% if interface.trunk %} Trunk {% else %} {% if interface.vlan %} {{ interface.vlan }} {% endif %} {% endif %} | {% if interface.to_netbox and not interface.trunk %} {# If the interface is connected to other equipment, it should be considered active #}{{ interface.to_netbox }} | {% else %} {# If not connected to other equipment, use information from the cam table to indicate last used #}{% if not interface.trunk %} {{ interface.last_cam|days_since }} {% endif %} | {% endif %}