If so, can you provide configuration file on your DHCP server - dhcpd.conf ?
I am receiving IP_HELPER: relayRecvAck - TFTP Boot file Name Option is NULL or greater than 64 and REMOTE_CONFIG: DHCP Response not received in 30 sec
My dhcpd.conf from RHEL5 DHCP SERVER -
Code: Select all
ddns-update-style interim;
ignore client-updates;
default-lease-time 600;
max-lease-time 7200;
authoritative;
subnet 172.31.2.0 netmask 255.255.255.0 {
range 172.31.2.10 172.31.2.15;
option ip-forwarding off;
option subnet-mask 255.255.255.0;
option broadcast-address 172.31.2.255;
option tftp-server-name "171.31.2.100";
filename "boot.cfg";
}
subnet 172.31.3.0 netmask 255.255.255.0 {
range 172.31.3.10 172.31.3.15;
option ip-forwarding off;
option subnet-mask 255.255.255.0;
option broadcast-address 172.31.3.255;
option tftp-server-name "171.31.3.100";
filename "boot.cfg";
}
