MAC/IP 바인딩이 작동하지 않음

MAC/IP 바인딩이 작동하지 않음

MAC/IP를 할당하기 위해 Centos-7 서버를 사용합니다. 그러나 때때로 사용자는 다른 IP 주소를 얻습니다.

내 거dhcpd.conf

authoritative;

subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.10 192.168.1.254;option domain-name "dhcp.local";option routers 192.168.1.1; option broadcast-address 192.168.1.255; max-lease-time 7200;option domain-name-servers 192.168.1.1;}

include "/etc/dhcp/dhclient.d/dhcp_clients.conf";

allow booting;
allow bootp;
option option-128 code 128 = string;
option option-129 code 129 = text;
next-server 192.168.10.1;
filename "pxelinux.0";

내가 /etc/dhcp/dhclient.d/dhcp_clients.conf가지고 있는

host User.userlaptop {hardware ethernet 00:11:22:33:44:55;fixed-address 192.168.1.34;}

여기서 무슨 일이 일어나고 있는 걸까요? 왜 잘못된 행동을 하는 걸까요?

미리 감사드립니다

관련 정보