up vote 1 down vote favorite
1
share [g+] share [fb]

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 3 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
feedback

Your Answer

 
or
required, but never shown

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