我有一个DHCPD / PXE服务器似乎为同一个mac地址分配了2个IP地址。
我需要计算机获取指定的ip地址才能顺序
我尝试了#34;允许重复;"并且"否认重复;" 我可以看到唯一的区别是这个" uid"线。
除了这个烦恼 - 我的dhcpd / pxe服务器工作正常。
来自我的租约文件的片段:
lease 10.11.46.227 {
starts 4 2014/10/02 15:01:06;
ends 0 2150/11/08 21:29:20;
cltt 4 2014/10/02 15:01:06;
binding state active;
next binding state free;
hardware ethernet 00:1e:67:b9:32:f6;
uid "\000\215\013\011b\345\227\021\343\270\270\000\036g\2712\366";
}
lease 10.11.46.228 {
starts 4 2014/10/02 15:09:13;
ends 0 2150/11/08 21:37:27;
cltt 4 2014/10/02 15:09:13;
binding state active;
next binding state free;
hardware ethernet 00:1e:67:b9:32:f6;
}
这是我的dhcpd.conf
allow booting;
allow bootp;
authoritive;
deny duplicates;
class "pxeclients" {
match if substring(option vendor-class-identifier,0,9) = "PXEClient";
next-server 10.11.0.1;
filename "pxelinux.0";
}
subnet 10.11.0.0 netmask 255.255.0.0 {
range 10.11.1.1 10.11.25.200;
default-lease-time 4294967294;
max-lease-time 4294967294;
min-lease-time 4294967294;
}
# Pxe Server so it doesnt get changed.
host masterPXE {
hardware ethernet 00:1E:67:98:D5:EB;
fixed-address 10.11.0.1;
}
答案 0 :(得分:0)
我已经在Linux系统中看到过这种情况,这些系统在内核选项中启用了ip = dhcp,然后是在用户空间中运行的重新请求IP地址的辅助dhcp客户端。
最简单的解决方案是将max-lease-time设置为小于5分钟的时间,或者从user-land客户端删除dhcp主机ID,以便客户端看起来像是在询问另一个DHCP地址时它已经有一个。