Dazed_75 wrote:
> Eric,
> 
> /etc/dhcp3/dhcpd.conf contains (after stripping out all the comments):
> 
> ddns-update-style none;
> 
> # option definitions common to all supported networks...
> option domain-name "example.org <http://example.org>";
> option domain-name-servers ns1.example.org <http://ns1.example.org>, 
> ns2.example.org <http://ns2.example.org>;
> option domain-name "localdomain";
> option domain-name-servers 192.168.2.1;
> 
> default-lease-time 600;
> max-lease-time 7200;
> 
> allow booting;
> allow bootp;
> subnet 192.168.2.0 netmask 255.255.255.0 {
>         get-lease-hostnames on;
>         use-host-decl-names  on;
>         range 192.168.2.50 192.168.2.99;
>         option routers 192.168.2.1;
>         option subnet-mask 255.255.255.0;
>         option broadcast-address 192.168.2.255;
>         filename "pxelinux.0";
>         next-server 192.168.2.10;
> }
> host shuttle {
>         hardware ethernet 00:30:1b:ba:89:31;
>         fixed-address 192.168.2.20;
>         option routers 192.168.2.1;
>         option subnet-mask 255.255.255.0;
>         option broadcast-address 192.168.2.255;
>         option host-name "shuttle";
>         filename "pxelinux.0";
>         option root-path "/home/shuttle";
>         next-server 192.168.2.10;
> }
> host nfsroot {
>         hardware ethernet 08:00:27:bb:74:dd;
>         fixed-address 192.168.2.30;
>         option routers 192.168.2.1;
>         option subnet-mask 255.255.255.0;
>         option broadcast-address 192.168.2.255;
>         option host-name "nfsroot";
>         filename "pxelinux.0";
>         option root-path "/home/nfsroot";
>         next-server 192.168.2.10;
> }
> 
> Larry a.k.a. Dazed_75
> ======================================================

Corresponding to
         option routers 192.168.2.1;
I believe that your ethernet interface would need to have this address 
statically assigned.

Your observation about needing the interface up before starting dhcpd is 
a good one. Sorry I'm no help with ubuntu/debian servers. I think I'd 
install ubuntu server on a test host and see how things are configured 
there. No NM to muck things up. ;)
-- 
-Eric 'shubes'

_______________________________________________
PLUG-applications mailing list
[email protected]
http://lists.plug.phoenix.az.us/cgi-bin/mailman/listinfo/plug-applications

Reminder: All replies will go back to this mailing list. If you wish to send a 
reply to a specific person, please use the reply function and change the 
&quot;To:&quot; address to that person before sending.

Reply via email to