Now I'm getting somewhere, I think:
linux:~ # ifconfig
eth0 Link encap:Ethernet HWaddr 00:07:95:A7:38:79
inet6 addr: fe80::207:95ff:fea7:3879/10 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:120 (120.0 b) TX bytes:288 (288.0 b)
Interrupt:10 Base address:0xc400
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:150 errors:0 dropped:0 overruns:0 frame:0
TX packets:150 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:9780 (9.5 Kb) TX bytes:9780 (9.5 Kb)
Next step is to fire up dhcpd, but that spits out an error message telling me that it can't find
dhcpd.conf. So I typed out the example in the helpfile (and manual) and saved it in the /etc directory, as told:
default-lease-time 600;
max-lease-time 7200;
option domain-name "kosmos.all";
option domain-name-servers 192.168.1.1, 192.168.1.2;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
option subnet-mask 255.255.255.0;
subnet 192.168.1.0 netmask 255.255.255.0
{
range 192.168.1.10 192.168.1.20;
range 192.168.1.100 192.168.1.200;
}
start dhcpd again, and get this:
linux:~ # dhcpd start
Internet Software Consortium DHCP Server V3.0.1rc6
Copyright 1995-2001 Internet Software Consortium.
All rights reserved.
For info, please visit
http://www.isc.org/products/DHCP
** You must add a ddns-update-style statement to /etc/dhcpd.conf.
To get the same behaviour as in 3.0b2pl11 and previous
versions, add a line that says "ddns-update-style ad-hoc;"
Please read the dhcpd.conf manual page for more information. **
Open dhcpd.conf, add that line, save, start dhcpd again, and get this:
linux:~ # dhcpd start
Internet Software Consortium DHCP Server V3.0.1rc6
Copyright 1995-2001 Internet Software Consortium.
All rights reserved.
For info, please visit
http://www.isc.org/products/DHCP
can't parse standard ddns updater!
now what? my guess is to change that last line from ad-hoc to something else, but what? or is it something completely different?
Thanks!
Nate