Dhcp서버에 지정된 클라이언트만 붙게 하고싶습니다

[code:2hy2l417]allow booting;
allow bootp;
ddns-update-style none;
log-facility local7;
default-lease-time -1;
max-lease-time 7200;

subnet 192.168.3.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.3.180 192.168.3.240;
option broadcast-address 192.168.3.255;
option routers 192.168.3.1;
option domain-name-servers 168.126.63.1;
}

host pc1 {
hardware ethernet 44:6d:57:13:4d:ae;
fixed-address 192.168.3.180;
option host-name "pc1";
if exists user-class and option user-class="iPXE" {
filename="";
option root-path "iscsi:192.168.3.240::::iqn.mhtech.디스크없음:pc1";
}else{
filename "iboot.kpxe";
}
}[/code:2hy2l417]

dhcpd.conf 파일인데요
위에처럼 등록된 클라이언트만 우분투 dhcp 서버로 붙게 하고싶은데요
근거리에있는 클라이언트가 자동으로 아이피를 받아가는것 같습니다.
어떤식으로 구현하면 가능할까요?

[code:3c4ys8rv]host sample01 {
hardware ethernet xx:xx:xx:xx:xx:xx;
fixed-address 192.168.3.50;
}[/code:3c4ys8rv]

호스트 고정으로 위처럼 해두었습니다.