Subject: Re: dhcpd.conf file on dhcp server to dreamcast
To: None <port-dreamcast@netbsd.org>
From: Andy Ruhl <acruhl@gmail.com>
List: port-dreamcast
Date: 12/13/2004 09:33:00
On Sat, 11 Dec 2004 01:16:19 +0000, Rui Paulo <rpaulo@netbsd-pt.org> wrote:
> On 2004.12.10 13:40:10 +0000, Andy Ruhl wrote:
> > Does anyone have a nice dhcpd.conf file for a NetBSD 2.0 server? I'm
> > finding that some of the older stuff I have around isn't working with
> > the latest dhcpd in 2.0.
> 
> /usr/share/examples/dhcp/ :-)
> 
>         -- Rui Paulo <rpaulo@netbsd-pt.org>

Those examples still are not for the faint of heart... I suppose I
should learn dhcp for my resume or something, but ugh... Just to boot
the dreamcast?

Anyway, I did finally fix my file, and uhh, all it had was some
typos... D'oh. Sorry to waste time. It looks mostly like Josh
Tolbert's example:

 
deny unknown-clients;
ddns-update-style none;

subnet 192.168.1.0 netmask 255.255.255.0 {
   range 192.168.1.6 192.168.1.8;
   option routers 192.168.1.254;
   option domain-name-servers 68.2.16.30;
   option domain-name "andy.com";

   host dreamcast {
      hardware ethernet 00:d0:f1:02:89:7f;
      fixed-address 192.168.1.8;
      option host-name "dreamcast";
      next-server 192.168.1.1;
      option root-path "/home/dreamcast/dc";
      }
}