Hello all.
Had a RedHat 7.3 FW/server running my local network just fine... then
I migrated to Fedora Core 1. Now I can't get my XP Pro box to pickup
a DHCP addr. The request times out on the XP client, never having
sent DHCPREQUEST to the server. I've tried it with a fixed allocation
and with a dynamic range. I've made sure that dhcpd v3.0p12 is in use
and that there are no competing DHCP servers on the network.
Works fine from my Win2k/ME machines - fails from XP Pro. Checked
Mickeysoft's site and haven't found any patches to their XP DHCP
client.
Any help appreciated!
-=Berns
===== BEGIN LOG (startup thru XP renew) FAILS!
May 25 20:24:24 localhost dhcpd: Internet Software Consortium DHCP
Server V3.0pl2
May 25 20:24:24 localhost dhcpd: Internet Software Consortium DHCP
Server V3.0pl2
May 25 20:24:24 localhost dhcpd: Copyright 1995-2003 Internet Software
Consortium.
May 25 20:24:24 localhost dhcpd: All rights reserved.
May 25 20:24:24 localhost dhcpd: For info, please visit
http://www.isc.org/products/DHCP
May 25 20:24:24 localhost dhcpd:
May 25 20:24:24 localhost dhcpd: Copyright 1995-2003 Internet Software
Consortium.
May 25 20:24:24 localhost dhcpd: All rights reserved.
May 25 20:24:24 localhost dhcpd: For info, please visit
http://www.isc.org/products/DHCP
May 25 20:24:24 localhost dhcpd: Wrote 0 deleted host decls to leases
file.
May 25 20:24:24 localhost dhcpd: Wrote 0 deleted host decls to leases
file.
May 25 20:24:24 localhost dhcpd: Wrote 0 new dynamic host decls to
leases file.
May 25 20:24:24 localhost dhcpd: Wrote 0 leases to leases file.
May 25 20:24:24 localhost dhcpd:
May 25 20:24:24 localhost dhcpd: Wrote 0 new dynamic host decls to
leases file.
May 25 20:24:24 localhost dhcpd: Wrote 0 leases to leases file.
May 25 20:24:24 localhost dhcpd: Listening on
LPF/eth1/0A:02:ef:0c:64:9a/192.168.0.0/24
May 25 20:24:24 localhost dhcpd: Listening on
LPF/eth1/0A:02:ef:0c:64:9a/192.168.0.0/24
May 25 20:24:24 localhost dhcpd: Sending on
LPF/eth1/0A:02:ef:0c:64:9a/192.168.0.0/24
May 25 20:24:24 localhost dhcpd:
May 25 20:24:24 localhost dhcpd: Listening on
LPF/eth0/0A:b0:df:78:7c:f6/68.81.72.0/24
May 25 20:24:24 localhost dhcpd: Sending on
LPF/eth1/0A:02:ef:0c:64:9a/192.168.0.0/24
May 25 20:24:24 localhost dhcpd: Sending on
LPF/eth0/0A:b0:df:78:7c:f6/68.81.72.0/24
May 25 20:24:24 localhost dhcpd: Sending on
Socket/fallback/fallback-net
May 25 20:24:24 localhost dhcpd: Listening on
LPF/eth0/0A:b0:df:78:7c:f6/68.81.72.0/24
May 25 20:24:24 localhost dhcpd: Sending on
LPF/eth0/0A:b0:df:78:7c:f6/68.81.72.0/24
May 25 20:24:24 localhost dhcpd: Sending on
Socket/fallback/fallback-net
May 25 20:24:24 localhost dhcpd: dhcpd startup succeeded
May 25 20:39:31 localhost dhcpd: DHCPDISCOVER from 0A:09:6b:cc:06:e9
via eth1
May 25 20:39:31 localhost dhcpd: DHCPOFFER on 192.168.0.60 to
0A:09:6b:cc:06:e9 via eth1
May 25 20:39:36 localhost dhcpd: DHCPDISCOVER from 0A:09:6b:cc:06:e9
via eth1
May 25 20:39:36 localhost dhcpd: DHCPOFFER on 192.168.0.60 to
0A:09:6b:cc:06:e9 via eth1
May 25 20:39:45 localhost dhcpd: DHCPDISCOVER from 0A:09:6b:cc:06:e9
via eth1
May 25 20:39:45 localhost dhcpd: DHCPOFFER on 192.168.0.60 to
0A:09:6b:cc:06:e9 via eth1
===== END LOG
===== BEGIN LOG (Win2k renew) WORKS!
May 25 20:53:57 localhost dhcpd: DHCPDISCOVER from 0A:B0

F:F5:1E:F5
via eth1
May 25 20:53:57 localhost dhcpd: DHCPOFFER on 192.168.0.52 to
0A:B0

F:F5:1E:F5 via eth1
May 25 20:53:57 localhost dhcpd: DHCPREQUEST for 192.168.0.52
(127.0.0.1) from 0A:B0

F:F5:1E:F5 via eth1
May 25 20:53:57 localhost dhcpd: DHCPACK on 192.168.0.52 to
0A:B0

F:F5:1E:F5 via eth1
===== END LOG
===== BEGIN DHCPD.CONF
server-identifier gw.domain.local;
ddns-update-style interim;
default-lease-time 600;
max-lease-time 86400;
option subnet-mask 255.255.255.0;
authoritative;
subnet 68.81.72.0 netmask 255.255.255.0{
deny unknown-clients;
}
subnet 192.168.0.0 netmask 255.255.255.0{
allow unknown-clients;
range 192.168.0.50 192.168.0.150;
default-lease-time 600;
option domain-name "domain.local";
option domain-name-servers 192.168.0.1;
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
}
host host1 {
ddns-updates on;
hardware ethernet 0A:B0

F:F5:1E:F5;
fixed-address 192.168.0.52;
}
host myXPbox {
ddns-updates on;
hardware ethernet 0A:09:6b:cc:06:e9;
fixed-address 192.168.0.60;
}
===== END DHCPD.CONF