dhcpd
I'm trying to setup dhcpd on one machine and setup my notebook as a dhcp
client. I have this as my /etc/dhcpd.conf and have started dhcpd, but the
notebook won't connect on dhcp. Any ideas?
Thanks,
Jason
#dhcpd.conf
# option definitions common to all supported networks...
option domain-name "kwiqsilver.org";
option domain-name-servers 68.2.16.30;
option subnet-mask 255.255.255.0;
default-lease-time 600;
max-lease-time 7200;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.101 192.168.1.200;
option broadcast-address 192.168.1.255;
}
#dhcpd.conf
Reply to:
- Follow-Ups:
- Re: dhcpd
- From: Stonelx <mike@stonelx.ath.cx>
- Re: dhcpd
- From: Elizabeth Barham <soggytrousers@yahoo.com>