Hello,
I need to make my a DHCP server on Fedora 11 and when I configure the dhcpd.conf and try to start the server it says this error. "Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file". Please help me out.
All I have to do is make my computer into a DHCP server so that when other people connect to my router, it will assign them an ip address.
This is my dhcpd.conf file.;
# dhcpd.conf
#
# Sample /etc/dhcpd.conf
# (add your comments here)
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
option domain-name-servers 192.168.1.1, 192.168.1.2;
option domain-name "mydomain.org";
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.100;
range 192.168.1.150 192.168.1.200;
}


Reply With Quote
Bookmarks