{% extends "base.html" %} {% block content %}
| Hostname | {{ sys_info.hostname }} |
|---|---|
| Operating System | {{ sys_info.os }} |
| Uptime | {{ sys_info.uptime }} |
| Current Time | {{ sys_info.current_time }} |
| 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 |
| {{ iface.name }} | {% if iface.status %}{% else %}{% endif %} | {{ iface.media }} |
{% for ip in iface.ipv4 %}{{ ip }} {% endfor %} {% for ip in iface.ipv6|sort(attribute=1) %}{% if ip[1] %}{{ ip[0] }}{% else %}{{ ip[0] }}{% endif%} {% endfor %} |
|---|