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

In 3.0, you can create a host entry for the printer and override all
the options you don't want to send with null values:

option domain-name-server ns1.foo.org, ns2.foo.org;
option domain-name "foo.org";

subnet 10.0.0.0 netmask 255.255.255.0 {
  option routers 10.0.0.1;
}

host hp-printer {
  hardware ethernet 08:00:2b:4c:39:ad;
  option domain-name-server;
  option domain-name;
}

In 2.0 there's no way to do this, although I am going to add support
for specifying a parameter request list in the next patchlevel so that
you can specify which options to send.   The syntax will be:

host hp-printer {
  hardware ethernet 08:00:2b:4c:39:ad;
  option dhcp-parameter-request-list routers;
}

                               _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.

Archives for this mailing list are available at 
http://www.webnology.com/list-archives/dhcp/dhcp-server

------------------------------------------------------------------------------

Reply via email to