DHCP 租约文件是否有 200 多个相同租约的实例?

DHCP 租约文件是否有 200 多个相同租约的实例?

我不确定这里发生了什么。我有一台 CentOS 7 DHCP 服务器,租约文件以线性但稳定的速率增长 - 它一遍又一遍地向同一个 MAC 重新发出相同的租约,并将新的节添加到文件中。

该服务器为大约 300 个系统的网络提供 DHCP 服务。

DHCP 配置文件如下所示:

ddns-update-style interim;

allow booting;
allow bootp;

ignore client-updates;
set vendorclass = option vendor-class-identifier;
one-lease-per-client true;
option pxe-system-type code 93 = unsigned integer 16;
DHCPDARGS="enp130s0f0";

subnet 10.101.24.0 netmask 255.255.252.0 {
     option routers             10.101.24.1;
     option domain-name-servers 10.101.6.62;
     option domain-search "foo.com";
     option subnet-mask         255.255.252.0;
     range dynamic-bootp        10.101.24.31 10.101.27.254;
     default-lease-time         172800;
     max-lease-time             172800;
     next-server                10.101.24.21;
     class "pxeclients" {
          match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
          if option pxe-system-type = 00:02 {
                  filename "ia64/elilo.efi";
          } else if option pxe-system-type = 00:06 {
                  filename "grub/grub-x86.efi";
          } else if option pxe-system-type = 00:07 {
                  filename "grub/grub-x86_64.efi";
          } else {
                  filename "pxelinux.0";
          }
     }
}

dhcpd 一遍又一遍地回复来自同一个 MAC 的租约请求并一遍又一遍地将其节添加到 dhcpd.leases 文件的末尾,这是正常行为吗?

我是否遗漏了某些设置?

答案1

引用 man 5 dhcpd.leases:

Internet 系统联盟 DHCP 服务器会保留一个已分配租约的持久数据库。此数据库是一个自由格式的 ASCII 文件,其中包含一系列租约声明。每次获取、续订或释放租约时,其新值都会记录在租约文件的末尾。因此,如果给定租约出现多个声明,则文件中的最后一个声明为当前声明。

正常现象,不用担心。

相关内容