{% extends "base.html" %} {% block content %}

System Information

Hostname {{ sys_info.hostname }}
Operating System {{ sys_info.os }}
Uptime {{ sys_info.uptime }}
Current Time {{ sys_info.current_time }}

PF Information

Total Rate
Status {% if pf_info.enabled %}Enabled{% else %}Disabled{% endif %} for {{ pf_info.since }}
State Table Entries {{ pf_info.states }}
State Table Searches {{ pf_info.searches.total }} {{ pf_info.searches.rate }}/s
State Table Inserts {{ pf_info.inserts.total }} {{ pf_info.inserts.rate }}/s
State Table Removals {{ pf_info.removals.total }} {{ pf_info.removals.rate }}/s
Matches {{ pf_info.match.total }} {{ pf_info.match.rate }}/s

Interface Information

{% for iface in if_info %} {% endfor %}
{{ iface.name }} {% if iface.status %}{% else %}{% endif %} {{ iface.media }} {% for ip in iface.ipv4 %}{{ ip }}
{% endfor %} {% for ip in iface.ipv6 %}{{ ip }}
{% endfor %}

Interface Statistics

{{ if_stats|safe }}
{% endblock %}