dhcpd not working for pxeboot

Issues related to configuring your network
Post Reply
supertight
Posts: 171
Joined: 2017/02/07 21:47:51

dhcpd not working for pxeboot

Post by supertight » 2017/06/26 22:16:06

Status is Running. iptables stop/Setenforce 0, for testing.

Server will issue dhcp info to cellphones, windows clients, other servers.
Server will NOT issue dhcp info during pxeboot.

My dhcpd.conf :

Code: Select all


option domain-name "p.local";
option domain-name-servers 172.16.4.11,8.8.8.8;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;
authoritative;
log-facility local7;

subnet 172.16.4.0 netmask 255.255.252.0 {
        range 172.16.7.1 172.16.7.254;
        option broadcast-address 172.16.7.255;
        option routers 172.16.4.1;
}
I'm stumped fellas.... Any help for a poor noob? lol
Thanks for reading.

supertight
Posts: 171
Joined: 2017/02/07 21:47:51

Re: dhcpd not working for pxeboot

Post by supertight » 2017/06/27 04:26:29

I found it. I was missing the "file name" entry.

Post Reply