*** From dhcp-server -- To unsubscribe, see the end of this message. ***
from the quill of Tilman Schmidt <[EMAIL PROTECTED]> on scroll
<[EMAIL PROTECTED]>
>
> I am trying to set up dhcpd-3.0-alpha-19990412 on a Linux server
> (kernel version 2.0.36) in such a way that it denies the notorious
> Windows NT RAS requests, but I can't figure out the correct syntax
> for the class declaration.
Rather than deny them we are giving out 1918 addresses, from a huge pool,
our rationale being to at least shut the damn things up.
> --------8<--------8<--------8<--------8<--------8<--------8<--------
> class ras-clients {
> match if substring (option dhcp-client-identifier, 0, 4) = "RAS ";
> deny booting;
> }
> --------8<--------8<--------8<--------8<--------8<--------8<--------
class "ras-clients" {
match if substring(option dhcp-client-identifier, 1, 3)="RAS";
}
and then later on within a subnet declaration I have:
# The pool for "ras-clients" class machines
pool {
allow members of "ras-clients";
range 10.10.0.1 10.10.255.254;
}
But you could use your "deny booting" in the class spec. I gave above too.
--
Brian J. Murrell [EMAIL PROTECTED]
BCTel Advanced Communications 604 454 5279
Vancouver, B.C.
------------------------------------------------------------------------------
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.
Archives for this mailing list are available at
http://www.webnology.com/list-archives/dhcp/dhcp-server
------------------------------------------------------------------------------