Is it possible in dhcpd.conf to ignore requests from a set of MAC addresses?

Something like this:

host vminstances {
    hardware ethernet d0:0d:*;
    ignore booting;
}
link|improve this question

feedback

migrated from superuser.com Dec 7 '09 at 12:03

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 4 down vote accepted

You can use something like:

class "ignored" {
        match if substring(hardware,1,4) = 00:02;
}


pool {
        deny members of "ignored";
        range 192.168.172.100 192.168.172.149;
        }
link|improve this answer
Do you need the 'range' set in the pool? I would have thought this was irrelevant. – parsley72 May 9 at 23:49
The range directive is just one way of defining a pool. – Roy May 27 at 20:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.