RE: Réf. : Re: no DHCPREQUEST after DHCPOFFER

Glenn Satchell Glenn.Satchell at uniq.com.au
Tue May 30 12:39:45 UTC 2006


>X-Original-To: dhcp-users at webster.isc.org
>content-class: urn:content-classes:message
>Subject: RE: Réf. : Re: no DHCPREQUEST after DHCPOFFER
>Date: Mon, 29 May 2006 17:55:04 -0400
>Thread-Topic: 
=?Windows-1252?Q?R=E9f=2E_=3A_Re=3A_no_DHCPREQUEST_after_DHCPOFFER?=
>Thread-Index: AcaBQbXIKNPEwLJJSCyDVxKxo4J40wCJ+6I4
>From: "Howard Wang" <hwang at circadiant.com>
>To: "JVNC04 Yahoo" <jvnc04 at yahoo.fr>, <dhcp-users at isc.org>
>X-archive-position: 767
>X-ecartis-version: Ecartis v1.0.0
>X-original-sender: hwang at circadiant.com
>List-software: Ecartis version 1.0.0
>X-List-ID: <dhcp-users.isc.org>
>X-list: dhcp-users
>
>Hi,
>
>Thanks for the help.
>
>is there a way to specify the wildcard mac address or a range of mac
>address in dhcpd.conf file ?
>
>let's say:
>in dhcpd.conf file:
>
>group {
>      next-server 192.168.200.10;
>      filename "xxx";
>      host yyy { hardware ethernet 00:80:82:52:**:**; }
>}
>
>or sth similar like that to allow a group of mac addresses in the range of
>00:80:82:52:00:00 to 00:80:82:52:FF:FF ?
>
>regards
>
>
>
>>
>it was a problem of linux routing table. Just add perhaps what you need then
> 
>Jacques

You can use a class though:

class "pep" {
  match if substring (hardware, 1, 4) = 00:80:82:52;
  next-server 192.168.200.10;
  filename "xxx";
}

If required you can add a permit or deny to some subnet pools,
otherwise it will be permitted everywhere. Regardless of this, any
options set in the class definition will be set for clients that match
the class.

regards,
-glenn



More information about the dhcp-users mailing list