2003-12-11, 03:18 PM
2003-12-24, 11:27 AM
# Custom DHCPD Configuration File
server-name "SERVER";
ddns-update-style ad-hoc;
group {
default-lease-time 3600;
max-lease-time 3600;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.1;
option domain-name-servers 203.164.20.10, 203.164.20.11;
option domain-name "ispdomain.net";
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.3 192.168.1.10;
}
}
2003-12-24, 11:29 AM
Simply install or make sure you have dhcpd installed on your system, edit the file /etc/dhcpd.conf and replace the contents with what I posted above and customize to match your system and voila!.
Hope that helps.