*** From dhcp-server -- To unsubscribe, see the end of this message. ***

With version 3 of the DHCP server, you can pick apart an option and
deny booting based on the results.   For what you're doing, it would
be something like:

        if substring (hardware, 0, 4) = 1:00:00:00 {
            deny booting;
        }

Where 00:00:00 is the OID (I presume that's the first three bytes of
the hardware address) and 1 is the hardware type (I'm assuming
ethernet).   You can write this in their subnet scope if you want to
avoid having to do the check on other subnets, although it should be a
pretty cheap check.

There's no way to do this with version 2.

                               _MelloN_


------------------------------------------------------------------------------
To unsubscribe from this list, please visit http://www.fugue.com/dhcp/lists
If you are without web access, or if you are having trouble with the web page,
please send mail to [EMAIL PROTECTED]   Please try to use the web
page first - it will take a long time for your request to be processed by hand.
------------------------------------------------------------------------------

Reply via email to