[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [afnog]ISC-DHCP config



On Thu, Sep 11, 2003 at 10:43:42AM +0000, Antonio Godinho wrote:
> Does anyone know what has to be configured into the dhcp.conf 
> file of ISC-DHCP in FreeBSD in order to assign addresses to 
> DHCP clients depending on their MAC-addresses?

Try something like this, taken from my home router config:

        subnet x.x.x.64 netmask 255.255.255.240 {
                option subnet-mask 255.255.255.240;
                option broadcast-address x.x.x.79;
                option routers x.x.x.65;
                use-host-decl-names on;
                host gumby {
                        hardware ethernet 00:03:2f:xx:xx:xx;
                        fixed-address x.x.x.67;
                }
		# more 'host' sections go here
        }

Regards,

Brian.
__________________________________________________
This is the Africa Network Operators' Group(AfNOG) 
technical discussion list.
The AfNOG website is: <http://www.afnog.org>