Thursday, December 18, 2008

DHCP 3.x Server Configuration

The following is the DHCP 3.x configuration file "dhcpd.conf" on a Linux server:

-- Start of Configuration File --

ddns-update-style interim;
ignore client-updates;

subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.100 192.168.0.200;
option routers 192.168.0.254;
option subnet-mask 255.255.255.0;
option domain-name "portal.ph";
option domain-name-servers 192.168.0.1;
option netbios-name-servers 192.168.0.1;
default-lease-time 21600;
max-lease-time 43200;
}

-- End of Configuration File --

No comments: