On 2009-07-29, Joey <(E-Mail Removed)> wrote:
> I am getting flooded with these in /var/log/messages
>
> Jul 28 06:23:37 kickstart dhcpd: DHCPDISCOVER from 00:22:19:02:f0:ad via
> eth0: network 10.60/16: no free leases
> Jul 28 06:23:39 kickstart dhcpd: DHCPDISCOVER from 00:22:19:02:f0:ad via
> eth0: network 10.60/16: no free leases
>
> My DHCP server is only giving out an IP and reservation to one server for
> pxe boot purposes and nothing else.
>
If the server is going to assign IP addresses, you need to tell it what
range of IP addresses it can give out, for example:
subnet 10.60.0.0 netmask 255.255.0.0 {
range 10.60.0.2 10.60.255.254;
}
If the LAN contains some hosts with fixed addresses, they should be
declared.
|