{% extends "base.html" %} {% block title %}总览 · DHCP 管理{% endblock %} {% block content %}
{{ subnets|length }}
子网数
{{ hosts|length }}
静态绑定
{{ lease_total }}
活跃租约
{% if svc.active %}● 运行{% else %}○ 停止{% endif %}
dhcpd 状态

接口绑定

{% if svc.interfaces %}

当前监听: {{ svc.interfaces|join(', ') }}

{% else %}

⚠ 当前未配置监听接口(dhcpd 将不会响应任何请求)

{% endif %} 前往配置

地址池使用情况

{% if pool_stats %} {% for p in pool_stats %} {% endfor %}
子网地址池范围总数已用静态可用利用率
{{ p.subnet }} {{ p.range }} {{ p.total }} {{ p.used }} {{ p.static }} {{ p.available }}
{{ p.util_pct }}%
{% else %}

尚未配置任何子网。 新增子网

{% endif %}

最近活跃租约

{% if leases %} {% for l in leases %} {% endfor %}
IPMAC主机名剩余
{{ l.ip }} {{ l.mac or '—' }} {{ l.client_hostname or '—' }} {{ l.remaining_seconds()|format_duration }}

查看全部租约 →

{% else %}

暂无活跃租约

{% endif %}
{% endblock %}