On Saturday 01 September 2001 18:03, Joel Hammer babbled:
> No. Never got an answer. If you could post or send me a copy of a
> dhcp.conf file that serves two subnets I'd really appreciate it.
> This shouldn't be too hard, since the dhcpd server is a double homed
> machine, and I could just see having one demon listen on eth0 and the
> other on eth1, but, I would really like to get more general solution.
> If I weren't so lazy I would have tried that by now.
> Joel

not exactly what you were looking for.. but this is my workig file...

--- begin /etc/dhcpd.conf ---
authoritative;

server-identifier 192.168.1.10;

option domain-name "homeip.net";
option domain-name-servers 192.168.1.10;
option routers 192.168.1.10;
option broadcast-address 192.168.1.255;

max-lease-time 86400;
default-lease-time 43200;
ddns-update-style ad-hoc;

subnet 192.168.1.0 netmask 255.255.255.0 {
        range 192.168.1.100 192.168.1.150;
}

host infinity {
        hardware ethernet 00:a0:cc:3f:86:c8;
        fixed-address 192.168.1.20;
}

host eternity {
        hardware ethernet 00:a0:cc:3f:db:95;
        fixed-address 192.168.1.30;
}

--- end /etc/dhcpd.conf ----
-- 
Douglas J. Hunley ([EMAIL PROTECTED]) - Linux User #174778 
Admin: http://hunley.homeip.net/        Admin: http://linux.nf/ 
Brainbench Linux Administration Certified

~~ Now offering Linux admin services for the home user ~~

"I would rather spend 10 hours reading someone else's source code
than 10 minutes listening to Musak waiting for technical support which isn't."
_______________________________________________
http://linux.nf -- [EMAIL PROTECTED]
Archives, Subscribe, Unsubscribe, Digest, Etc 
->http://linux.nf/mailman/listinfo/linux-users

Reply via email to