I am experiencing an issue where Android Devices are consuming the DHCP Pool Range configured for my PXE boot. Is there a way to define Android Devices so they do not use the DHCP Range I have set for PXE. Here is the entry I have for my PXE DHCP Pool:
class "pxe" {
match if ( substring ( option vendor-class-identifier, 0,9)="PXEClient") or
( substring ( option vendor-class-identifier, 0,5)="udhcp") ;
# default-lease-time 60;
# max-lease-time 60;
default-lease-time 240;
max-lease-time 240;
# default-lease-time 7200;
# max-lease-time 86400;
}
# PXE bootp pool
pool {
allow members of "pxe";
allow members of "sysrcd";
range 192.168.0.240 192.168.0.249;
next-server 192.168.1.29;
filename "pxelinux.0";
# Close PXE pool
}