Hi guys,
I would like to have a NOT option in DHCP server. So for instance I can do this :
# Adding 'deny members of "DRBL-Client";' and the following
class "DRBL-Client" {
match if
(substring(option vendor-class-identifier, 0, 9) = "PXEClient") or
(substring(option vendor-class-identifier, 0, 9) = "Etherboot") or
(substring(option vendor-class-identifier, 0, 10) = "DRBLClient");
}
What this does is it checks for option vendor-class-identifier, then if the boot matches one option, it will *NOT* lease a DHCP address. Instead, the PXE DHCP server will lease the address.
Is this possible ? If not, can I request this as a future enhancement ?
Cheers.